From 46cb8174fa2f0633caa179b10d6e1776d853f4ea Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Wed, 13 Jun 2012 11:55:21 -0400 Subject: [PATCH 1/2] enotify: rework strings to more easy to translate --- include/enotify.php | 62 +- util/messages.po | 9781 +++++++++++++++++++++---------------------- 2 files changed, 4898 insertions(+), 4945 deletions(-) diff --git a/include/enotify.php b/include/enotify.php index fe0f128b60..89ecc3703f 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -41,8 +41,8 @@ function notification($params) { $subject = sprintf( t('[Friendica:Notify] New mail received at %s'),$sitename); - $preamble = sprintf( t('%s sent you a new private message at %s.'),$params['source_name'],$sitename); - $epreamble = sprintf( t('%s sent you %s.'),'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . t('a private message') . '[/url]'); + $preamble = sprintf( t('%1$s sent you a new private message at %2$s.'),$params['source_name'],$sitename); + $epreamble = sprintf( t('%1$s sent you %2$s.'),'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . t('a private message') . '[/url]'); $sitelink = t('Please visit %s to view and/or reply to your private messages.'); $tsitelink = sprintf( $sitelink, $siteurl . '/message/' . $params['item']['id'] ); $hsitelink = sprintf( $sitelink, '' . $sitename . ''); @@ -66,27 +66,38 @@ function notification($params) { ); } - $possess_desc = str_replace('',item_post_type($p[0]),$possess_desc); + $item_post_type = item_post_type($p[0]); + //$possess_desc = str_replace('',$possess_desc); // "a post" - $dest_str = sprintf($possess_desc,'a'); + $dest_str = sprintf(t('%1$s commented on [url=%2$s]a %3$s[/url]'), + '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', + $itemlink, + $item_post_type); // "George Bull's post" if($p) - $dest_str = sprintf($possess_desc,sprintf( t("%s's"),$p[0]['author-name'])); + $dest_str = sprintf(t('%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'), + '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', + $itemlink, + $p[0]['author-name'] + $item_post_type); // "your post" if($p[0]['owner-name'] == $p[0]['author-name'] && $p[0]['wall']) - $dest_str = sprintf($possess_desc, t('your') ); + $dest_str = sprintf(t('%1$s commented on [url=%2$s]your %3$s[/url]'), + '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', + $itemlink, + $item_post_type); // Some mail softwares relies on subject field for threading. // So, we cannot have different subjects for notifications of the same thread. // Before this we have the name of the replier on the subject rendering // differents subjects for messages on the same thread. - $subject = sprintf( t('[Friendica:Notify] Comment to conversation #%d by %s'), $parent_id, $params['source_name']); + $subject = sprintf( t('[Friendica:Notify] Comment to conversation #%1$d by %1$s'), $parent_id, $params['source_name']); $preamble = sprintf( t('%s commented on an item/conversation you have been following.'), $params['source_name']); - $epreamble = sprintf( t('%s commented on %s.'), '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . $dest_str . '[/url]'); + $epreamble = $dest_str; $sitelink = t('Please visit %s to view and/or reply to the conversation.'); $tsitelink = sprintf( $sitelink, $siteurl ); @@ -97,9 +108,11 @@ function notification($params) { if($params['type'] == NOTIFY_WALL) { $subject = sprintf( t('[Friendica:Notify] %s posted to your profile wall') , $params['source_name']); - $preamble = sprintf( t('%s posted to your profile wall at %s') , $params['source_name'], $sitename); + $preamble = sprintf( t('%1$s posted to your profile wall at %1$s') , $params['source_name'], $sitename); - $epreamble = sprintf( t('%s posted to %s') , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . t('your profile wall.') . '[/url]'); + $epreamble = sprintf( t('%1$s posted to [url=%2s]your wall[/url]') , + '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', + $itemlink); $sitelink = t('Please visit %s to view and/or reply to the conversation.'); $tsitelink = sprintf( $sitelink, $siteurl ); @@ -109,8 +122,10 @@ function notification($params) { if($params['type'] == NOTIFY_TAGSELF) { $subject = sprintf( t('[Friendica:Notify] %s tagged you') , $params['source_name']); - $preamble = sprintf( t('%s tagged you at %s') , $params['source_name'], $sitename); - $epreamble = sprintf( t('%s %s.') , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=' . $params['link'] . ']' . t('tagged you') . '[/url]'); + $preamble = sprintf( t('%1$s tagged you at %2$s') , $params['source_name'], $sitename); + $epreamble = sprintf( t('%1$s [url=%2s]tagged you[/url].') , + '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', + $params['link']); $sitelink = t('Please visit %s to view and/or reply to the conversation.'); $tsitelink = sprintf( $sitelink, $siteurl ); @@ -120,8 +135,10 @@ function notification($params) { if($params['type'] == NOTIFY_TAGSHARE) { $subject = sprintf( t('[Friendica:Notify] %s tagged your post') , $params['source_name']); - $preamble = sprintf( t('%s tagged your post at %s') , $params['source_name'], $sitename); - $epreamble = sprintf( t('%s tagged %s') , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . t('your post') . '[/url]' ); + $preamble = sprintf( t('%1$s tagged your post at %2$s') , $params['source_name'], $sitename); + $epreamble = sprintf( t('%1$s tagged [url=%2$s]your post[/url]') , + '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', + $itemlink); $sitelink = t('Please visit %s to view and/or reply to the conversation.'); $tsitelink = sprintf( $sitelink, $siteurl ); @@ -131,8 +148,10 @@ function notification($params) { if($params['type'] == NOTIFY_INTRO) { $subject = sprintf( t('[Friendica:Notify] Introduction received')); - $preamble = sprintf( t('You\'ve received an introduction from \'%s\' at %s'), $params['source_name'], $sitename); - $epreamble = sprintf( t('You\'ve received %s from %s.'), '[url=$itemlink]' . t('an introduction') . '[/url]' , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]'); + $preamble = sprintf( t('You\'ve received an introduction from \'%1$s\' at %2$s'), $params['source_name'], $sitename); + $epreamble = sprintf( t('You\'ve received [url=%1$s]an introduction[/url] from %2$s.'), + $itemlink, + '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]'); $body = sprintf( t('You may visit their profile at %s'),$params['source_link']); $sitelink = t('Please visit %s to approve or reject the introduction.'); @@ -143,11 +162,12 @@ function notification($params) { if($params['type'] == NOTIFY_SUGGEST) { $subject = sprintf( t('[Friendica:Notify] Friend suggestion received')); - $preamble = sprintf( t('You\'ve received a friend suggestion from \'%s\' at %s'), $params['source_name'], $sitename); - $epreamble = sprintf( t('You\'ve received %s for %s from %s.'), - '[url=$itemlink]' . t('a friend suggestion') . '[/url]', - '[url=' . $params['item']['url'] . ']' . $params['item']['name'] . '[/url]', - '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]'); + $preamble = sprintf( t('You\'ve received a friend suggestion from \'%1$s\' at %2$s'), $params['source_name'], $sitename); + $epreamble = sprintf( t('You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'), + $itemlink, + '[url=' . $params['item']['url'] . ']' . $params['item']['name'] . '[/url]', + '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]'); + $body = t('Name:') . ' ' . $params['item']['name'] . "\n"; $body .= t('Photo:') . ' ' . $params['item']['photo'] . "\n"; $body .= sprintf( t('You may visit their profile at %s'),$params['item']['url']); diff --git a/util/messages.po b/util/messages.po index e28fdf7fbf..defa9b795d 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,191 +8,62 @@ msgid "" msgstr "" "Project-Id-Version: 3.0.1372\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-06-12 10:00-0700\n" +"POT-Creation-Date: 2012-06-13 11:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "" - -#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18 -#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "" - -#: ../../mod/crepair.php:104 -msgid "Contact update failed." -msgstr "" - -#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44 -#: ../../mod/fsuggest.php:78 ../../mod/events.php:138 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:928 -#: ../../mod/editpost.php:10 ../../mod/install.php:151 -#: ../../mod/notifications.php:66 ../../mod/contacts.php:145 -#: ../../mod/settings.php:106 ../../mod/settings.php:537 -#: ../../mod/settings.php:542 ../../mod/manage.php:86 ../../mod/network.php:6 -#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33 -#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22 -#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:124 -#: ../../mod/item.php:140 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:141 ../../mod/profile_photo.php:152 -#: ../../mod/profile_photo.php:165 ../../mod/message.php:45 -#: ../../mod/message.php:97 ../../mod/allfriends.php:9 -#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53 -#: ../../mod/follow.php:9 ../../mod/display.php:138 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:385 ../../mod/delegate.php:6 -#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 -#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:503 -#: ../../addon/dav/layout.fnk.php:353 ../../include/items.php:3387 -#: ../../index.php:299 -msgid "Permission denied." -msgstr "" - -#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 -msgid "Contact not found." -msgstr "" - -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "" - -#: ../../mod/crepair.php:137 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." -msgstr "" - -#: ../../mod/crepair.php:138 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "" - -#: ../../mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "" - -#: ../../mod/crepair.php:148 ../../mod/settings.php:557 -#: ../../mod/settings.php:583 ../../mod/admin.php:659 ../../mod/admin.php:668 -msgid "Name" -msgstr "" - -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "" - -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "" - -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "" - -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "" - -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "" - -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "" - -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "" - -#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:428 ../../mod/photos.php:963 ../../mod/photos.php:1021 -#: ../../mod/photos.php:1266 ../../mod/photos.php:1306 -#: ../../mod/photos.php:1346 ../../mod/photos.php:1377 -#: ../../mod/install.php:246 ../../mod/install.php:284 -#: ../../mod/localtime.php:45 ../../mod/contacts.php:342 -#: ../../mod/settings.php:555 ../../mod/settings.php:701 -#: ../../mod/settings.php:762 ../../mod/settings.php:969 -#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/message.php:216 -#: ../../mod/admin.php:420 ../../mod/admin.php:656 ../../mod/admin.php:792 -#: ../../mod/admin.php:991 ../../mod/admin.php:1078 ../../mod/profiles.php:554 -#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:605 -#: ../../addon/snautofollow/snautofollow.php:64 -#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93 -#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158 -#: ../../addon/uhremotestorage/uhremotestorage.php:89 -#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 -#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92 -#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 -#: ../../addon/impressum/impressum.php:82 ../../addon/blockem/blockem.php:57 -#: ../../addon/qcomment/qcomment.php:61 -#: ../../addon/openstreetmap/openstreetmap.php:70 -#: ../../addon/libertree/libertree.php:90 ../../addon/mathjax/mathjax.php:42 -#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:98 -#: ../../addon/gravatar/gravatar.php:86 -#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 -#: ../../addon/jappixmini/jappixmini.php:302 -#: ../../addon/statusnet/statusnet.php:278 -#: ../../addon/statusnet/statusnet.php:292 -#: ../../addon/statusnet/statusnet.php:318 -#: ../../addon/statusnet/statusnet.php:325 -#: ../../addon/statusnet/statusnet.php:353 -#: ../../addon/statusnet/statusnet.php:561 ../../addon/tumblr/tumblr.php:90 -#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 -#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 -#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 -#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:381 -#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102 -#: ../../addon/posterous/posterous.php:103 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/diabook/theme.php:757 -#: ../../view/theme/diabook/config.php:190 -#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70 -#: ../../include/conversation.php:580 -msgid "Submit" -msgstr "" - -#: ../../mod/help.php:30 -msgid "Help:" -msgstr "" - -#: ../../mod/help.php:34 ../../addon/dav/layout.fnk.php:116 -#: ../../include/nav.php:86 -msgid "Help" -msgstr "" - -#: ../../mod/help.php:38 ../../index.php:218 +#: ../../index.php:218 ../../mod/help.php:38 msgid "Not Found" msgstr "" -#: ../../mod/help.php:41 ../../index.php:221 +#: ../../index.php:221 ../../mod/help.php:41 msgid "Page not found." msgstr "" -#: ../../mod/wall_attach.php:58 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../index.php:298 ../../mod/profperm.php:19 ../../mod/group.php:72 +msgid "Permission denied" msgstr "" -#: ../../mod/wall_attach.php:86 ../../mod/wall_attach.php:97 -msgid "File upload failed." +#: ../../index.php:299 ../../mod/fsuggest.php:78 +#: ../../mod/notifications.php:66 ../../mod/message.php:45 +#: ../../mod/message.php:97 ../../mod/editpost.php:10 +#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:138 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:928 +#: ../../mod/register.php:38 ../../mod/attach.php:33 +#: ../../mod/contacts.php:145 ../../mod/follow.php:9 +#: ../../mod/allfriends.php:9 ../../mod/invite.php:13 ../../mod/invite.php:81 +#: ../../mod/settings.php:106 ../../mod/settings.php:537 +#: ../../mod/settings.php:542 ../../mod/display.php:138 +#: ../../mod/profiles.php:7 ../../mod/profiles.php:385 +#: ../../mod/wall_attach.php:44 ../../mod/suggest.php:28 +#: ../../mod/manage.php:86 ../../mod/delegate.php:6 +#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:141 +#: ../../mod/profile_photo.php:152 ../../mod/profile_photo.php:165 +#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:116 +#: ../../mod/item.php:124 ../../mod/item.php:140 ../../mod/network.php:6 +#: ../../mod/crepair.php:115 ../../addon/dav/layout.fnk.php:353 +#: ../../addon/facebook/facebook.php:503 ../../include/items.php:3387 +msgid "Permission denied." +msgstr "" + +#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "" + +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129 +msgid "Contact not found." msgstr "" #: ../../mod/fsuggest.php:63 @@ -208,499 +79,48 @@ msgstr "" msgid "Suggest a friend for %s" msgstr "" -#: ../../mod/events.php:65 -msgid "Event description and start time are required." -msgstr "" - -#: ../../mod/events.php:258 -msgid "l, F j" -msgstr "" - -#: ../../mod/events.php:280 -msgid "Edit event" -msgstr "" - -#: ../../mod/events.php:300 ../../include/text.php:1065 -msgid "link to source" -msgstr "" - -#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:131 -#: ../../include/nav.php:52 ../../boot.php:1529 -msgid "Events" -msgstr "" - -#: ../../mod/events.php:325 -msgid "Create New Event" -msgstr "" - -#: ../../mod/events.php:326 ../../addon/dav/layout.fnk.php:154 -msgid "Previous" -msgstr "" - -#: ../../mod/events.php:327 ../../mod/install.php:205 -#: ../../addon/dav/layout.fnk.php:157 -msgid "Next" -msgstr "" - -#: ../../mod/events.php:399 -msgid "hour:minute" -msgstr "" - -#: ../../mod/events.php:408 -msgid "Event details" -msgstr "" - -#: ../../mod/events.php:409 -#, php-format -msgid "Format is %s %s. Starting date and Description are required." -msgstr "" - -#: ../../mod/events.php:411 -msgid "Event Starts:" -msgstr "" - -#: ../../mod/events.php:414 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: ../../mod/events.php:416 -msgid "Event Finishes:" -msgstr "" - -#: ../../mod/events.php:419 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../mod/events.php:421 -msgid "Description:" -msgstr "" - -#: ../../mod/events.php:423 ../../include/event.php:37 -#: ../../include/bb2diaspora.php:265 ../../boot.php:1109 -msgid "Location:" -msgstr "" - -#: ../../mod/events.php:425 -msgid "Share this event" -msgstr "" - -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/dfrn_request.php:845 ../../mod/settings.php:556 -#: ../../mod/settings.php:582 ../../addon/js_upload/js_upload.php:45 -msgid "Cancel" -msgstr "" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 -msgid "Remove" -msgstr "" - -#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522 -#, php-format -msgid "%s welcomes %s" -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "" - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../mod/api.php:105 ../../mod/dfrn_request.php:833 -#: ../../mod/settings.php:879 ../../mod/settings.php:885 -#: ../../mod/settings.php:893 ../../mod/settings.php:897 -#: ../../mod/settings.php:902 ../../mod/settings.php:908 -#: ../../mod/settings.php:914 ../../mod/settings.php:920 -#: ../../mod/settings.php:956 ../../mod/settings.php:957 -#: ../../mod/settings.php:958 ../../mod/settings.php:959 -#: ../../mod/settings.php:960 ../../mod/register.php:234 -#: ../../mod/profiles.php:531 -msgid "Yes" -msgstr "" - -#: ../../mod/api.php:106 ../../mod/dfrn_request.php:834 -#: ../../mod/settings.php:879 ../../mod/settings.php:885 -#: ../../mod/settings.php:893 ../../mod/settings.php:897 -#: ../../mod/settings.php:902 ../../mod/settings.php:908 -#: ../../mod/settings.php:914 ../../mod/settings.php:920 -#: ../../mod/settings.php:956 ../../mod/settings.php:957 -#: ../../mod/settings.php:958 ../../mod/settings.php:959 -#: ../../mod/settings.php:960 ../../mod/register.php:235 -#: ../../mod/profiles.php:532 -msgid "No" -msgstr "" - -#: ../../mod/photos.php:44 ../../boot.php:1523 -msgid "Photo Albums" -msgstr "" - -#: ../../mod/photos.php:52 ../../mod/photos.php:154 ../../mod/photos.php:942 -#: ../../mod/photos.php:1013 ../../mod/photos.php:1028 -#: ../../mod/photos.php:1455 ../../mod/photos.php:1467 -#: ../../addon/communityhome/communityhome.php:110 -#: ../../view/theme/diabook/theme.php:598 -msgid "Contact Photos" -msgstr "" - -#: ../../mod/photos.php:59 ../../mod/photos.php:1038 ../../mod/photos.php:1505 -msgid "Upload New Photos" -msgstr "" - -#: ../../mod/photos.php:70 ../../mod/settings.php:21 -msgid "everybody" -msgstr "" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "" - -#: ../../mod/photos.php:154 ../../mod/photos.php:656 ../../mod/photos.php:1013 -#: ../../mod/photos.php:1028 ../../mod/profile_photo.php:60 -#: ../../mod/profile_photo.php:67 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:176 ../../mod/profile_photo.php:254 -#: ../../mod/profile_photo.php:263 -#: ../../addon/communityhome/communityhome.php:111 -#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:298 -#: ../../include/user.php:305 ../../include/user.php:312 -msgid "Profile Photos" -msgstr "" - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "" - -#: ../../mod/photos.php:182 ../../mod/photos.php:1022 -msgid "Delete Album" -msgstr "" - -#: ../../mod/photos.php:245 ../../mod/photos.php:1267 -msgid "Delete Photo" -msgstr "" - -#: ../../mod/photos.php:587 -msgid "was tagged in a" -msgstr "" - -#: ../../mod/photos.php:587 ../../mod/like.php:185 ../../mod/tagger.php:70 -#: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1316 -#: ../../include/diaspora.php:1671 ../../include/conversation.php:53 -#: ../../include/conversation.php:126 -msgid "photo" -msgstr "" - -#: ../../mod/photos.php:587 -msgid "by" -msgstr "" - -#: ../../mod/photos.php:692 ../../addon/js_upload/js_upload.php:315 -msgid "Image exceeds size limit of " -msgstr "" - -#: ../../mod/photos.php:700 -msgid "Image file is empty." -msgstr "" - -#: ../../mod/photos.php:714 ../../mod/profile_photo.php:126 -#: ../../mod/wall_upload.php:86 -msgid "Unable to process image." -msgstr "" - -#: ../../mod/photos.php:734 ../../mod/profile_photo.php:259 -#: ../../mod/wall_upload.php:105 -msgid "Image upload failed." -msgstr "" - -#: ../../mod/photos.php:820 ../../mod/community.php:16 -#: ../../mod/dfrn_request.php:759 ../../mod/viewcontacts.php:17 -#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29 -msgid "Public access denied." -msgstr "" - -#: ../../mod/photos.php:830 -msgid "No photos selected" -msgstr "" - -#: ../../mod/photos.php:909 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../mod/photos.php:970 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:973 ../../mod/photos.php:1017 -msgid "New album name: " -msgstr "" - -#: ../../mod/photos.php:974 -msgid "or existing album name: " -msgstr "" - -#: ../../mod/photos.php:975 -msgid "Do not show a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:977 ../../mod/photos.php:1262 -msgid "Permissions" -msgstr "" - -#: ../../mod/photos.php:1032 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:1056 ../../mod/photos.php:1488 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:1091 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:1093 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:1143 -msgid "View photo" -msgstr "" - -#: ../../mod/photos.php:1143 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:1144 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:1150 ../../include/conversation.php:490 -msgid "Private Message" -msgstr "" - -#: ../../mod/photos.php:1172 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:1240 -msgid "Tags: " -msgstr "" - -#: ../../mod/photos.php:1243 -msgid "[Remove any tag]" -msgstr "" - -#: ../../mod/photos.php:1253 -msgid "Rotate CW" -msgstr "" - -#: ../../mod/photos.php:1255 -msgid "New album name" -msgstr "" - -#: ../../mod/photos.php:1258 -msgid "Caption" -msgstr "" - -#: ../../mod/photos.php:1260 -msgid "Add a Tag" -msgstr "" - -#: ../../mod/photos.php:1264 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: ../../mod/photos.php:1284 ../../include/conversation.php:554 -msgid "I like this (toggle)" -msgstr "" - -#: ../../mod/photos.php:1285 ../../include/conversation.php:555 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../mod/photos.php:1286 ../../include/conversation.php:989 -msgid "Share" -msgstr "" - -#: ../../mod/photos.php:1287 ../../mod/editpost.php:104 -#: ../../mod/wallmessage.php:145 ../../mod/message.php:215 -#: ../../mod/message.php:410 ../../include/conversation.php:371 -#: ../../include/conversation.php:731 ../../include/conversation.php:1008 -msgid "Please wait" -msgstr "" - -#: ../../mod/photos.php:1303 ../../mod/photos.php:1343 -#: ../../mod/photos.php:1374 ../../include/conversation.php:577 -msgid "This is you" -msgstr "" - -#: ../../mod/photos.php:1305 ../../mod/photos.php:1345 -#: ../../mod/photos.php:1376 ../../include/conversation.php:579 -#: ../../boot.php:523 -msgid "Comment" -msgstr "" - -#: ../../mod/photos.php:1307 ../../mod/editpost.php:125 -#: ../../include/conversation.php:589 ../../include/conversation.php:1026 -msgid "Preview" -msgstr "" - -#: ../../mod/photos.php:1404 ../../mod/settings.php:618 -#: ../../mod/settings.php:699 ../../mod/group.php:168 ../../mod/admin.php:663 -#: ../../include/conversation.php:328 ../../include/conversation.php:609 -msgid "Delete" -msgstr "" - -#: ../../mod/photos.php:1494 -msgid "View Album" -msgstr "" - -#: ../../mod/photos.php:1503 -msgid "Recent Photos" -msgstr "" - -#: ../../mod/community.php:21 -msgid "Not available." -msgstr "" - -#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:133 -#: ../../include/nav.php:101 -msgid "Community" -msgstr "" - -#: ../../mod/community.php:61 ../../mod/search.php:144 -msgid "No results." -msgstr "" - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "" - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/friendica.php:61 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" - -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "" - -#: ../../mod/editpost.php:36 -msgid "Edit post" -msgstr "" - -#: ../../mod/editpost.php:80 ../../include/conversation.php:975 -msgid "Post to Email" -msgstr "" - -#: ../../mod/editpost.php:95 ../../mod/settings.php:617 -#: ../../include/conversation.php:596 -msgid "Edit" -msgstr "" - -#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143 -#: ../../mod/message.php:213 ../../mod/message.php:408 -#: ../../include/conversation.php:990 -msgid "Upload photo" -msgstr "" - -#: ../../mod/editpost.php:97 ../../include/conversation.php:992 -msgid "Attach file" -msgstr "" - -#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144 -#: ../../mod/message.php:214 ../../mod/message.php:409 -#: ../../include/conversation.php:994 -msgid "Insert web link" -msgstr "" - -#: ../../mod/editpost.php:99 -msgid "Insert YouTube video" -msgstr "" - -#: ../../mod/editpost.php:100 -msgid "Insert Vorbis [.ogg] video" -msgstr "" - -#: ../../mod/editpost.php:101 -msgid "Insert Vorbis [.ogg] audio" -msgstr "" - -#: ../../mod/editpost.php:102 ../../include/conversation.php:1000 -msgid "Set your location" -msgstr "" - -#: ../../mod/editpost.php:103 ../../include/conversation.php:1002 -msgid "Clear browser location" -msgstr "" - -#: ../../mod/editpost.php:105 ../../include/conversation.php:1009 -msgid "Permission settings" -msgstr "" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1018 -msgid "CC: email addresses" -msgstr "" - -#: ../../mod/editpost.php:114 ../../include/conversation.php:1019 -msgid "Public post" -msgstr "" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1005 -msgid "Set title" -msgstr "" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1007 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1021 -msgid "Example: bob@example.com, mary@example.com" +#: ../../mod/fsuggest.php:107 ../../mod/admin.php:420 ../../mod/admin.php:656 +#: ../../mod/admin.php:792 ../../mod/admin.php:991 ../../mod/admin.php:1078 +#: ../../mod/message.php:216 ../../mod/events.php:428 ../../mod/photos.php:963 +#: ../../mod/photos.php:1021 ../../mod/photos.php:1266 +#: ../../mod/photos.php:1306 ../../mod/photos.php:1346 +#: ../../mod/photos.php:1377 ../../mod/contacts.php:342 +#: ../../mod/invite.php:119 ../../mod/settings.php:555 +#: ../../mod/settings.php:701 ../../mod/settings.php:762 +#: ../../mod/settings.php:969 ../../mod/profiles.php:554 +#: ../../mod/localtime.php:45 ../../mod/install.php:246 +#: ../../mod/install.php:284 ../../mod/group.php:85 ../../mod/crepair.php:166 +#: ../../view/theme/diabook/theme.php:757 +#: ../../view/theme/diabook/config.php:190 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:52 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../addon/pageheader/pageheader.php:55 ../../addon/piwik/piwik.php:89 +#: ../../addon/libertree/libertree.php:90 +#: ../../addon/editplain/editplain.php:84 +#: ../../addon/posterous/posterous.php:103 ../../addon/ljpost/ljpost.php:93 +#: ../../addon/snautofollow/snautofollow.php:64 +#: ../../addon/geonames/geonames.php:187 ../../addon/ijpost/ijpost.php:93 +#: ../../addon/statusnet/statusnet.php:278 +#: ../../addon/statusnet/statusnet.php:292 +#: ../../addon/statusnet/statusnet.php:318 +#: ../../addon/statusnet/statusnet.php:325 +#: ../../addon/statusnet/statusnet.php:353 +#: ../../addon/statusnet/statusnet.php:561 +#: ../../addon/qcomment/qcomment.php:61 ../../addon/showmore/showmore.php:48 +#: ../../addon/dwpost/dwpost.php:93 ../../addon/numfriends/numfriends.php:85 +#: ../../addon/blackout/blackout.php:98 ../../addon/blogger/blogger.php:102 +#: ../../addon/wppost/wppost.php:110 ../../addon/jappixmini/jappixmini.php:302 +#: ../../addon/uhremotestorage/uhremotestorage.php:89 +#: ../../addon/gravatar/gravatar.php:86 ../../addon/mathjax/mathjax.php:42 +#: ../../addon/twitter/twitter.php:180 ../../addon/twitter/twitter.php:209 +#: ../../addon/twitter/twitter.php:381 ../../addon/facebook/facebook.php:605 +#: ../../addon/nsfw/nsfw.php:57 ../../addon/openstreetmap/openstreetmap.php:70 +#: ../../addon/randplace/randplace.php:177 ../../addon/blockem/blockem.php:57 +#: ../../addon/impressum/impressum.php:82 ../../addon/gnot/gnot.php:88 +#: ../../addon/planets/planets.php:158 ../../addon/irc/irc.php:55 +#: ../../addon/yourls/yourls.php:76 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/startpage/startpage.php:92 ../../include/conversation.php:580 +msgid "Submit" msgstr "" #: ../../mod/dfrn_request.php:93 @@ -824,6 +244,12 @@ msgstr "" msgid "[Name Withheld]" msgstr "" +#: ../../mod/dfrn_request.php:759 ../../mod/photos.php:820 +#: ../../mod/search.php:71 ../../mod/display.php:7 ../../mod/community.php:16 +#: ../../mod/viewcontacts.php:17 ../../mod/directory.php:29 +msgid "Public access denied." +msgstr "" + #: ../../mod/dfrn_request.php:808 msgid "" "Please enter your 'Identity Address' from one of the following supported " @@ -860,6 +286,30 @@ msgstr "" msgid "Does %s know you?" msgstr "" +#: ../../mod/dfrn_request.php:833 ../../mod/api.php:105 +#: ../../mod/register.php:234 ../../mod/settings.php:879 +#: ../../mod/settings.php:885 ../../mod/settings.php:893 +#: ../../mod/settings.php:897 ../../mod/settings.php:902 +#: ../../mod/settings.php:908 ../../mod/settings.php:914 +#: ../../mod/settings.php:920 ../../mod/settings.php:956 +#: ../../mod/settings.php:957 ../../mod/settings.php:958 +#: ../../mod/settings.php:959 ../../mod/settings.php:960 +#: ../../mod/profiles.php:531 +msgid "Yes" +msgstr "" + +#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106 +#: ../../mod/register.php:235 ../../mod/settings.php:879 +#: ../../mod/settings.php:885 ../../mod/settings.php:893 +#: ../../mod/settings.php:897 ../../mod/settings.php:902 +#: ../../mod/settings.php:908 ../../mod/settings.php:914 +#: ../../mod/settings.php:920 ../../mod/settings.php:956 +#: ../../mod/settings.php:957 ../../mod/settings.php:958 +#: ../../mod/settings.php:959 ../../mod/settings.php:960 +#: ../../mod/profiles.php:532 +msgid "No" +msgstr "" + #: ../../mod/dfrn_request.php:835 msgid "Add a personal note:" msgstr "" @@ -892,325 +342,22 @@ msgstr "" msgid "Submit Request" msgstr "" -#: ../../mod/install.php:117 -msgid "Friendica Social Communications Server - Setup" +#: ../../mod/dfrn_request.php:845 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:556 +#: ../../mod/settings.php:582 ../../addon/js_upload/js_upload.php:45 +msgid "Cancel" msgstr "" -#: ../../mod/install.php:123 -msgid "Could not connect to database." +#: ../../mod/profile.php:21 ../../boot.php:966 +msgid "Requested profile is not available." msgstr "" -#: ../../mod/install.php:127 -msgid "Could not create table." +#: ../../mod/profile.php:141 ../../mod/display.php:75 +msgid "Access to this profile has been restricted." msgstr "" -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "" - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" - -#: ../../mod/install.php:139 ../../mod/install.php:204 -#: ../../mod/install.php:489 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "" - -#: ../../mod/install.php:201 -msgid "System check" -msgstr "" - -#: ../../mod/install.php:206 -msgid "Check again" -msgstr "" - -#: ../../mod/install.php:225 -msgid "Database connection" -msgstr "" - -#: ../../mod/install.php:226 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "" - -#: ../../mod/install.php:227 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../mod/install.php:228 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../mod/install.php:232 -msgid "Database Server Name" -msgstr "" - -#: ../../mod/install.php:233 -msgid "Database Login Name" -msgstr "" - -#: ../../mod/install.php:234 -msgid "Database Login Password" -msgstr "" - -#: ../../mod/install.php:235 -msgid "Database Name" -msgstr "" - -#: ../../mod/install.php:236 ../../mod/install.php:275 -msgid "Site administrator email address" -msgstr "" - -#: ../../mod/install.php:236 ../../mod/install.php:275 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../mod/install.php:240 ../../mod/install.php:278 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../mod/install.php:265 -msgid "Site settings" -msgstr "" - -#: ../../mod/install.php:318 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../mod/install.php:319 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "" - -#: ../../mod/install.php:323 -msgid "PHP executable path" -msgstr "" - -#: ../../mod/install.php:323 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../mod/install.php:328 -msgid "Command line PHP" -msgstr "" - -#: ../../mod/install.php:337 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../mod/install.php:338 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../mod/install.php:340 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../mod/install.php:361 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../mod/install.php:362 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../mod/install.php:364 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/install.php:371 -msgid "libCurl PHP module" -msgstr "" - -#: ../../mod/install.php:372 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../mod/install.php:373 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../mod/install.php:374 -msgid "mysqli PHP module" -msgstr "" - -#: ../../mod/install.php:375 -msgid "mb_string PHP module" -msgstr "" - -#: ../../mod/install.php:380 ../../mod/install.php:382 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../mod/install.php:380 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../mod/install.php:388 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:392 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../mod/install.php:396 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:400 -msgid "Error: mysqli PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:404 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:421 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." -msgstr "" - -#: ../../mod/install.php:422 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" - -#: ../../mod/install.php:423 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: ../../mod/install.php:424 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/install.php:427 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../mod/install.php:439 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: ../../mod/install.php:441 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/install.php:451 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" - -#: ../../mod/install.php:476 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/install.php:487 -msgid "

What next

" -msgstr "" - -#: ../../mod/install.php:488 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:243 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendika provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "" - -#: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:1053 -msgid "Connect" -msgstr "" - -#: ../../mod/match.php:65 ../../mod/dirfind.php:60 -msgid "No matches" -msgstr "" - -#: ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:43 -msgid "Visible to:" -msgstr "" - -#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179 -#, php-format -msgid "Welcome to %s" +#: ../../mod/profile.php:166 +msgid "Tips for New Members" msgstr "" #: ../../mod/notifications.php:26 @@ -1236,7 +383,7 @@ msgstr "" msgid "Network" msgstr "" -#: ../../mod/notifications.php:85 ../../mod/network.php:266 +#: ../../mod/notifications.php:85 ../../mod/network.php:285 msgid "Personal" msgstr "" @@ -1398,6 +545,1563 @@ msgstr "" msgid "Home Notifications" msgstr "" +#: ../../mod/like.php:185 ../../mod/tagger.php:70 ../../mod/photos.php:587 +#: ../../view/theme/diabook/theme.php:570 +#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1316 +#: ../../include/diaspora.php:1671 ../../include/conversation.php:53 +#: ../../include/conversation.php:126 +msgid "photo" +msgstr "" + +#: ../../mod/like.php:185 ../../mod/like.php:259 ../../mod/tagger.php:70 +#: ../../view/theme/diabook/theme.php:565 +#: ../../view/theme/diabook/theme.php:574 +#: ../../addon/communityhome/communityhome.php:158 +#: ../../addon/communityhome/communityhome.php:167 +#: ../../addon/facebook/facebook.php:1572 ../../include/diaspora.php:1671 +#: ../../include/conversation.php:48 ../../include/conversation.php:57 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +msgid "status" +msgstr "" + +#: ../../mod/like.php:202 ../../view/theme/diabook/theme.php:579 +#: ../../addon/communityhome/communityhome.php:172 +#: ../../addon/facebook/facebook.php:1576 ../../include/diaspora.php:1687 +#: ../../include/conversation.php:65 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../mod/like.php:204 ../../include/conversation.php:68 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: ../../mod/openid.php:93 ../../include/auth.php:99 +#: ../../include/auth.php:162 +msgid "Login failed." +msgstr "" + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:96 ../../mod/admin.php:419 +msgid "Site" +msgstr "" + +#: ../../mod/admin.php:97 ../../mod/admin.php:655 ../../mod/admin.php:667 +msgid "Users" +msgstr "" + +#: ../../mod/admin.php:98 ../../mod/admin.php:749 ../../mod/admin.php:791 +msgid "Plugins" +msgstr "" + +#: ../../mod/admin.php:99 ../../mod/admin.php:954 ../../mod/admin.php:990 +msgid "Themes" +msgstr "" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1077 +msgid "Logs" +msgstr "" + +#: ../../mod/admin.php:120 ../../include/nav.php:146 +msgid "Admin" +msgstr "" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../mod/admin.php:159 ../../mod/admin.php:700 ../../mod/admin.php:899 +#: ../../mod/notice.php:15 ../../mod/display.php:37 ../../mod/display.php:142 +#: ../../mod/viewsrc.php:15 ../../include/items.php:3234 +msgid "Item not found." +msgstr "" + +#: ../../mod/admin.php:183 ../../mod/admin.php:637 +msgid "Normal Account" +msgstr "" + +#: ../../mod/admin.php:184 ../../mod/admin.php:638 +msgid "Soapbox Account" +msgstr "" + +#: ../../mod/admin.php:185 ../../mod/admin.php:639 +msgid "Community/Celebrity Account" +msgstr "" + +#: ../../mod/admin.php:186 ../../mod/admin.php:640 +msgid "Automatic Friend Account" +msgstr "" + +#: ../../mod/admin.php:205 +msgid "Message queues" +msgstr "" + +#: ../../mod/admin.php:210 ../../mod/admin.php:418 ../../mod/admin.php:654 +#: ../../mod/admin.php:748 ../../mod/admin.php:790 ../../mod/admin.php:953 +#: ../../mod/admin.php:989 ../../mod/admin.php:1076 +msgid "Administration" +msgstr "" + +#: ../../mod/admin.php:211 +msgid "Summary" +msgstr "" + +#: ../../mod/admin.php:213 +msgid "Registered users" +msgstr "" + +#: ../../mod/admin.php:215 +msgid "Pending registrations" +msgstr "" + +#: ../../mod/admin.php:216 +msgid "Version" +msgstr "" + +#: ../../mod/admin.php:218 +msgid "Active plugins" +msgstr "" + +#: ../../mod/admin.php:357 +msgid "Site settings updated." +msgstr "" + +#: ../../mod/admin.php:405 +msgid "Closed" +msgstr "" + +#: ../../mod/admin.php:406 +msgid "Requires approval" +msgstr "" + +#: ../../mod/admin.php:407 +msgid "Open" +msgstr "" + +#: ../../mod/admin.php:411 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: ../../mod/admin.php:412 +msgid "Force all links to use SSL" +msgstr "" + +#: ../../mod/admin.php:413 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: ../../mod/admin.php:421 ../../mod/register.php:255 +msgid "Registration" +msgstr "" + +#: ../../mod/admin.php:422 +msgid "File upload" +msgstr "" + +#: ../../mod/admin.php:423 +msgid "Policies" +msgstr "" + +#: ../../mod/admin.php:424 +msgid "Advanced" +msgstr "" + +#: ../../mod/admin.php:428 ../../addon/statusnet/statusnet.php:552 +msgid "Site name" +msgstr "" + +#: ../../mod/admin.php:429 +msgid "Banner/Logo" +msgstr "" + +#: ../../mod/admin.php:430 +msgid "System language" +msgstr "" + +#: ../../mod/admin.php:431 +msgid "System theme" +msgstr "" + +#: ../../mod/admin.php:431 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:432 +msgid "SSL link policy" +msgstr "" + +#: ../../mod/admin.php:432 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: ../../mod/admin.php:433 +msgid "Maximum image size" +msgstr "" + +#: ../../mod/admin.php:433 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../mod/admin.php:435 +msgid "Register policy" +msgstr "" + +#: ../../mod/admin.php:436 +msgid "Register text" +msgstr "" + +#: ../../mod/admin.php:436 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:437 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../mod/admin.php:437 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../mod/admin.php:438 +msgid "Allowed friend domains" +msgstr "" + +#: ../../mod/admin.php:438 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../mod/admin.php:439 +msgid "Allowed email domains" +msgstr "" + +#: ../../mod/admin.php:439 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../mod/admin.php:440 +msgid "Block public" +msgstr "" + +#: ../../mod/admin.php:440 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: ../../mod/admin.php:441 +msgid "Force publish" +msgstr "" + +#: ../../mod/admin.php:441 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:442 +msgid "Global directory update URL" +msgstr "" + +#: ../../mod/admin.php:442 +msgid "" +"URL to update the global directory. If this is not set, the global directory " +"is completely unavailable to the application." +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Block multiple registrations" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: ../../mod/admin.php:445 +msgid "OpenID support" +msgstr "" + +#: ../../mod/admin.php:445 +msgid "OpenID support for registration and logins." +msgstr "" + +#: ../../mod/admin.php:446 +msgid "Fullname check" +msgstr "" + +#: ../../mod/admin.php:446 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: ../../mod/admin.php:447 +msgid "UTF-8 Regular expressions" +msgstr "" + +#: ../../mod/admin.php:447 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: ../../mod/admin.php:448 +msgid "Show Community Page" +msgstr "" + +#: ../../mod/admin.php:448 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "" + +#: ../../mod/admin.php:449 +msgid "Enable OStatus support" +msgstr "" + +#: ../../mod/admin.php:449 +msgid "" +"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: ../../mod/admin.php:450 +msgid "Enable Diaspora support" +msgstr "" + +#: ../../mod/admin.php:450 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: ../../mod/admin.php:451 +msgid "Only allow Friendica contacts" +msgstr "" + +#: ../../mod/admin.php:451 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: ../../mod/admin.php:452 +msgid "Verify SSL" +msgstr "" + +#: ../../mod/admin.php:452 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you " +"cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: ../../mod/admin.php:453 +msgid "Proxy user" +msgstr "" + +#: ../../mod/admin.php:454 +msgid "Proxy URL" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Network timeout" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:456 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../mod/admin.php:457 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:457 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:458 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:482 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:485 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:489 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:492 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:507 +msgid "No failed updates." +msgstr "" + +#: ../../mod/admin.php:511 +msgid "Failed Updates" +msgstr "" + +#: ../../mod/admin.php:512 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: ../../mod/admin.php:513 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:514 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:539 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:546 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:585 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:593 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: ../../mod/admin.php:593 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: ../../mod/admin.php:657 +msgid "select all" +msgstr "" + +#: ../../mod/admin.php:658 +msgid "User registrations waiting for confirm" +msgstr "" + +#: ../../mod/admin.php:659 +msgid "Request date" +msgstr "" + +#: ../../mod/admin.php:659 ../../mod/admin.php:668 ../../mod/settings.php:557 +#: ../../mod/settings.php:583 ../../mod/crepair.php:148 +msgid "Name" +msgstr "" + +#: ../../mod/admin.php:659 ../../mod/admin.php:668 +#: ../../include/contact_selectors.php:79 +msgid "Email" +msgstr "" + +#: ../../mod/admin.php:660 +msgid "No registrations." +msgstr "" + +#: ../../mod/admin.php:662 +msgid "Deny" +msgstr "" + +#: ../../mod/admin.php:663 ../../mod/photos.php:1404 +#: ../../mod/settings.php:618 ../../mod/settings.php:699 +#: ../../mod/group.php:168 ../../include/conversation.php:328 +#: ../../include/conversation.php:609 +msgid "Delete" +msgstr "" + +#: ../../mod/admin.php:664 ../../mod/contacts.php:310 +#: ../../mod/contacts.php:367 +msgid "Block" +msgstr "" + +#: ../../mod/admin.php:665 ../../mod/contacts.php:310 +#: ../../mod/contacts.php:367 +msgid "Unblock" +msgstr "" + +#: ../../mod/admin.php:668 +msgid "Register date" +msgstr "" + +#: ../../mod/admin.php:668 +msgid "Last login" +msgstr "" + +#: ../../mod/admin.php:668 +msgid "Last item" +msgstr "" + +#: ../../mod/admin.php:668 +msgid "Account" +msgstr "" + +#: ../../mod/admin.php:670 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:671 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:712 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../mod/admin.php:716 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../mod/admin.php:726 ../../mod/admin.php:924 +msgid "Disable" +msgstr "" + +#: ../../mod/admin.php:728 ../../mod/admin.php:926 +msgid "Enable" +msgstr "" + +#: ../../mod/admin.php:750 ../../mod/admin.php:955 +msgid "Toggle" +msgstr "" + +#: ../../mod/admin.php:751 ../../mod/admin.php:956 ../../mod/settings.php:89 +#: ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:773 ../../addon/dav/layout.fnk.php:116 +#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137 +msgid "Settings" +msgstr "" + +#: ../../mod/admin.php:758 ../../mod/admin.php:965 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:759 ../../mod/admin.php:966 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:888 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:947 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:995 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:996 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1023 +msgid "Log settings updated." +msgstr "" + +#: ../../mod/admin.php:1079 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1085 +msgid "Debugging" +msgstr "" + +#: ../../mod/admin.php:1086 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1086 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: ../../mod/admin.php:1087 +msgid "Log level" +msgstr "" + +#: ../../mod/admin.php:1136 ../../mod/contacts.php:364 +msgid "Update now" +msgstr "" + +#: ../../mod/admin.php:1137 +msgid "Close" +msgstr "" + +#: ../../mod/admin.php:1143 +msgid "FTP Host" +msgstr "" + +#: ../../mod/admin.php:1144 +msgid "FTP Path" +msgstr "" + +#: ../../mod/admin.php:1145 +msgid "FTP User" +msgstr "" + +#: ../../mod/admin.php:1146 +msgid "FTP Password" +msgstr "" + +#: ../../mod/message.php:9 ../../include/nav.php:131 +msgid "New Message" +msgstr "" + +#: ../../mod/message.php:66 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "" + +#: ../../mod/message.php:70 +msgid "Unable to locate contact information." +msgstr "" + +#: ../../mod/message.php:73 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "" + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "" + +#: ../../mod/message.php:79 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "" + +#: ../../mod/message.php:120 +msgid "Message deleted." +msgstr "" + +#: ../../mod/message.php:150 +msgid "Conversation removed." +msgstr "" + +#: ../../mod/message.php:172 ../../mod/wallmessage.php:124 +#: ../../include/conversation.php:943 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../mod/message.php:200 ../../mod/wallmessage.php:131 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/message.php:201 ../../mod/message.php:399 +#: ../../mod/wallmessage.php:133 +msgid "To:" +msgstr "" + +#: ../../mod/message.php:206 ../../mod/message.php:401 +#: ../../mod/wallmessage.php:134 +msgid "Subject:" +msgstr "" + +#: ../../mod/message.php:210 ../../mod/message.php:404 +#: ../../mod/wallmessage.php:140 ../../mod/invite.php:113 +msgid "Your message:" +msgstr "" + +#: ../../mod/message.php:213 ../../mod/message.php:408 +#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143 +#: ../../include/conversation.php:990 +msgid "Upload photo" +msgstr "" + +#: ../../mod/message.php:214 ../../mod/message.php:409 +#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144 +#: ../../include/conversation.php:994 +msgid "Insert web link" +msgstr "" + +#: ../../mod/message.php:215 ../../mod/message.php:410 +#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:145 +#: ../../mod/photos.php:1287 ../../include/conversation.php:371 +#: ../../include/conversation.php:731 ../../include/conversation.php:1008 +msgid "Please wait" +msgstr "" + +#: ../../mod/message.php:247 +msgid "No messages." +msgstr "" + +#: ../../mod/message.php:254 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: ../../mod/message.php:257 +#, php-format +msgid "You and %s" +msgstr "" + +#: ../../mod/message.php:260 +#, php-format +msgid "%s and You" +msgstr "" + +#: ../../mod/message.php:270 ../../mod/message.php:392 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/message.php:273 +msgid "D, d M Y - g:i A" +msgstr "" + +#: ../../mod/message.php:275 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/message.php:310 +msgid "Message not available." +msgstr "" + +#: ../../mod/message.php:375 +msgid "Delete message" +msgstr "" + +#: ../../mod/message.php:394 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/message.php:398 +msgid "Send Reply" +msgstr "" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "" + +#: ../../mod/editpost.php:36 +msgid "Edit post" +msgstr "" + +#: ../../mod/editpost.php:80 ../../include/conversation.php:975 +msgid "Post to Email" +msgstr "" + +#: ../../mod/editpost.php:95 ../../mod/settings.php:617 +#: ../../include/conversation.php:596 +msgid "Edit" +msgstr "" + +#: ../../mod/editpost.php:97 ../../include/conversation.php:992 +msgid "Attach file" +msgstr "" + +#: ../../mod/editpost.php:99 +msgid "Insert YouTube video" +msgstr "" + +#: ../../mod/editpost.php:100 +msgid "Insert Vorbis [.ogg] video" +msgstr "" + +#: ../../mod/editpost.php:101 +msgid "Insert Vorbis [.ogg] audio" +msgstr "" + +#: ../../mod/editpost.php:102 ../../include/conversation.php:1000 +msgid "Set your location" +msgstr "" + +#: ../../mod/editpost.php:103 ../../include/conversation.php:1002 +msgid "Clear browser location" +msgstr "" + +#: ../../mod/editpost.php:105 ../../include/conversation.php:1009 +msgid "Permission settings" +msgstr "" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1018 +msgid "CC: email addresses" +msgstr "" + +#: ../../mod/editpost.php:114 ../../include/conversation.php:1019 +msgid "Public post" +msgstr "" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1005 +msgid "Set title" +msgstr "" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1007 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1021 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: ../../mod/editpost.php:125 ../../mod/photos.php:1307 +#: ../../include/conversation.php:589 ../../include/conversation.php:1026 +msgid "Preview" +msgstr "" + +#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:21 +#: ../../mod/profiles.php:395 ../../mod/profiles.php:509 +msgid "Profile not found." +msgstr "" + +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." +msgstr "" + +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "" + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "" + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "" + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "" + +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:510 +#: ../../include/conversation.php:101 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: ../../mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: ../../mod/dfrn_confirm.php:750 +#, php-format +msgid "Connection accepted at %s" +msgstr "" + +#: ../../mod/dfrn_confirm.php:752 ../../mod/register.php:90 +#: ../../mod/register.php:144 ../../mod/lostpass.php:45 +#: ../../mod/lostpass.php:107 ../../mod/regmod.php:54 ../../boot.php:703 +#: ../../addon/testdrive/testdrive.php:67 +#: ../../addon/facebook/facebook.php:688 +#: ../../addon/facebook/facebook.php:1178 +#: ../../addon/public_server/public_server.php:62 ../../include/items.php:2792 +msgid "Administrator" +msgstr "" + +#: ../../mod/dfrn_confirm.php:799 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: ../../mod/events.php:65 +msgid "Event description and start time are required." +msgstr "" + +#: ../../mod/events.php:258 +msgid "l, F j" +msgstr "" + +#: ../../mod/events.php:280 +msgid "Edit event" +msgstr "" + +#: ../../mod/events.php:300 ../../include/text.php:1065 +msgid "link to source" +msgstr "" + +#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:131 +#: ../../boot.php:1529 ../../include/nav.php:52 +msgid "Events" +msgstr "" + +#: ../../mod/events.php:325 +msgid "Create New Event" +msgstr "" + +#: ../../mod/events.php:326 ../../addon/dav/layout.fnk.php:154 +msgid "Previous" +msgstr "" + +#: ../../mod/events.php:327 ../../mod/install.php:205 +#: ../../addon/dav/layout.fnk.php:157 +msgid "Next" +msgstr "" + +#: ../../mod/events.php:399 +msgid "hour:minute" +msgstr "" + +#: ../../mod/events.php:408 +msgid "Event details" +msgstr "" + +#: ../../mod/events.php:409 +#, php-format +msgid "Format is %s %s. Starting date and Description are required." +msgstr "" + +#: ../../mod/events.php:411 +msgid "Event Starts:" +msgstr "" + +#: ../../mod/events.php:414 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: ../../mod/events.php:416 +msgid "Event Finishes:" +msgstr "" + +#: ../../mod/events.php:419 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../mod/events.php:421 +msgid "Description:" +msgstr "" + +#: ../../mod/events.php:423 ../../boot.php:1109 ../../include/event.php:37 +#: ../../include/bb2diaspora.php:265 +msgid "Location:" +msgstr "" + +#: ../../mod/events.php:425 +msgid "Share this event" +msgstr "" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 +#: ../../boot.php:1520 ../../include/nav.php:51 +msgid "Photos" +msgstr "" + +#: ../../mod/fbrowser.php:96 +msgid "Files" +msgstr "" + +#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: ../../mod/wallmessage.php:132 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:351 +#: ../../mod/contacts.php:542 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:543 +msgid "Edit contact" +msgstr "" + +#: ../../mod/nogroup.php:58 +msgid "Contacts who are not members of a group" +msgstr "" + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "" + +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "" + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "" + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/wall_upload.php:77 ../../mod/profile_photo.php:117 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "" + +#: ../../mod/wall_upload.php:86 ../../mod/photos.php:714 +#: ../../mod/profile_photo.php:126 +msgid "Unable to process image." +msgstr "" + +#: ../../mod/wall_upload.php:102 ../../mod/wall_upload.php:111 +#: ../../mod/wall_upload.php:118 ../../mod/item.php:379 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/wall_upload.php:105 ../../mod/photos.php:734 +#: ../../mod/profile_photo.php:259 +msgid "Image upload failed." +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "" + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../mod/tagger.php:103 ../../include/conversation.php:138 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: ../../mod/photos.php:44 ../../boot.php:1523 +msgid "Photo Albums" +msgstr "" + +#: ../../mod/photos.php:52 ../../mod/photos.php:154 ../../mod/photos.php:942 +#: ../../mod/photos.php:1013 ../../mod/photos.php:1028 +#: ../../mod/photos.php:1455 ../../mod/photos.php:1467 +#: ../../view/theme/diabook/theme.php:598 +#: ../../addon/communityhome/communityhome.php:110 +msgid "Contact Photos" +msgstr "" + +#: ../../mod/photos.php:59 ../../mod/photos.php:1038 ../../mod/photos.php:1505 +msgid "Upload New Photos" +msgstr "" + +#: ../../mod/photos.php:70 ../../mod/settings.php:21 +msgid "everybody" +msgstr "" + +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "" + +#: ../../mod/photos.php:154 ../../mod/photos.php:656 ../../mod/photos.php:1013 +#: ../../mod/photos.php:1028 ../../mod/profile_photo.php:60 +#: ../../mod/profile_photo.php:67 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:176 ../../mod/profile_photo.php:254 +#: ../../mod/profile_photo.php:263 ../../view/theme/diabook/theme.php:599 +#: ../../addon/communityhome/communityhome.php:111 ../../include/user.php:298 +#: ../../include/user.php:305 ../../include/user.php:312 +msgid "Profile Photos" +msgstr "" + +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "" + +#: ../../mod/photos.php:182 ../../mod/photos.php:1022 +msgid "Delete Album" +msgstr "" + +#: ../../mod/photos.php:245 ../../mod/photos.php:1267 +msgid "Delete Photo" +msgstr "" + +#: ../../mod/photos.php:587 +msgid "was tagged in a" +msgstr "" + +#: ../../mod/photos.php:587 +msgid "by" +msgstr "" + +#: ../../mod/photos.php:692 ../../addon/js_upload/js_upload.php:315 +msgid "Image exceeds size limit of " +msgstr "" + +#: ../../mod/photos.php:700 +msgid "Image file is empty." +msgstr "" + +#: ../../mod/photos.php:830 +msgid "No photos selected" +msgstr "" + +#: ../../mod/photos.php:909 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../mod/photos.php:970 +msgid "Upload Photos" +msgstr "" + +#: ../../mod/photos.php:973 ../../mod/photos.php:1017 +msgid "New album name: " +msgstr "" + +#: ../../mod/photos.php:974 +msgid "or existing album name: " +msgstr "" + +#: ../../mod/photos.php:975 +msgid "Do not show a status post for this upload" +msgstr "" + +#: ../../mod/photos.php:977 ../../mod/photos.php:1262 +msgid "Permissions" +msgstr "" + +#: ../../mod/photos.php:1032 +msgid "Edit Album" +msgstr "" + +#: ../../mod/photos.php:1056 ../../mod/photos.php:1488 +msgid "View Photo" +msgstr "" + +#: ../../mod/photos.php:1091 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../mod/photos.php:1093 +msgid "Photo not available" +msgstr "" + +#: ../../mod/photos.php:1143 +msgid "View photo" +msgstr "" + +#: ../../mod/photos.php:1143 +msgid "Edit photo" +msgstr "" + +#: ../../mod/photos.php:1144 +msgid "Use as profile photo" +msgstr "" + +#: ../../mod/photos.php:1150 ../../include/conversation.php:490 +msgid "Private Message" +msgstr "" + +#: ../../mod/photos.php:1172 +msgid "View Full Size" +msgstr "" + +#: ../../mod/photos.php:1240 +msgid "Tags: " +msgstr "" + +#: ../../mod/photos.php:1243 +msgid "[Remove any tag]" +msgstr "" + +#: ../../mod/photos.php:1253 +msgid "Rotate CW" +msgstr "" + +#: ../../mod/photos.php:1255 +msgid "New album name" +msgstr "" + +#: ../../mod/photos.php:1258 +msgid "Caption" +msgstr "" + +#: ../../mod/photos.php:1260 +msgid "Add a Tag" +msgstr "" + +#: ../../mod/photos.php:1264 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: ../../mod/photos.php:1284 ../../include/conversation.php:554 +msgid "I like this (toggle)" +msgstr "" + +#: ../../mod/photos.php:1285 ../../include/conversation.php:555 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../mod/photos.php:1286 ../../include/conversation.php:989 +msgid "Share" +msgstr "" + +#: ../../mod/photos.php:1303 ../../mod/photos.php:1343 +#: ../../mod/photos.php:1374 ../../include/conversation.php:577 +msgid "This is you" +msgstr "" + +#: ../../mod/photos.php:1305 ../../mod/photos.php:1345 +#: ../../mod/photos.php:1376 ../../boot.php:523 +#: ../../include/conversation.php:579 +msgid "Comment" +msgstr "" + +#: ../../mod/photos.php:1494 +msgid "View Album" +msgstr "" + +#: ../../mod/photos.php:1503 +msgid "Recent Photos" +msgstr "" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "" + +#: ../../mod/register.php:88 ../../mod/regmod.php:52 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../mod/register.php:96 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: ../../mod/register.php:100 +msgid "Failed to send email message. Here is the message that failed." +msgstr "" + +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:142 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../mod/register.php:151 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:189 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:215 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: ../../mod/register.php:216 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: ../../mod/register.php:217 +msgid "Your OpenID (optional): " +msgstr "" + +#: ../../mod/register.php:231 +msgid "Include your profile in member directory?" +msgstr "" + +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "" + +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "" + +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "" + +#: ../../mod/register.php:265 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." +msgstr "" + +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "" + +#: ../../mod/register.php:269 ../../boot.php:801 ../../include/nav.php:81 +msgid "Register" +msgstr "" + +#: ../../mod/lostpass.php:16 +msgid "No valid account found." +msgstr "" + +#: ../../mod/lostpass.php:32 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../mod/lostpass.php:43 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/lostpass.php:65 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../mod/lostpass.php:83 ../../boot.php:835 +msgid "Password Reset" +msgstr "" + +#: ../../mod/lostpass.php:84 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../mod/lostpass.php:85 +msgid "Your new password is" +msgstr "" + +#: ../../mod/lostpass.php:86 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../mod/lostpass.php:87 +msgid "click here to login" +msgstr "" + +#: ../../mod/lostpass.php:88 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../mod/lostpass.php:119 +msgid "Forgot your Password?" +msgstr "" + +#: ../../mod/lostpass.php:120 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../mod/lostpass.php:121 +msgid "Nickname or Email: " +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Reset" +msgstr "" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "" + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "" + +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "" + +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "" + +#: ../../mod/help.php:30 +msgid "Help:" +msgstr "" + +#: ../../mod/help.php:34 ../../addon/dav/layout.fnk.php:116 +#: ../../include/nav.php:86 +msgid "Help" +msgstr "" + #: ../../mod/contacts.php:83 ../../mod/contacts.php:163 msgid "Could not access contact record." msgstr "" @@ -1489,16 +2193,6 @@ msgstr[1] "" msgid "View all contacts" msgstr "" -#: ../../mod/contacts.php:310 ../../mod/contacts.php:367 -#: ../../mod/admin.php:665 -msgid "Unblock" -msgstr "" - -#: ../../mod/contacts.php:310 ../../mod/contacts.php:367 -#: ../../mod/admin.php:664 -msgid "Block" -msgstr "" - #: ../../mod/contacts.php:313 msgid "Toggle Blocked status" msgstr "" @@ -1554,12 +2248,6 @@ msgstr "" msgid "Edit contact notes" msgstr "" -#: ../../mod/contacts.php:351 ../../mod/contacts.php:542 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - #: ../../mod/contacts.php:352 msgid "Block/Unblock contact" msgstr "" @@ -1588,10 +2276,6 @@ msgstr "" msgid "Update public posts" msgstr "" -#: ../../mod/contacts.php:364 ../../mod/admin.php:1136 -msgid "Update now" -msgstr "" - #: ../../mod/contacts.php:371 msgid "Currently blocked" msgstr "" @@ -1677,10 +2361,6 @@ msgstr "" msgid "you are a fan of" msgstr "" -#: ../../mod/contacts.php:543 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "" - #: ../../mod/contacts.php:564 ../../view/theme/diabook/theme.php:129 #: ../../include/nav.php:139 msgid "Contacts" @@ -1699,78 +2379,256 @@ msgstr "" msgid "Find" msgstr "" -#: ../../mod/lostpass.php:16 -msgid "No valid account found." +#: ../../mod/common.php:42 +msgid "Common Friends" msgstr "" -#: ../../mod/lostpass.php:32 -msgid "Password reset request issued. Check your email." +#: ../../mod/common.php:78 +msgid "No contacts in common." msgstr "" -#: ../../mod/lostpass.php:43 +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "" + +#: ../../mod/allfriends.php:34 #, php-format -msgid "Password reset requested at %s" +msgid "Friends of %s" msgstr "" -#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 -#: ../../mod/register.php:90 ../../mod/register.php:144 -#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 -#: ../../addon/facebook/facebook.php:688 -#: ../../addon/facebook/facebook.php:1178 -#: ../../addon/public_server/public_server.php:62 -#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:2792 -#: ../../boot.php:703 -msgid "Administrator" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." msgstr "" -#: ../../mod/lostpass.php:65 +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +msgid "Remove" +msgstr "" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "" + +#: ../../mod/newmember.php:12 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." msgstr "" -#: ../../mod/lostpass.php:83 ../../boot.php:835 -msgid "Password Reset" -msgstr "" - -#: ../../mod/lostpass.php:84 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:85 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:86 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "click here to login" -msgstr "" - -#: ../../mod/lostpass.php:88 +#: ../../mod/newmember.php:16 msgid "" -"Your password may be changed from the Settings page after " -"successful login." +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, connect to Facebook, make some new connections, " +"and find some groups to join." msgstr "" -#: ../../mod/lostpass.php:119 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:120 +#: ../../mod/newmember.php:18 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." msgstr "" -#: ../../mod/lostpass.php:121 -msgid "Nickname or Email: " +#: ../../mod/newmember.php:20 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished " +"directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." msgstr "" -#: ../../mod/lostpass.php:122 -msgid "Reset" +#: ../../mod/newmember.php:22 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make " +"friends than people who do not." +msgstr "" + +#: ../../mod/newmember.php:25 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "" + +#: ../../mod/newmember.php:27 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "" + +#: ../../mod/newmember.php:32 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "" + +#: ../../mod/newmember.php:34 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown " +"visitors." +msgstr "" + +#: ../../mod/newmember.php:36 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "" + +#: ../../mod/newmember.php:38 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "" + +#: ../../mod/newmember.php:40 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "" + +#: ../../mod/newmember.php:42 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand " +"new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "" + +#: ../../mod/newmember.php:44 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with " +"each group privately on your Network page." +msgstr "" + +#: ../../mod/newmember.php:46 +msgid "" +"Our help pages may be consulted for detail on other program " +"features and resources." +msgstr "" + +#: ../../mod/search.php:13 ../../mod/network.php:131 +msgid "Saved Searches" +msgstr "" + +#: ../../mod/search.php:16 ../../mod/network.php:122 +msgid "Remove term" +msgstr "" + +#: ../../mod/search.php:83 ../../include/text.php:649 +#: ../../include/text.php:650 ../../include/nav.php:91 +msgid "Search" +msgstr "" + +#: ../../mod/search.php:144 ../../mod/community.php:61 +msgid "No results." +msgstr "" + +#: ../../mod/invite.php:35 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../mod/invite.php:59 +msgid "Please join us on Friendica" +msgstr "" + +#: ../../mod/invite.php:69 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../mod/invite.php:73 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/invite.php:92 +msgid "You have no more invitations available" +msgstr "" + +#: ../../mod/invite.php:100 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many " +"other social networks." +msgstr "" + +#: ../../mod/invite.php:102 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: ../../mod/invite.php:103 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: ../../mod/invite.php:106 +msgid "" +"Our apologies. This system is not currently configured to connect with other " +"public sites or invite members." +msgstr "" + +#: ../../mod/invite.php:111 +msgid "Send invitations" +msgstr "" + +#: ../../mod/invite.php:112 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../mod/invite.php:114 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: ../../mod/invite.php:116 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "" + +#: ../../mod/invite.php:116 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "" + +#: ../../mod/invite.php:118 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" msgstr "" #: ../../mod/settings.php:50 ../../include/nav.php:137 @@ -1801,13 +2659,6 @@ msgstr "" msgid "Remove account" msgstr "" -#: ../../mod/settings.php:89 ../../mod/admin.php:751 ../../mod/admin.php:956 -#: ../../addon/dav/layout.fnk.php:116 ../../addon/mathjax/mathjax.php:36 -#: ../../view/theme/diabook/theme.php:643 -#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 -msgid "Settings" -msgstr "" - #: ../../mod/settings.php:133 msgid "Missing some important data!" msgstr "" @@ -1864,11 +2715,11 @@ msgstr "" msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: ../../mod/settings.php:484 ../../addon/facebook/facebook.php:488 -#: ../../addon/impressum/impressum.php:77 +#: ../../mod/settings.php:484 ../../addon/piwik/piwik.php:105 +#: ../../addon/mathjax/mathjax.php:66 ../../addon/twitter/twitter.php:376 +#: ../../addon/facebook/facebook.php:488 #: ../../addon/openstreetmap/openstreetmap.php:80 -#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 -#: ../../addon/twitter/twitter.php:376 +#: ../../addon/impressum/impressum.php:77 msgid "Settings updated." msgstr "" @@ -2294,1424 +3145,16 @@ msgstr "" msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/manage.php:90 -msgid "Manage Identities and/or Pages" -msgstr "" - -#: ../../mod/manage.php:93 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "" - -#: ../../mod/manage.php:95 -msgid "Select an identity to manage: " -msgstr "" - -#: ../../mod/network.php:67 -msgid "Search Results For:" -msgstr "" - -#: ../../mod/network.php:106 ../../mod/search.php:16 -msgid "Remove term" -msgstr "" - -#: ../../mod/network.php:115 ../../mod/search.php:13 -msgid "Saved Searches" -msgstr "" - -#: ../../mod/network.php:116 ../../include/group.php:244 -msgid "add" -msgstr "" - -#: ../../mod/network.php:253 -msgid "Commented Order" -msgstr "" - -#: ../../mod/network.php:256 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../mod/network.php:259 -msgid "Posted Order" -msgstr "" - -#: ../../mod/network.php:262 -msgid "Sort by Post Date" -msgstr "" - -#: ../../mod/network.php:269 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../mod/network.php:272 -msgid "New" -msgstr "" - -#: ../../mod/network.php:275 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../mod/network.php:278 -msgid "Starred" -msgstr "" - -#: ../../mod/network.php:281 -msgid "Favourite Posts" -msgstr "" - -#: ../../mod/network.php:284 -msgid "Shared Links" -msgstr "" - -#: ../../mod/network.php:287 -msgid "Interesting Links" -msgstr "" - -#: ../../mod/network.php:354 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/network.php:357 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "" - -#: ../../mod/network.php:402 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:413 -msgid "Group is empty" -msgstr "" - -#: ../../mod/network.php:417 -msgid "Group: " -msgstr "" - -#: ../../mod/network.php:427 -msgid "Contact: " -msgstr "" - -#: ../../mod/network.php:429 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "" - -#: ../../mod/network.php:434 -msgid "Invalid contact." -msgstr "" - -#: ../../mod/notes.php:44 ../../boot.php:1535 -msgid "Personal Notes" -msgstr "" - -#: ../../mod/notes.php:63 ../../mod/filer.php:30 -#: ../../addon/facebook/facebook.php:756 -#: ../../addon/privacy_image_cache/privacy_image_cache.php:185 -#: ../../addon/dav/layout.fnk.php:384 ../../include/text.php:652 -msgid "Save" -msgstr "" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:66 -msgid "No recipient selected." -msgstr "" - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "" - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:73 -msgid "Message could not be sent." -msgstr "" - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:76 -msgid "Message collection failure." -msgstr "" - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:79 -msgid "Message sent." -msgstr "" - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "" - -#: ../../mod/wallmessage.php:124 ../../mod/message.php:172 -#: ../../include/conversation.php:943 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../mod/wallmessage.php:131 ../../mod/message.php:200 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/wallmessage.php:132 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" - -#: ../../mod/wallmessage.php:133 ../../mod/message.php:201 -#: ../../mod/message.php:399 -msgid "To:" -msgstr "" - -#: ../../mod/wallmessage.php:134 ../../mod/message.php:206 -#: ../../mod/message.php:401 -msgid "Subject:" -msgstr "" - -#: ../../mod/wallmessage.php:140 ../../mod/message.php:210 -#: ../../mod/message.php:404 ../../mod/invite.php:113 -msgid "Your message:" -msgstr "" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "" - -#: ../../mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "" - -#: ../../mod/newmember.php:16 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, connect to Facebook, make some new connections, " -"and find some groups to join." -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "" - -#: ../../mod/newmember.php:20 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished " -"directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "" - -#: ../../mod/newmember.php:22 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make " -"friends than people who do not." -msgstr "" - -#: ../../mod/newmember.php:25 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "" - -#: ../../mod/newmember.php:27 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "" - -#: ../../mod/newmember.php:32 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "" - -#: ../../mod/newmember.php:34 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown " -"visitors." -msgstr "" - -#: ../../mod/newmember.php:36 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "" - -#: ../../mod/newmember.php:38 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "" - -#: ../../mod/newmember.php:40 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "" - -#: ../../mod/newmember.php:42 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand " -"new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "" - -#: ../../mod/newmember.php:44 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with " -"each group privately on your Network page." -msgstr "" - -#: ../../mod/newmember.php:46 -msgid "" -"Our help pages may be consulted for detail on other program " -"features and resources." -msgstr "" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "" - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "" - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "" - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "" - -#: ../../mod/group.php:47 ../../mod/group.php:137 -msgid "Group not found." -msgstr "" - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "" - -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:298 -msgid "Permission denied" -msgstr "" - -#: ../../mod/group.php:90 -msgid "Create a group of contacts/friends." -msgstr "" - -#: ../../mod/group.php:91 ../../mod/group.php:177 -msgid "Group Name: " -msgstr "" - -#: ../../mod/group.php:110 -msgid "Group removed." -msgstr "" - -#: ../../mod/group.php:112 -msgid "Unable to remove group." -msgstr "" - -#: ../../mod/group.php:176 -msgid "Group Editor" -msgstr "" - -#: ../../mod/group.php:189 -msgid "Members" -msgstr "" - -#: ../../mod/group.php:221 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:128 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:79 -#: ../../include/nav.php:50 ../../boot.php:1514 -msgid "Profile" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "" - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:589 -msgid "View Contacts" -msgstr "" - -#: ../../mod/register.php:88 ../../mod/regmod.php:52 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../mod/register.php:96 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" - -#: ../../mod/register.php:100 -msgid "Failed to send email message. Here is the message that failed." -msgstr "" - -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:142 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../mod/register.php:151 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:189 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:215 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: ../../mod/register.php:216 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" - -#: ../../mod/register.php:217 -msgid "Your OpenID (optional): " -msgstr "" - -#: ../../mod/register.php:231 -msgid "Include your profile in member directory?" -msgstr "" - -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:252 -msgid "Your invitation ID: " -msgstr "" - -#: ../../mod/register.php:255 ../../mod/admin.php:421 -msgid "Registration" -msgstr "" - -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "" - -#: ../../mod/register.php:264 -msgid "Your Email Address: " -msgstr "" - -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." -msgstr "" - -#: ../../mod/register.php:266 -msgid "Choose a nickname: " -msgstr "" - -#: ../../mod/register.php:269 ../../include/nav.php:81 ../../boot.php:801 -msgid "Register" +#: ../../mod/display.php:135 +msgid "Item has been removed." msgstr "" #: ../../mod/dirfind.php:26 msgid "People Search" msgstr "" -#: ../../mod/like.php:185 ../../mod/like.php:259 ../../mod/tagger.php:70 -#: ../../addon/facebook/facebook.php:1572 -#: ../../addon/communityhome/communityhome.php:158 -#: ../../addon/communityhome/communityhome.php:167 -#: ../../view/theme/diabook/theme.php:565 -#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1671 -#: ../../include/conversation.php:48 ../../include/conversation.php:57 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -msgid "status" -msgstr "" - -#: ../../mod/like.php:202 ../../addon/facebook/facebook.php:1576 -#: ../../addon/communityhome/communityhome.php:172 -#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1687 -#: ../../include/conversation.php:65 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:204 ../../include/conversation.php:68 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 -#: ../../mod/admin.php:700 ../../mod/admin.php:899 ../../mod/display.php:37 -#: ../../mod/display.php:142 ../../include/items.php:3234 -msgid "Item not found." -msgstr "" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "" - -#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 -#: ../../include/nav.php:51 ../../boot.php:1520 -msgid "Photos" -msgstr "" - -#: ../../mod/fbrowser.php:96 -msgid "Files" -msgstr "" - -#: ../../mod/regmod.php:61 -msgid "Account approved." -msgstr "" - -#: ../../mod/regmod.php:98 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../mod/regmod.php:110 -msgid "Please login." -msgstr "" - -#: ../../mod/item.php:89 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:258 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:379 ../../mod/wall_upload.php:102 -#: ../../mod/wall_upload.php:111 ../../mod/wall_upload.php:118 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "" - -#: ../../mod/item.php:800 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:825 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social network." -msgstr "" - -#: ../../mod/item.php:827 -#, php-format -msgid "You may visit them online at %s" -msgstr "" - -#: ../../mod/item.php:828 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" - -#: ../../mod/item.php:830 -#, php-format -msgid "%s posted an update." -msgstr "" - -#: ../../mod/profile_photo.php:30 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../mod/profile_photo.php:63 ../../mod/profile_photo.php:70 -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:266 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: ../../mod/profile_photo.php:91 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../mod/profile_photo.php:101 -msgid "Unable to process image" -msgstr "" - -#: ../../mod/profile_photo.php:117 ../../mod/wall_upload.php:77 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "" - -#: ../../mod/profile_photo.php:209 -msgid "Upload File:" -msgstr "" - -#: ../../mod/profile_photo.php:210 -msgid "Upload Profile Photo" -msgstr "" - -#: ../../mod/profile_photo.php:211 -msgid "Upload" -msgstr "" - -#: ../../mod/profile_photo.php:213 -msgid "skip this step" -msgstr "" - -#: ../../mod/profile_photo.php:213 -msgid "select a photo from your photo albums" -msgstr "" - -#: ../../mod/profile_photo.php:226 -msgid "Crop Image" -msgstr "" - -#: ../../mod/profile_photo.php:227 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../mod/profile_photo.php:229 -msgid "Done Editing" -msgstr "" - -#: ../../mod/profile_photo.php:257 -msgid "Image uploaded successfully." -msgstr "" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/message.php:9 ../../include/nav.php:131 -msgid "New Message" -msgstr "" - -#: ../../mod/message.php:70 -msgid "Unable to locate contact information." -msgstr "" - -#: ../../mod/message.php:120 -msgid "Message deleted." -msgstr "" - -#: ../../mod/message.php:150 -msgid "Conversation removed." -msgstr "" - -#: ../../mod/message.php:247 -msgid "No messages." -msgstr "" - -#: ../../mod/message.php:254 -#, php-format -msgid "Unknown sender - %s" -msgstr "" - -#: ../../mod/message.php:257 -#, php-format -msgid "You and %s" -msgstr "" - -#: ../../mod/message.php:260 -#, php-format -msgid "%s and You" -msgstr "" - -#: ../../mod/message.php:270 ../../mod/message.php:392 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/message.php:273 -msgid "D, d M Y - g:i A" -msgstr "" - -#: ../../mod/message.php:275 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/message.php:310 -msgid "Message not available." -msgstr "" - -#: ../../mod/message.php:375 -msgid "Delete message" -msgstr "" - -#: ../../mod/message.php:394 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/message.php:398 -msgid "Send Reply" -msgstr "" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "" - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:96 ../../mod/admin.php:419 -msgid "Site" -msgstr "" - -#: ../../mod/admin.php:97 ../../mod/admin.php:655 ../../mod/admin.php:667 -msgid "Users" -msgstr "" - -#: ../../mod/admin.php:98 ../../mod/admin.php:749 ../../mod/admin.php:791 -msgid "Plugins" -msgstr "" - -#: ../../mod/admin.php:99 ../../mod/admin.php:954 ../../mod/admin.php:990 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1077 -msgid "Logs" -msgstr "" - -#: ../../mod/admin.php:120 ../../include/nav.php:146 -msgid "Admin" -msgstr "" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: ../../mod/admin.php:183 ../../mod/admin.php:637 -msgid "Normal Account" -msgstr "" - -#: ../../mod/admin.php:184 ../../mod/admin.php:638 -msgid "Soapbox Account" -msgstr "" - -#: ../../mod/admin.php:185 ../../mod/admin.php:639 -msgid "Community/Celebrity Account" -msgstr "" - -#: ../../mod/admin.php:186 ../../mod/admin.php:640 -msgid "Automatic Friend Account" -msgstr "" - -#: ../../mod/admin.php:205 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:210 ../../mod/admin.php:418 ../../mod/admin.php:654 -#: ../../mod/admin.php:748 ../../mod/admin.php:790 ../../mod/admin.php:953 -#: ../../mod/admin.php:989 ../../mod/admin.php:1076 -msgid "Administration" -msgstr "" - -#: ../../mod/admin.php:211 -msgid "Summary" -msgstr "" - -#: ../../mod/admin.php:213 -msgid "Registered users" -msgstr "" - -#: ../../mod/admin.php:215 -msgid "Pending registrations" -msgstr "" - -#: ../../mod/admin.php:216 -msgid "Version" -msgstr "" - -#: ../../mod/admin.php:218 -msgid "Active plugins" -msgstr "" - -#: ../../mod/admin.php:357 -msgid "Site settings updated." -msgstr "" - -#: ../../mod/admin.php:405 -msgid "Closed" -msgstr "" - -#: ../../mod/admin.php:406 -msgid "Requires approval" -msgstr "" - -#: ../../mod/admin.php:407 -msgid "Open" -msgstr "" - -#: ../../mod/admin.php:411 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: ../../mod/admin.php:412 -msgid "Force all links to use SSL" -msgstr "" - -#: ../../mod/admin.php:413 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: ../../mod/admin.php:422 -msgid "File upload" -msgstr "" - -#: ../../mod/admin.php:423 -msgid "Policies" -msgstr "" - -#: ../../mod/admin.php:424 -msgid "Advanced" -msgstr "" - -#: ../../mod/admin.php:428 ../../addon/statusnet/statusnet.php:552 -msgid "Site name" -msgstr "" - -#: ../../mod/admin.php:429 -msgid "Banner/Logo" -msgstr "" - -#: ../../mod/admin.php:430 -msgid "System language" -msgstr "" - -#: ../../mod/admin.php:431 -msgid "System theme" -msgstr "" - -#: ../../mod/admin.php:431 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:432 -msgid "SSL link policy" -msgstr "" - -#: ../../mod/admin.php:432 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: ../../mod/admin.php:433 -msgid "Maximum image size" -msgstr "" - -#: ../../mod/admin.php:433 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:435 -msgid "Register policy" -msgstr "" - -#: ../../mod/admin.php:436 -msgid "Register text" -msgstr "" - -#: ../../mod/admin.php:436 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:437 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:437 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:438 -msgid "Allowed friend domains" -msgstr "" - -#: ../../mod/admin.php:438 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../mod/admin.php:439 -msgid "Allowed email domains" -msgstr "" - -#: ../../mod/admin.php:439 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../mod/admin.php:440 -msgid "Block public" -msgstr "" - -#: ../../mod/admin.php:440 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:441 -msgid "Force publish" -msgstr "" - -#: ../../mod/admin.php:441 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:442 -msgid "Global directory update URL" -msgstr "" - -#: ../../mod/admin.php:442 -msgid "" -"URL to update the global directory. If this is not set, the global directory " -"is completely unavailable to the application." -msgstr "" - -#: ../../mod/admin.php:444 -msgid "Block multiple registrations" -msgstr "" - -#: ../../mod/admin.php:444 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: ../../mod/admin.php:445 -msgid "OpenID support" -msgstr "" - -#: ../../mod/admin.php:445 -msgid "OpenID support for registration and logins." -msgstr "" - -#: ../../mod/admin.php:446 -msgid "Fullname check" -msgstr "" - -#: ../../mod/admin.php:446 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: ../../mod/admin.php:447 -msgid "UTF-8 Regular expressions" -msgstr "" - -#: ../../mod/admin.php:447 -msgid "Use PHP UTF8 regular expressions" -msgstr "" - -#: ../../mod/admin.php:448 -msgid "Show Community Page" -msgstr "" - -#: ../../mod/admin.php:448 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "" - -#: ../../mod/admin.php:449 -msgid "Enable OStatus support" -msgstr "" - -#: ../../mod/admin.php:449 -msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: ../../mod/admin.php:450 -msgid "Enable Diaspora support" -msgstr "" - -#: ../../mod/admin.php:450 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: ../../mod/admin.php:451 -msgid "Only allow Friendica contacts" -msgstr "" - -#: ../../mod/admin.php:451 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: ../../mod/admin.php:452 -msgid "Verify SSL" -msgstr "" - -#: ../../mod/admin.php:452 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you " -"cannot connect (at all) to self-signed SSL sites." -msgstr "" - -#: ../../mod/admin.php:453 -msgid "Proxy user" -msgstr "" - -#: ../../mod/admin.php:454 -msgid "Proxy URL" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Network timeout" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:457 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:457 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:458 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:458 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:482 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:485 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:489 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:492 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:507 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:511 -msgid "Failed Updates" -msgstr "" - -#: ../../mod/admin.php:512 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: ../../mod/admin.php:513 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:514 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:539 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:546 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:585 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:593 -#, php-format -msgid "User '%s' unblocked" -msgstr "" - -#: ../../mod/admin.php:593 -#, php-format -msgid "User '%s' blocked" -msgstr "" - -#: ../../mod/admin.php:657 -msgid "select all" -msgstr "" - -#: ../../mod/admin.php:658 -msgid "User registrations waiting for confirm" -msgstr "" - -#: ../../mod/admin.php:659 -msgid "Request date" -msgstr "" - -#: ../../mod/admin.php:659 ../../mod/admin.php:668 -#: ../../include/contact_selectors.php:79 -msgid "Email" -msgstr "" - -#: ../../mod/admin.php:660 -msgid "No registrations." -msgstr "" - -#: ../../mod/admin.php:662 -msgid "Deny" -msgstr "" - -#: ../../mod/admin.php:668 -msgid "Register date" -msgstr "" - -#: ../../mod/admin.php:668 -msgid "Last login" -msgstr "" - -#: ../../mod/admin.php:668 -msgid "Last item" -msgstr "" - -#: ../../mod/admin.php:668 -msgid "Account" -msgstr "" - -#: ../../mod/admin.php:670 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:671 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:712 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../mod/admin.php:716 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../mod/admin.php:726 ../../mod/admin.php:924 -msgid "Disable" -msgstr "" - -#: ../../mod/admin.php:728 ../../mod/admin.php:926 -msgid "Enable" -msgstr "" - -#: ../../mod/admin.php:750 ../../mod/admin.php:955 -msgid "Toggle" -msgstr "" - -#: ../../mod/admin.php:758 ../../mod/admin.php:965 -msgid "Author: " -msgstr "" - -#: ../../mod/admin.php:759 ../../mod/admin.php:966 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:888 -msgid "No themes found." -msgstr "" - -#: ../../mod/admin.php:947 -msgid "Screenshot" -msgstr "" - -#: ../../mod/admin.php:995 -msgid "[Experimental]" -msgstr "" - -#: ../../mod/admin.php:996 -msgid "[Unsupported]" -msgstr "" - -#: ../../mod/admin.php:1023 -msgid "Log settings updated." -msgstr "" - -#: ../../mod/admin.php:1079 -msgid "Clear" -msgstr "" - -#: ../../mod/admin.php:1085 -msgid "Debugging" -msgstr "" - -#: ../../mod/admin.php:1086 -msgid "Log file" -msgstr "" - -#: ../../mod/admin.php:1086 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: ../../mod/admin.php:1087 -msgid "Log level" -msgstr "" - -#: ../../mod/admin.php:1137 -msgid "Close" -msgstr "" - -#: ../../mod/admin.php:1143 -msgid "FTP Host" -msgstr "" - -#: ../../mod/admin.php:1144 -msgid "FTP Path" -msgstr "" - -#: ../../mod/admin.php:1145 -msgid "FTP User" -msgstr "" - -#: ../../mod/admin.php:1146 -msgid "FTP Password" -msgstr "" - -#: ../../mod/profile.php:21 ../../boot.php:966 -msgid "Requested profile is not available." -msgstr "" - -#: ../../mod/profile.php:139 ../../mod/display.php:75 -msgid "Access to this profile has been restricted." -msgstr "" - -#: ../../mod/profile.php:164 -msgid "Tips for New Members" -msgstr "" - -#: ../../mod/ping.php:185 -msgid "{0} wants to be your friend" -msgstr "" - -#: ../../mod/ping.php:190 -msgid "{0} sent you a message" -msgstr "" - -#: ../../mod/ping.php:195 -msgid "{0} requested registration" -msgstr "" - -#: ../../mod/ping.php:201 -#, php-format -msgid "{0} commented %s's post" -msgstr "" - -#: ../../mod/ping.php:206 -#, php-format -msgid "{0} liked %s's post" -msgstr "" - -#: ../../mod/ping.php:211 -#, php-format -msgid "{0} disliked %s's post" -msgstr "" - -#: ../../mod/ping.php:216 -#, php-format -msgid "{0} is now friends with %s" -msgstr "" - -#: ../../mod/ping.php:221 -msgid "{0} posted" -msgstr "" - -#: ../../mod/ping.php:226 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "" - -#: ../../mod/ping.php:232 -msgid "{0} mentioned you in a post" -msgstr "" - -#: ../../mod/nogroup.php:58 -msgid "Contacts who are not members of a group" -msgstr "" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" - -#: ../../mod/openid.php:93 ../../include/auth.php:99 -#: ../../include/auth.php:162 -msgid "Login failed." -msgstr "" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "" - -#: ../../mod/display.php:135 -msgid "Item has been removed." -msgstr "" - -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "" - -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "" - -#: ../../mod/search.php:83 ../../include/text.php:649 -#: ../../include/text.php:650 ../../include/nav.php:91 -msgid "Search" -msgstr "" - -#: ../../mod/profiles.php:21 ../../mod/profiles.php:395 -#: ../../mod/profiles.php:509 ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" msgstr "" #: ../../mod/profiles.php:31 @@ -4000,6 +3443,60 @@ msgstr "" msgid "Edit visibility" msgstr "" +#: ../../mod/ping.php:185 +msgid "{0} wants to be your friend" +msgstr "" + +#: ../../mod/ping.php:190 +msgid "{0} sent you a message" +msgstr "" + +#: ../../mod/ping.php:195 +msgid "{0} requested registration" +msgstr "" + +#: ../../mod/ping.php:201 +#, php-format +msgid "{0} commented %s's post" +msgstr "" + +#: ../../mod/ping.php:206 +#, php-format +msgid "{0} liked %s's post" +msgstr "" + +#: ../../mod/ping.php:211 +#, php-format +msgid "{0} disliked %s's post" +msgstr "" + +#: ../../mod/ping.php:216 +#, php-format +msgid "{0} is now friends with %s" +msgstr "" + +#: ../../mod/ping.php:221 +msgid "{0} posted" +msgstr "" + +#: ../../mod/ping.php:226 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "" + +#: ../../mod/ping.php:232 +msgid "{0} mentioned you in a post" +msgstr "" + +#: ../../mod/community.php:21 +msgid "Not available." +msgstr "" + +#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:133 +#: ../../include/nav.php:101 +msgid "Community" +msgstr "" + #: ../../mod/filer.php:29 ../../include/conversation.php:947 msgid "Save to Folder:" msgstr "" @@ -4008,9 +3505,89 @@ msgstr "" msgid "- select -" msgstr "" -#: ../../mod/tagger.php:103 ../../include/conversation.php:138 +#: ../../mod/filer.php:30 ../../mod/notes.php:63 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:185 +#: ../../addon/dav/layout.fnk.php:384 ../../addon/facebook/facebook.php:756 +#: ../../include/text.php:652 +msgid "Save" +msgstr "" + +#: ../../mod/wall_attach.php:58 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../mod/wall_attach.php:86 ../../mod/wall_attach.php:97 +msgid "File upload failed." +msgstr "" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "" + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:128 +#: ../../boot.php:1514 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:79 ../../include/nav.php:50 +msgid "Profile" +msgstr "" + +#: ../../mod/profperm.php:105 ../../mod/group.php:221 +msgid "Click on a contact to add or remove." +msgstr "" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "" + +#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "" + +#: ../../mod/suggest.php:44 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../mod/suggest.php:59 ../../mod/match.php:58 ../../boot.php:1053 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "" + +#: ../../mod/suggest.php:61 +msgid "Ignore/Hide" +msgstr "" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "" + +#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522 +#, php-format +msgid "%s welcomes %s" +msgstr "" + +#: ../../mod/manage.php:90 +msgid "Manage Identities and/or Pages" +msgstr "" + +#: ../../mod/manage.php:93 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "" + +#: ../../mod/manage.php:95 +msgid "Select an identity to manage: " msgstr "" #: ../../mod/delegate.php:95 @@ -4048,19 +3625,16 @@ msgstr "" msgid "No entries." msgstr "" -#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." msgstr "" -#: ../../mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/viewcontacts.php:76 ../../include/text.php:589 +msgid "View Contacts" msgstr "" -#: ../../mod/suggest.php:61 -msgid "Ignore/Hide" +#: ../../mod/notes.php:44 ../../boot.php:1535 +msgid "Personal Notes" msgstr "" #: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:624 @@ -4083,175 +3657,1962 @@ msgstr "" msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../mod/invite.php:35 -#, php-format -msgid "%s : Not a valid email address." +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:243 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../mod/invite.php:59 -msgid "Please join us on Friendica" +#: ../../mod/localtime.php:24 +msgid "Time Conversion" msgstr "" -#: ../../mod/invite.php:69 -#, php-format -msgid "%s : Message delivery failed." +#: ../../mod/localtime.php:26 +msgid "" +"Friendika provides this service for sharing events with other networks and " +"friends in unknown timezones." msgstr "" -#: ../../mod/invite.php:73 +#: ../../mod/localtime.php:30 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." +msgid "UTC time: %s" +msgstr "" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "" + +#: ../../mod/profile_photo.php:30 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../mod/profile_photo.php:63 ../../mod/profile_photo.php:70 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:266 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: ../../mod/profile_photo.php:91 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../mod/profile_photo.php:101 +msgid "Unable to process image" +msgstr "" + +#: ../../mod/profile_photo.php:209 +msgid "Upload File:" +msgstr "" + +#: ../../mod/profile_photo.php:210 +msgid "Upload Profile Photo" +msgstr "" + +#: ../../mod/profile_photo.php:211 +msgid "Upload" +msgstr "" + +#: ../../mod/profile_photo.php:213 +msgid "skip this step" +msgstr "" + +#: ../../mod/profile_photo.php:213 +msgid "select a photo from your photo albums" +msgstr "" + +#: ../../mod/profile_photo.php:226 +msgid "Crop Image" +msgstr "" + +#: ../../mod/profile_photo.php:227 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../mod/profile_photo.php:229 +msgid "Done Editing" +msgstr "" + +#: ../../mod/profile_photo.php:257 +msgid "Image uploaded successfully." +msgstr "" + +#: ../../mod/install.php:117 +msgid "Friendica Social Communications Server - Setup" +msgstr "" + +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "" + +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "" + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "" + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" + +#: ../../mod/install.php:139 ../../mod/install.php:204 +#: ../../mod/install.php:489 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "" + +#: ../../mod/install.php:201 +msgid "System check" +msgstr "" + +#: ../../mod/install.php:206 +msgid "Check again" +msgstr "" + +#: ../../mod/install.php:225 +msgid "Database connection" +msgstr "" + +#: ../../mod/install.php:226 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "" + +#: ../../mod/install.php:227 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: ../../mod/install.php:228 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: ../../mod/install.php:232 +msgid "Database Server Name" +msgstr "" + +#: ../../mod/install.php:233 +msgid "Database Login Name" +msgstr "" + +#: ../../mod/install.php:234 +msgid "Database Login Password" +msgstr "" + +#: ../../mod/install.php:235 +msgid "Database Name" +msgstr "" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "Site administrator email address" +msgstr "" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../mod/install.php:240 ../../mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../mod/install.php:265 +msgid "Site settings" +msgstr "" + +#: ../../mod/install.php:318 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../mod/install.php:319 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "" + +#: ../../mod/install.php:323 +msgid "PHP executable path" +msgstr "" + +#: ../../mod/install.php:323 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../mod/install.php:328 +msgid "Command line PHP" +msgstr "" + +#: ../../mod/install.php:337 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../mod/install.php:338 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../mod/install.php:340 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../mod/install.php:361 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../mod/install.php:362 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../mod/install.php:364 +msgid "Generate encryption keys" +msgstr "" + +#: ../../mod/install.php:371 +msgid "libCurl PHP module" +msgstr "" + +#: ../../mod/install.php:372 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../mod/install.php:373 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../mod/install.php:374 +msgid "mysqli PHP module" +msgstr "" + +#: ../../mod/install.php:375 +msgid "mb_string PHP module" +msgstr "" + +#: ../../mod/install.php:380 ../../mod/install.php:382 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../mod/install.php:380 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../mod/install.php:388 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:392 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../mod/install.php:396 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:400 +msgid "Error: mysqli PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:404 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:421 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: ../../mod/install.php:422 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" + +#: ../../mod/install.php:423 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: ../../mod/install.php:424 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/install.php:427 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../mod/install.php:439 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: ../../mod/install.php:441 +msgid "Url rewrite is working" +msgstr "" + +#: ../../mod/install.php:451 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" + +#: ../../mod/install.php:476 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../mod/install.php:487 +msgid "

What next

" +msgstr "" + +#: ../../mod/install.php:488 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "" + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "" + +#: ../../mod/group.php:47 ../../mod/group.php:137 +msgid "Group not found." +msgstr "" + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "" + +#: ../../mod/group.php:90 +msgid "Create a group of contacts/friends." +msgstr "" + +#: ../../mod/group.php:91 ../../mod/group.php:177 +msgid "Group Name: " +msgstr "" + +#: ../../mod/group.php:110 +msgid "Group removed." +msgstr "" + +#: ../../mod/group.php:112 +msgid "Unable to remove group." +msgstr "" + +#: ../../mod/group.php:176 +msgid "Group Editor" +msgstr "" + +#: ../../mod/group.php:189 +msgid "Members" +msgstr "" + +#: ../../mod/regmod.php:61 +msgid "Account approved." +msgstr "" + +#: ../../mod/regmod.php:98 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../mod/regmod.php:110 +msgid "Please login." +msgstr "" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "" + +#: ../../mod/item.php:89 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:258 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:800 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:825 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social network." +msgstr "" + +#: ../../mod/item.php:827 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: ../../mod/item.php:828 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: ../../mod/item.php:830 +#, php-format +msgid "%s posted an update." +msgstr "" + +#: ../../mod/network.php:82 +msgid "Search Results For:" +msgstr "" + +#: ../../mod/network.php:132 ../../include/group.php:244 +msgid "add" +msgstr "" + +#: ../../mod/network.php:272 +msgid "Commented Order" +msgstr "" + +#: ../../mod/network.php:275 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../mod/network.php:278 +msgid "Posted Order" +msgstr "" + +#: ../../mod/network.php:281 +msgid "Sort by Post Date" +msgstr "" + +#: ../../mod/network.php:288 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../mod/network.php:291 +msgid "New" +msgstr "" + +#: ../../mod/network.php:294 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../mod/network.php:297 +msgid "Starred" +msgstr "" + +#: ../../mod/network.php:300 +msgid "Favourite Posts" +msgstr "" + +#: ../../mod/network.php:303 +msgid "Shared Links" +msgstr "" + +#: ../../mod/network.php:306 +msgid "Interesting Links" +msgstr "" + +#: ../../mod/network.php:373 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." msgstr[0] "" msgstr[1] "" -#: ../../mod/invite.php:92 -msgid "You have no more invitations available" +#: ../../mod/network.php:376 +msgid "Private messages to this group are at risk of public disclosure." msgstr "" -#: ../../mod/invite.php:100 +#: ../../mod/network.php:421 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:432 +msgid "Group is empty" +msgstr "" + +#: ../../mod/network.php:436 +msgid "Group: " +msgstr "" + +#: ../../mod/network.php:446 +msgid "Contact: " +msgstr "" + +#: ../../mod/network.php:448 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "" + +#: ../../mod/network.php:453 +msgid "Invalid contact." +msgstr "" + +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "" + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "" + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "" + +#: ../../mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." +msgstr "" + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "" + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "" + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49 +#: ../../include/nav.php:115 +msgid "Your posts and conversations" +msgstr "" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50 +msgid "Your profile page" +msgstr "" + +#: ../../view/theme/diabook/theme.php:129 +msgid "Your contacts" +msgstr "" + +#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51 +msgid "Your photos" +msgstr "" + +#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52 +msgid "Your events" +msgstr "" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Personal notes" +msgstr "" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Your personal photos" +msgstr "" + +#: ../../view/theme/diabook/theme.php:134 +#: ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:747 +#: ../../view/theme/diabook/config.php:201 +msgid "Community Pages" +msgstr "" + +#: ../../view/theme/diabook/theme.php:490 +#: ../../view/theme/diabook/theme.php:749 +#: ../../view/theme/diabook/config.php:203 +msgid "Community Profiles" +msgstr "" + +#: ../../view/theme/diabook/theme.php:511 +#: ../../view/theme/diabook/theme.php:754 +#: ../../view/theme/diabook/config.php:208 +msgid "Last users" +msgstr "" + +#: ../../view/theme/diabook/theme.php:540 +#: ../../view/theme/diabook/theme.php:756 +#: ../../view/theme/diabook/config.php:210 +msgid "Last likes" +msgstr "" + +#: ../../view/theme/diabook/theme.php:562 +#: ../../addon/communityhome/communityhome.php:155 ../../include/text.php:1314 +#: ../../include/conversation.php:45 ../../include/conversation.php:118 +msgid "event" +msgstr "" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/theme.php:755 +#: ../../view/theme/diabook/config.php:209 +msgid "Last photos" +msgstr "" + +#: ../../view/theme/diabook/theme.php:622 +#: ../../view/theme/diabook/theme.php:752 +#: ../../view/theme/diabook/config.php:206 +msgid "Find Friends" +msgstr "" + +#: ../../view/theme/diabook/theme.php:623 +msgid "Local Directory" +msgstr "" + +#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "" + +#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "" + +#: ../../view/theme/diabook/theme.php:678 +#: ../../view/theme/diabook/theme.php:748 +#: ../../view/theme/diabook/config.php:202 +msgid "Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:683 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:684 +#: ../../view/theme/diabook/config.php:199 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:685 +#: ../../view/theme/diabook/config.php:200 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:698 +#: ../../view/theme/diabook/theme.php:750 +#: ../../view/theme/diabook/config.php:204 +msgid "Help or @NewHere ?" +msgstr "" + +#: ../../view/theme/diabook/theme.php:705 +#: ../../view/theme/diabook/theme.php:751 +#: ../../view/theme/diabook/config.php:205 +msgid "Connect Services" +msgstr "" + +#: ../../view/theme/diabook/theme.php:712 +#: ../../view/theme/diabook/theme.php:753 +msgid "Last Tweets" +msgstr "" + +#: ../../view/theme/diabook/theme.php:715 +#: ../../view/theme/diabook/config.php:197 +msgid "Set twitter search term" +msgstr "" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288 +msgid "don't show" +msgstr "" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287 +msgid "show" +msgstr "" + +#: ../../view/theme/diabook/theme.php:745 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: ../../view/theme/diabook/config.php:192 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:54 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/diabook/config.php:193 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "" + +#: ../../view/theme/diabook/config.php:194 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "" + +#: ../../view/theme/diabook/config.php:195 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/diabook/config.php:196 +msgid "Set color scheme" +msgstr "" + +#: ../../view/theme/diabook/config.php:198 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/diabook/config.php:207 +msgid "Last tweets" +msgstr "" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "" + +#: ../../view/theme/quattro/config.php:55 +msgid "Alignment" +msgstr "" + +#: ../../view/theme/quattro/config.php:55 +msgid "Left" +msgstr "" + +#: ../../view/theme/quattro/config.php:55 +msgid "Center" +msgstr "" + +#: ../../view/theme/quattro/config.php:56 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "" + +#: ../../boot.php:522 +msgid "Delete this item?" +msgstr "" + +#: ../../boot.php:524 ../../addon/showmore/showmore.php:87 +#: ../../addon/page/page.php:63 ../../include/conversation.php:476 +#: ../../include/contact_widgets.php:188 +msgid "show more" +msgstr "" + +#: ../../boot.php:525 +msgid "show fewer" +msgstr "" + +#: ../../boot.php:698 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../boot.php:700 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:800 +msgid "Create a New Account" +msgstr "" + +#: ../../boot.php:821 ../../include/nav.php:46 +msgid "Logout" +msgstr "" + +#: ../../boot.php:822 ../../addon/communityhome/communityhome.php:28 +#: ../../addon/communityhome/communityhome.php:34 +#: ../../addon/communityhome/twillingham/communityhome.php:28 +#: ../../addon/communityhome/twillingham/communityhome.php:34 +#: ../../include/nav.php:64 +msgid "Login" +msgstr "" + +#: ../../boot.php:824 +msgid "Nickname or Email address: " +msgstr "" + +#: ../../boot.php:825 +msgid "Password: " +msgstr "" + +#: ../../boot.php:828 +msgid "Or login using OpenID: " +msgstr "" + +#: ../../boot.php:834 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:1001 +msgid "Edit profile" +msgstr "" + +#: ../../boot.php:1061 +msgid "Message" +msgstr "" + +#: ../../boot.php:1069 ../../include/nav.php:138 +msgid "Profiles" +msgstr "" + +#: ../../boot.php:1069 ../../include/nav.php:138 +msgid "Manage/edit profiles" +msgstr "" + +#: ../../boot.php:1111 ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "" + +#: ../../boot.php:1114 ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "" + +#: ../../boot.php:1116 ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "" + +#: ../../boot.php:1177 ../../boot.php:1253 +msgid "g A l F d" +msgstr "" + +#: ../../boot.php:1178 ../../boot.php:1254 +msgid "F d" +msgstr "" + +#: ../../boot.php:1223 ../../boot.php:1294 +msgid "[today]" +msgstr "" + +#: ../../boot.php:1235 +msgid "Birthday Reminders" +msgstr "" + +#: ../../boot.php:1236 +msgid "Birthdays this week:" +msgstr "" + +#: ../../boot.php:1287 +msgid "[No description]" +msgstr "" + +#: ../../boot.php:1305 +msgid "Event Reminders" +msgstr "" + +#: ../../boot.php:1306 +msgid "Events this week:" +msgstr "" + +#: ../../boot.php:1508 ../../include/nav.php:49 +msgid "Status" +msgstr "" + +#: ../../boot.php:1511 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../boot.php:1517 +msgid "Profile Details" +msgstr "" + +#: ../../boot.php:1532 +msgid "Events and Calendar" +msgstr "" + +#: ../../boot.php:1538 +msgid "Only You Can See This" +msgstr "" + +#: ../../addon/pageheader/pageheader.php:50 +msgid "\"pageheader\" Settings" +msgstr "" + +#: ../../addon/pageheader/pageheader.php:68 +msgid "pageheader Settings saved." +msgstr "" + +#: ../../addon/piwik/piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "" + +#: ../../addon/piwik/piwik.php:82 #, php-format msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many " -"other social networks." +"If you do not want that your visits are logged this way you can " +"set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." msgstr "" -#: ../../mod/invite.php:102 +#: ../../addon/piwik/piwik.php:90 +msgid "Piwik Base URL" +msgstr "" + +#: ../../addon/piwik/piwik.php:90 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "" + +#: ../../addon/piwik/piwik.php:91 +msgid "Site ID" +msgstr "" + +#: ../../addon/piwik/piwik.php:92 +msgid "Show opt-out cookie link?" +msgstr "" + +#: ../../addon/piwik/piwik.php:93 +msgid "Asynchronous tracking" +msgstr "" + +#: ../../addon/viewsrc/viewsrc.php:37 +msgid "View Source" +msgstr "" + +#: ../../addon/libertree/libertree.php:36 +msgid "Post to libertree" +msgstr "" + +#: ../../addon/libertree/libertree.php:67 +msgid "libertree Post Settings" +msgstr "" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "" + +#: ../../addon/libertree/libertree.php:74 +msgid "Libertree API token" +msgstr "" + +#: ../../addon/libertree/libertree.php:79 +msgid "Libertree site URL" +msgstr "" + +#: ../../addon/libertree/libertree.php:84 +msgid "Post to Libertree by default" +msgstr "" + +#: ../../addon/editplain/editplain.php:46 +msgid "Editplain settings updated." +msgstr "" + +#: ../../addon/editplain/editplain.php:76 +msgid "Editplain Settings" +msgstr "" + +#: ../../addon/editplain/editplain.php:78 +msgid "Disable richtext status editor" +msgstr "" + +#: ../../addon/posterous/posterous.php:37 +msgid "Post to Posterous" +msgstr "" + +#: ../../addon/posterous/posterous.php:70 +msgid "Posterous Post Settings" +msgstr "" + +#: ../../addon/posterous/posterous.php:72 +msgid "Enable Posterous Post Plugin" +msgstr "" + +#: ../../addon/posterous/posterous.php:77 +msgid "Posterous login" +msgstr "" + +#: ../../addon/posterous/posterous.php:82 +msgid "Posterous password" +msgstr "" + +#: ../../addon/posterous/posterous.php:87 +msgid "Posterous site ID" +msgstr "" + +#: ../../addon/posterous/posterous.php:92 +msgid "Posterous API token" +msgstr "" + +#: ../../addon/posterous/posterous.php:97 +msgid "Post to Posterous by default" +msgstr "" + +#: ../../addon/posterous/posterous.php:189 ../../addon/blogger/blogger.php:172 +#: ../../addon/wppost/wppost.php:199 +msgid "Post from Friendica" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:39 +msgid "Post to LiveJournal" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "LiveJournal Post Settings" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:72 +msgid "Enable LiveJournal Post Plugin" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:77 +msgid "LiveJournal username" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "LiveJournal password" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:87 +msgid "Post to LiveJournal by default" +msgstr "" + +#: ../../addon/snautofollow/snautofollow.php:32 +msgid "StatusNet AutoFollow settings updated." +msgstr "" + +#: ../../addon/snautofollow/snautofollow.php:56 +msgid "StatusNet AutoFollow Settings" +msgstr "" + +#: ../../addon/snautofollow/snautofollow.php:58 +msgid "Automatically follow any StatusNet followers/mentioners" +msgstr "" + +#: ../../addon/geonames/geonames.php:143 +msgid "Geonames settings updated." +msgstr "" + +#: ../../addon/geonames/geonames.php:179 +msgid "Geonames Settings" +msgstr "" + +#: ../../addon/geonames/geonames.php:181 +msgid "Enable Geonames Plugin" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:134 +msgid "Post to StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:176 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:204 +msgid "We could not contact the StatusNet API with the Path you entered." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:232 +msgid "StatusNet settings updated." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:257 +msgid "StatusNet Posting Settings" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:271 +msgid "Globally Available StatusNet OAuthKeys" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:272 +msgid "" +"There are preconfigured OAuth key pairs for some StatusNet servers " +"available. If you are useing one of them, please use these credentials. If " +"not feel free to connect to any other StatusNet instance (see below)." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:280 +msgid "Provide your own OAuth Credentials" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:281 +msgid "" +"No consumer key pair for StatusNet found. Register your Friendica Account as " +"an desktop client on your StatusNet account, copy the consumer key pair here " +"and enter the API base root.
Before you register your own OAuth key " +"pair ask the administrator if there is already a key pair for this Friendica " +"installation at your favorited StatusNet installation." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:283 +msgid "OAuth Consumer Key" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:286 +msgid "OAuth Consumer Secret" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:289 +msgid "Base API Path (remember the trailing /)" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:310 +msgid "" +"To connect to your StatusNet account click the button below to get a " +"security code from StatusNet which you have to copy into the input box below " +"and submit the form. Only your public posts will be posted " +"to StatusNet." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:311 +msgid "Log in with StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:313 +msgid "Copy the security code from StatusNet here" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:319 +msgid "Cancel Connection Process" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:321 +msgid "Current StatusNet API is" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:322 +msgid "Cancel StatusNet Connection" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 +msgid "Currently connected to: " +msgstr "" + +#: ../../addon/statusnet/statusnet.php:334 +msgid "" +"If enabled all your public postings can be posted to the " +"associated StatusNet account. You can choose to do so by default (here) or " +"for every posting separately in the posting options when writing the entry." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:336 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to StatusNet will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:339 +msgid "Allow posting to StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:342 +msgid "Send public postings to StatusNet by default" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "Send linked #-tags and @-names to StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 +msgid "Clear OAuth configuration" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:553 +msgid "API URL" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-)" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-(" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:51 +msgid "lol" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:54 +msgid "Quick Comment Settings" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:56 +msgid "" +"Quick comments are found near comment boxes, sometimes hidden. Click them to " +"provide simple replies." +msgstr "" + +#: ../../addon/qcomment/qcomment.php:57 +msgid "Enter quick comments, one per line" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:75 +msgid "Quick Comment settings saved." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:94 +#: ../../addon/public_server/public_server.php:126 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:95 +msgid "Your Friendica test account is about to expire." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:96 #, php-format msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." +"Hi %1$s,\n" +"\n" +"Your test account on %2$s will expire in less than five days. We hope you " +"enjoyed this test drive and use this opportunity to find a permanent " +"Friendica website for your integrated social communications. A list of " +"public sites is available at http://dir.friendica.com/siteinfo - and for " +"more information on setting up your own Friendica server please see the " +"Friendica project website at http://friendica.com." msgstr "" -#: ../../mod/invite.php:103 +#: ../../addon/widgets/widget_like.php:58 +#, php-format +msgid "%d person likes this" +msgid_plural "%d people like this" +msgstr[0] "" +msgstr[1] "" + +#: ../../addon/widgets/widget_like.php:61 +#, php-format +msgid "%d person doesn't like this" +msgid_plural "%d people don't like this" +msgstr[0] "" +msgstr[1] "" + +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendica!" +msgstr "" + +#: ../../addon/widgets/widgets.php:56 +msgid "Generate new key" +msgstr "" + +#: ../../addon/widgets/widgets.php:59 +msgid "Widgets key" +msgstr "" + +#: ../../addon/widgets/widgets.php:61 +msgid "Widgets available" +msgstr "" + +#: ../../addon/widgets/widget_friendheader.php:40 +msgid "Get added to this list!" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:182 +msgid "Lifetime of the cache (in hours)" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:187 +msgid "Cache Statistics" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:190 +msgid "Number of items" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:192 +msgid "Size of the cache" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:194 +msgid "Delete the whole cache" +msgstr "" + +#: ../../addon/showmore/showmore.php:38 +msgid "\"Show more\" Settings" +msgstr "" + +#: ../../addon/showmore/showmore.php:41 +msgid "Enable Show More" +msgstr "" + +#: ../../addon/showmore/showmore.php:44 +msgid "Cutting posts after how much characters" +msgstr "" + +#: ../../addon/showmore/showmore.php:65 +msgid "Show More Settings saved." +msgstr "" + +#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +msgid "Infinite Improbability Drive" +msgstr "" + +#: ../../addon/buglink/buglink.php:15 +msgid "Report Bug" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:29 +#: ../../addon/communityhome/twillingham/communityhome.php:29 +msgid "OpenID" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:38 +#: ../../addon/communityhome/twillingham/communityhome.php:38 +msgid "Latest users" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:81 +#: ../../addon/communityhome/twillingham/communityhome.php:81 +msgid "Most active users" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:98 +msgid "Latest photos" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:133 +msgid "Latest likes" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:43 +msgid "Upload a file" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:44 +msgid "Drop files here to upload" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:46 +msgid "Failed" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:297 +msgid "No files were uploaded." +msgstr "" + +#: ../../addon/js_upload/js_upload.php:303 +msgid "Uploaded file is empty" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:326 +msgid "File has an invalid extension, it should be one of " +msgstr "" + +#: ../../addon/js_upload/js_upload.php:337 +msgid "Upload was cancelled, or server error encountered" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:70 +msgid "Dreamwidth Post Settings" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "dreamwidth username" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:82 +msgid "dreamwidth password" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:87 +msgid "Post to dreamwidth by default" +msgstr "" + +#: ../../addon/page/page.php:48 +msgid "Forums" +msgstr "" + +#: ../../addon/numfriends/numfriends.php:46 +msgid "Numfriends settings updated." +msgstr "" + +#: ../../addon/numfriends/numfriends.php:77 +msgid "Numfriends Settings" +msgstr "" + +#: ../../addon/numfriends/numfriends.php:79 +msgid "How many contacts to display on profile sidebar" +msgstr "" + +#: ../../addon/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "" + +#: ../../addon/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "" + +#: ../../addon/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" +msgstr "" + +#: ../../addon/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "" + +#: ../../addon/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "" + +#: ../../addon/blogger/blogger.php:91 +msgid "Blogger API URL" +msgstr "" + +#: ../../addon/blogger/blogger.php:96 +msgid "Post to Blogger by default" +msgstr "" + +#: ../../addon/tictac/tictac.php:20 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:53 +msgid "3D Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:58 +msgid "New game" +msgstr "" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game with handicap" +msgstr "" + +#: ../../addon/tictac/tictac.php:60 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "" + +#: ../../addon/tictac/tictac.php:61 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "" + +#: ../../addon/tictac/tictac.php:63 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" + +#: ../../addon/tictac/tictac.php:182 +msgid "You go first..." +msgstr "" + +#: ../../addon/tictac/tictac.php:187 +msgid "I'm going first this time..." +msgstr "" + +#: ../../addon/tictac/tictac.php:193 +msgid "You won!" +msgstr "" + +#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224 +msgid "\"Cat\" game!" +msgstr "" + +#: ../../addon/tictac/tictac.php:222 +msgid "I won!" +msgstr "" + +#: ../../addon/wppost/wppost.php:42 +msgid "Post to Wordpress" +msgstr "" + +#: ../../addon/wppost/wppost.php:76 +msgid "WordPress Post Settings" +msgstr "" + +#: ../../addon/wppost/wppost.php:78 +msgid "Enable WordPress Post Plugin" +msgstr "" + +#: ../../addon/wppost/wppost.php:83 +msgid "WordPress username" +msgstr "" + +#: ../../addon/wppost/wppost.php:88 +msgid "WordPress password" +msgstr "" + +#: ../../addon/wppost/wppost.php:93 +msgid "WordPress API URL" +msgstr "" + +#: ../../addon/wppost/wppost.php:98 +msgid "Post to WordPress by default" +msgstr "" + +#: ../../addon/wppost/wppost.php:103 +msgid "Provide a backlink to the Friendica post" +msgstr "" + +#: ../../addon/wppost/wppost.php:205 +msgid "Read the original post and comment stream on Friendica" +msgstr "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:84 #, php-format msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." +"Allow to use your friendica id (%s) to connecto to external unhosted-enabled " +"storage (like ownCloud). See RemoteStorage WebFinger" msgstr "" -#: ../../mod/invite.php:106 +#: ../../addon/uhremotestorage/uhremotestorage.php:85 +msgid "Template URL (with {category})" +msgstr "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:86 +msgid "OAuth end-point" +msgstr "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:87 +msgid "Api" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:71 +msgid "generic profile image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:72 +msgid "random geometric pattern" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:73 +msgid "monster face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:74 +msgid "computer generated face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:75 +msgid "retro arcade style face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:87 +msgid "Default avatar image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:87 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:88 +msgid "Rating of images" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:88 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:102 +msgid "Gravatar settings updated." +msgstr "" + +#: ../../addon/dav/common/wdcal_configuration.php:126 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "" + +#: ../../addon/dav/common/wdcal_configuration.php:205 +msgid "German Time Format (dd.mm.YYYY)" +msgstr "" + +#: ../../addon/dav/common/calendar.fnk.php:517 +#: ../../addon/dav/common/calendar.fnk.php:533 +#: ../../addon/dav/layout.fnk.php:200 +msgid "Error" +msgstr "" + +#: ../../addon/dav/common/calendar.fnk.php:568 +#: ../../addon/dav/common/calendar.fnk.php:637 +#: ../../addon/dav/common/calendar.fnk.php:664 +#: ../../addon/dav/layout.fnk.php:231 +msgid "No access" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:119 +msgid "New event" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:123 +msgid "Today" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:132 +msgid "Day" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:139 +msgid "Week" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:146 +msgid "Month" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:151 +msgid "Reload" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:162 +msgid "Date" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:224 +msgid "Not found" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:292 ../../addon/dav/layout.fnk.php:365 +msgid "Go back to the calendar" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:300 +msgid "Starts" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:305 +msgid "Ends" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:312 +msgid "Description" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:315 +msgid "Notification" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:324 +msgid "Minutes" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:327 +msgid "Hours" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:330 +msgid "Days" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:331 +msgid "before" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:360 ../../addon/facebook/facebook.php:785 +msgid "The new values have been saved." +msgstr "" + +#: ../../addon/dav/layout.fnk.php:367 +msgid "Calendar Settings" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:373 +msgid "Date format" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:382 +msgid "Time zone" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:387 +msgid "Limitations" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:391 +msgid "Warning" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:395 +msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:402 +msgid "Synchronizing this calendar with the iPhone" +msgstr "" + +#: ../../addon/dav/layout.fnk.php:413 +msgid "Synchronizing your Friendica-Contacts with the iPhone" +msgstr "" + +#: ../../addon/dav/dav_carddav_backend_friendica_community.inc.php:37 +msgid "Friendica-Contacts" +msgstr "" + +#: ../../addon/dav/dav_carddav_backend_friendica_community.inc.php:38 +msgid "Your Friendica-Contacts" +msgstr "" + +#: ../../addon/dav/main.php:244 +msgid "Calendar" +msgstr "" + +#: ../../addon/dav/main.php:247 +msgid "Extended calendar with CalDAV-support" +msgstr "" + +#: ../../addon/dav/main.php:263 +msgid "The database tables have been installed." +msgstr "" + +#: ../../addon/dav/main.php:264 +msgid "An error occurred during the installation." +msgstr "" + +#: ../../addon/dav/main.php:280 +msgid "No system-wide settings yet." +msgstr "" + +#: ../../addon/dav/main.php:283 +msgid "Database status" +msgstr "" + +#: ../../addon/dav/main.php:286 +msgid "Installed" +msgstr "" + +#: ../../addon/dav/main.php:289 +msgid "Upgrade needed" +msgstr "" + +#: ../../addon/dav/main.php:289 +msgid "Upgrade" +msgstr "" + +#: ../../addon/dav/main.php:292 +msgid "Not installed" +msgstr "" + +#: ../../addon/dav/main.php:292 +msgid "Install" +msgstr "" + +#: ../../addon/dav/main.php:297 +msgid "Troubleshooting" +msgstr "" + +#: ../../addon/dav/main.php:298 +msgid "Manual creation of the database tables:" +msgstr "" + +#: ../../addon/dav/main.php:299 +msgid "Show SQL-statements" +msgstr "" + +#: ../../addon/dav/calendar.friendica.fnk.php:151 +msgid "Private Calendar" +msgstr "" + +#: ../../addon/dav/calendar.friendica.fnk.php:158 +msgid "Friendica Events: Mine" +msgstr "" + +#: ../../addon/dav/calendar.friendica.fnk.php:161 +msgid "Friendica Events: Contacts" +msgstr "" + +#: ../../addon/mathjax/mathjax.php:37 msgid "" -"Our apologies. This system is not currently configured to connect with other " -"public sites or invite members." +"The MathJax addon renders mathematical formulae written using the LaTeX " +"syntax surrounded by the usual $$ or an eqnarray block in the postings of " +"your wall,network tab and private mail." msgstr "" -#: ../../mod/invite.php:111 -msgid "Send invitations" +#: ../../addon/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" msgstr "" -#: ../../mod/invite.php:112 -msgid "Enter email addresses, one per line:" +#: ../../addon/mathjax/mathjax.php:74 +msgid "MathJax Base URL" msgstr "" -#: ../../mod/invite.php:114 +#: ../../addon/mathjax/mathjax.php:74 msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." +"The URL for the javascript file that should be included to use MathJax. Can " +"be either the MathJax CDN or another installation of MathJax." msgstr "" -#: ../../mod/invite.php:116 -msgid "You will need to supply this invitation code: $invite_code" +#: ../../addon/twitter/twitter.php:73 +msgid "Post to Twitter" msgstr "" -#: ../../mod/invite.php:116 +#: ../../addon/twitter/twitter.php:122 +msgid "Twitter settings updated." +msgstr "" + +#: ../../addon/twitter/twitter.php:146 +msgid "Twitter Posting Settings" +msgstr "" + +#: ../../addon/twitter/twitter.php:153 msgid "" -"Once you have registered, please connect with me via my profile page at:" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." msgstr "" -#: ../../mod/invite.php:118 +#: ../../addon/twitter/twitter.php:172 msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" +"At this Friendica instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your public posts will " +"be posted to Twitter." msgstr "" -#: ../../mod/dfrn_confirm.php:119 +#: ../../addon/twitter/twitter.php:173 +msgid "Log in with Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:175 +msgid "Copy the PIN from Twitter here" +msgstr "" + +#: ../../addon/twitter/twitter.php:190 msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." +"If enabled all your public postings can be posted to the " +"associated Twitter account. You can choose to do so by default (here) or for " +"every posting separately in the posting options when writing the entry." msgstr "" -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "" - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "" - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "" - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "" - -#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:510 -#: ../../include/conversation.php:101 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "" - -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "" - -#: ../../mod/dfrn_confirm.php:583 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: ../../mod/dfrn_confirm.php:618 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: ../../mod/dfrn_confirm.php:638 +#: ../../addon/twitter/twitter.php:192 msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." msgstr "" -#: ../../mod/dfrn_confirm.php:649 -msgid "Unable to set your contact credentials on our system." +#: ../../addon/twitter/twitter.php:195 +msgid "Allow posting to Twitter" msgstr "" -#: ../../mod/dfrn_confirm.php:716 -msgid "Unable to update your contact profile details on our system" +#: ../../addon/twitter/twitter.php:198 +msgid "Send public postings to Twitter by default" msgstr "" -#: ../../mod/dfrn_confirm.php:750 -#, php-format -msgid "Connection accepted at %s" +#: ../../addon/twitter/twitter.php:201 +msgid "Send linked #-tags and @-names to Twitter" msgstr "" -#: ../../mod/dfrn_confirm.php:799 -#, php-format -msgid "%1$s has joined %2$s" +#: ../../addon/twitter/twitter.php:383 +msgid "Consumer key" +msgstr "" + +#: ../../addon/twitter/twitter.php:384 +msgid "Consumer secret" msgstr "" #: ../../addon/facebook/facebook.php:509 @@ -4421,10 +5782,6 @@ msgstr "" msgid "Activate Real-Time Updates" msgstr "" -#: ../../addon/facebook/facebook.php:785 ../../addon/dav/layout.fnk.php:360 -msgid "The new values have been saved." -msgstr "" - #: ../../addon/facebook/facebook.php:809 msgid "Post to Facebook" msgstr "" @@ -4461,120 +5818,6 @@ msgid "" "connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." msgstr "" -#: ../../addon/snautofollow/snautofollow.php:32 -msgid "StatusNet AutoFollow settings updated." -msgstr "" - -#: ../../addon/snautofollow/snautofollow.php:56 -msgid "StatusNet AutoFollow Settings" -msgstr "" - -#: ../../addon/snautofollow/snautofollow.php:58 -msgid "Automatically follow any StatusNet followers/mentioners" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:182 -msgid "Lifetime of the cache (in hours)" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:187 -msgid "Cache Statistics" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:190 -msgid "Number of items" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:192 -msgid "Size of the cache" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:194 -msgid "Delete the whole cache" -msgstr "" - -#: ../../addon/widgets/widget_like.php:58 -#, php-format -msgid "%d person likes this" -msgid_plural "%d people like this" -msgstr[0] "" -msgstr[1] "" - -#: ../../addon/widgets/widget_like.php:61 -#, php-format -msgid "%d person doesn't like this" -msgid_plural "%d people don't like this" -msgstr[0] "" -msgstr[1] "" - -#: ../../addon/widgets/widget_friendheader.php:40 -msgid "Get added to this list!" -msgstr "" - -#: ../../addon/widgets/widgets.php:56 -msgid "Generate new key" -msgstr "" - -#: ../../addon/widgets/widgets.php:59 -msgid "Widgets key" -msgstr "" - -#: ../../addon/widgets/widgets.php:61 -msgid "Widgets available" -msgstr "" - -#: ../../addon/widgets/widget_friends.php:40 -msgid "Connect on Friendica!" -msgstr "" - -#: ../../addon/yourls/yourls.php:55 -msgid "YourLS Settings" -msgstr "" - -#: ../../addon/yourls/yourls.php:57 -msgid "URL: http://" -msgstr "" - -#: ../../addon/yourls/yourls.php:62 -msgid "Username:" -msgstr "" - -#: ../../addon/yourls/yourls.php:67 -msgid "Password:" -msgstr "" - -#: ../../addon/yourls/yourls.php:72 -msgid "Use SSL " -msgstr "" - -#: ../../addon/yourls/yourls.php:92 -msgid "yourls Settings saved." -msgstr "" - -#: ../../addon/ljpost/ljpost.php:39 -msgid "Post to LiveJournal" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:70 -msgid "LiveJournal Post Settings" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:72 -msgid "Enable LiveJournal Post Plugin" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:77 -msgid "LiveJournal username" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:82 -msgid "LiveJournal password" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:87 -msgid "Post to LiveJournal by default" -msgstr "" - #: ../../addon/nsfw/nsfw.php:47 msgid "Not Safe For Work (General Purpose Content Filter) settings" msgstr "" @@ -4610,334 +5853,22 @@ msgstr "" msgid "%s - Click to open/close" msgstr "" -#: ../../addon/page/page.php:48 -msgid "Forums" +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "Tile Server URL" msgstr "" -#: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87 -#: ../../include/contact_widgets.php:188 ../../include/conversation.php:476 -#: ../../boot.php:524 -msgid "show more" -msgstr "" - -#: ../../addon/planets/planets.php:150 -msgid "Planets Settings" -msgstr "" - -#: ../../addon/planets/planets.php:152 -msgid "Enable Planets Plugin" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:28 -#: ../../addon/communityhome/communityhome.php:34 -#: ../../addon/communityhome/twillingham/communityhome.php:28 -#: ../../addon/communityhome/twillingham/communityhome.php:34 -#: ../../include/nav.php:64 ../../boot.php:822 -msgid "Login" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:29 -#: ../../addon/communityhome/twillingham/communityhome.php:29 -msgid "OpenID" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:38 -#: ../../addon/communityhome/twillingham/communityhome.php:38 -msgid "Latest users" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:81 -#: ../../addon/communityhome/twillingham/communityhome.php:81 -msgid "Most active users" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:98 -msgid "Latest photos" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:133 -msgid "Latest likes" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1314 -#: ../../include/conversation.php:45 ../../include/conversation.php:118 -msgid "event" -msgstr "" - -#: ../../addon/dav/common/wdcal_configuration.php:126 -msgid "U.S. Time Format (mm/dd/YYYY)" -msgstr "" - -#: ../../addon/dav/common/wdcal_configuration.php:205 -msgid "German Time Format (dd.mm.YYYY)" -msgstr "" - -#: ../../addon/dav/common/calendar.fnk.php:517 -#: ../../addon/dav/common/calendar.fnk.php:533 -#: ../../addon/dav/layout.fnk.php:200 -msgid "Error" -msgstr "" - -#: ../../addon/dav/common/calendar.fnk.php:568 -#: ../../addon/dav/common/calendar.fnk.php:637 -#: ../../addon/dav/common/calendar.fnk.php:664 -#: ../../addon/dav/layout.fnk.php:231 -msgid "No access" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:119 -msgid "New event" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:123 -msgid "Today" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:132 -msgid "Day" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:139 -msgid "Week" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:146 -msgid "Month" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:151 -msgid "Reload" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:162 -msgid "Date" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:224 -msgid "Not found" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:292 ../../addon/dav/layout.fnk.php:365 -msgid "Go back to the calendar" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:300 -msgid "Starts" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:305 -msgid "Ends" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:312 -msgid "Description" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:315 -msgid "Notification" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:324 -msgid "Minutes" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:327 -msgid "Hours" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:330 -msgid "Days" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:331 -msgid "before" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:367 -msgid "Calendar Settings" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:373 -msgid "Date format" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:382 -msgid "Time zone" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:387 -msgid "Limitations" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:391 -msgid "Warning" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:395 -msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:402 -msgid "Synchronizing this calendar with the iPhone" -msgstr "" - -#: ../../addon/dav/layout.fnk.php:413 -msgid "Synchronizing your Friendica-Contacts with the iPhone" -msgstr "" - -#: ../../addon/dav/dav_carddav_backend_friendica_community.inc.php:37 -msgid "Friendica-Contacts" -msgstr "" - -#: ../../addon/dav/dav_carddav_backend_friendica_community.inc.php:38 -msgid "Your Friendica-Contacts" -msgstr "" - -#: ../../addon/dav/main.php:244 -msgid "Calendar" -msgstr "" - -#: ../../addon/dav/main.php:247 -msgid "Extended calendar with CalDAV-support" -msgstr "" - -#: ../../addon/dav/main.php:263 -msgid "The database tables have been installed." -msgstr "" - -#: ../../addon/dav/main.php:264 -msgid "An error occurred during the installation." -msgstr "" - -#: ../../addon/dav/main.php:280 -msgid "No system-wide settings yet." -msgstr "" - -#: ../../addon/dav/main.php:283 -msgid "Database status" -msgstr "" - -#: ../../addon/dav/main.php:286 -msgid "Installed" -msgstr "" - -#: ../../addon/dav/main.php:289 -msgid "Upgrade needed" -msgstr "" - -#: ../../addon/dav/main.php:289 -msgid "Upgrade" -msgstr "" - -#: ../../addon/dav/main.php:292 -msgid "Not installed" -msgstr "" - -#: ../../addon/dav/main.php:292 -msgid "Install" -msgstr "" - -#: ../../addon/dav/main.php:297 -msgid "Troubleshooting" -msgstr "" - -#: ../../addon/dav/main.php:298 -msgid "Manual creation of the database tables:" -msgstr "" - -#: ../../addon/dav/main.php:299 -msgid "Show SQL-statements" -msgstr "" - -#: ../../addon/dav/calendar.friendica.fnk.php:151 -msgid "Private Calendar" -msgstr "" - -#: ../../addon/dav/calendar.friendica.fnk.php:158 -msgid "Friendica Events: Mine" -msgstr "" - -#: ../../addon/dav/calendar.friendica.fnk.php:161 -msgid "Friendica Events: Contacts" -msgstr "" - -#: ../../addon/uhremotestorage/uhremotestorage.php:84 -#, php-format +#: ../../addon/openstreetmap/openstreetmap.php:71 msgid "" -"Allow to use your friendica id (%s) to connecto to external unhosted-enabled " -"storage (like ownCloud). See RemoteStorage WebFinger" +"A list of public tile servers" msgstr "" -#: ../../addon/uhremotestorage/uhremotestorage.php:85 -msgid "Template URL (with {category})" +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "Default zoom" msgstr "" -#: ../../addon/uhremotestorage/uhremotestorage.php:86 -msgid "OAuth end-point" -msgstr "" - -#: ../../addon/uhremotestorage/uhremotestorage.php:87 -msgid "Api" -msgstr "" - -#: ../../addon/membersince/membersince.php:18 -msgid "Member since:" -msgstr "" - -#: ../../addon/tictac/tictac.php:20 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:53 -msgid "3D Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:58 -msgid "New game" -msgstr "" - -#: ../../addon/tictac/tictac.php:59 -msgid "New game with handicap" -msgstr "" - -#: ../../addon/tictac/tictac.php:60 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "" - -#: ../../addon/tictac/tictac.php:61 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "" - -#: ../../addon/tictac/tictac.php:63 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "" - -#: ../../addon/tictac/tictac.php:182 -msgid "You go first..." -msgstr "" - -#: ../../addon/tictac/tictac.php:187 -msgid "I'm going first this time..." -msgstr "" - -#: ../../addon/tictac/tictac.php:193 -msgid "You won!" -msgstr "" - -#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224 -msgid "\"Cat\" game!" -msgstr "" - -#: ../../addon/tictac/tictac.php:222 -msgid "I won!" +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "The default zoom level. (1:world, 18:highest)" msgstr "" #: ../../addon/randplace/randplace.php:169 @@ -4948,152 +5879,37 @@ msgstr "" msgid "Enable Randplace Plugin" msgstr "" -#: ../../addon/dwpost/dwpost.php:39 -msgid "Post to Dreamwidth" +#: ../../addon/membersince/membersince.php:18 +msgid "Member since:" msgstr "" -#: ../../addon/dwpost/dwpost.php:70 -msgid "Dreamwidth Post Settings" +#: ../../addon/blockem/blockem.php:51 +msgid "\"Blockem\" Settings" msgstr "" -#: ../../addon/dwpost/dwpost.php:72 -msgid "Enable dreamwidth Post Plugin" +#: ../../addon/blockem/blockem.php:53 +msgid "Comma separated profile URLS to block" msgstr "" -#: ../../addon/dwpost/dwpost.php:77 -msgid "dreamwidth username" +#: ../../addon/blockem/blockem.php:70 +msgid "BLOCKEM Settings saved." msgstr "" -#: ../../addon/dwpost/dwpost.php:82 -msgid "dreamwidth password" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:87 -msgid "Post to dreamwidth by default" -msgstr "" - -#: ../../addon/drpost/drpost.php:35 -msgid "Post to Drupal" -msgstr "" - -#: ../../addon/drpost/drpost.php:72 -msgid "Drupal Post Settings" -msgstr "" - -#: ../../addon/drpost/drpost.php:74 -msgid "Enable Drupal Post Plugin" -msgstr "" - -#: ../../addon/drpost/drpost.php:79 -msgid "Drupal username" -msgstr "" - -#: ../../addon/drpost/drpost.php:84 -msgid "Drupal password" -msgstr "" - -#: ../../addon/drpost/drpost.php:89 -msgid "Post Type - article,page,or blog" -msgstr "" - -#: ../../addon/drpost/drpost.php:94 -msgid "Drupal site URL" -msgstr "" - -#: ../../addon/drpost/drpost.php:99 -msgid "Drupal site uses clean URLS" -msgstr "" - -#: ../../addon/drpost/drpost.php:104 -msgid "Post to Drupal by default" -msgstr "" - -#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:199 -#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189 -msgid "Post from Friendica" -msgstr "" - -#: ../../addon/startpage/startpage.php:83 -msgid "Startpage Settings" -msgstr "" - -#: ../../addon/startpage/startpage.php:85 -msgid "Home page to load after login - leave blank for profile wall" -msgstr "" - -#: ../../addon/startpage/startpage.php:88 -msgid "Examples: "network" or "notifications/system"" -msgstr "" - -#: ../../addon/geonames/geonames.php:143 -msgid "Geonames settings updated." -msgstr "" - -#: ../../addon/geonames/geonames.php:179 -msgid "Geonames Settings" -msgstr "" - -#: ../../addon/geonames/geonames.php:181 -msgid "Enable Geonames Plugin" -msgstr "" - -#: ../../addon/public_server/public_server.php:126 -#: ../../addon/testdrive/testdrive.php:94 +#: ../../addon/blockem/blockem.php:105 #, php-format -msgid "Your account on %s will expire in a few days." +msgid "Blocked %s - Click to open/close" msgstr "" -#: ../../addon/public_server/public_server.php:127 -msgid "Your Friendica account is about to expire." +#: ../../addon/blockem/blockem.php:160 +msgid "Unblock Author" msgstr "" -#: ../../addon/public_server/public_server.php:128 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"Your account on %2$s will expire in less than five days. You may keep your " -"account by logging in at least once every 30 days" +#: ../../addon/blockem/blockem.php:162 +msgid "Block Author" msgstr "" -#: ../../addon/js_upload/js_upload.php:43 -msgid "Upload a file" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:44 -msgid "Drop files here to upload" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:46 -msgid "Failed" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:297 -msgid "No files were uploaded." -msgstr "" - -#: ../../addon/js_upload/js_upload.php:303 -msgid "Uploaded file is empty" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:326 -msgid "File has an invalid extension, it should be one of " -msgstr "" - -#: ../../addon/js_upload/js_upload.php:337 -msgid "Upload was cancelled, or server error encountered" -msgstr "" - -#: ../../addon/oembed.old/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "" - -#: ../../addon/oembed.old/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "" - -#: ../../addon/oembed.old/oembed.php:71 -msgid "URL to embed:" +#: ../../addon/blockem/blockem.php:194 +msgid "blockem settings updated" msgstr "" #: ../../addon/impressum/impressum.php:36 @@ -5161,402 +5977,6 @@ msgstr "" msgid "Text for the footer. You can use BBCode here." msgstr "" -#: ../../addon/buglink/buglink.php:15 -msgid "Report Bug" -msgstr "" - -#: ../../addon/blockem/blockem.php:51 -msgid "\"Blockem\" Settings" -msgstr "" - -#: ../../addon/blockem/blockem.php:53 -msgid "Comma separated profile URLS to block" -msgstr "" - -#: ../../addon/blockem/blockem.php:70 -msgid "BLOCKEM Settings saved." -msgstr "" - -#: ../../addon/blockem/blockem.php:105 -#, php-format -msgid "Blocked %s - Click to open/close" -msgstr "" - -#: ../../addon/blockem/blockem.php:160 -msgid "Unblock Author" -msgstr "" - -#: ../../addon/blockem/blockem.php:162 -msgid "Block Author" -msgstr "" - -#: ../../addon/blockem/blockem.php:194 -msgid "blockem settings updated" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:51 -msgid ":-)" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:51 -msgid ":-(" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:51 -msgid "lol" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:54 -msgid "Quick Comment Settings" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:56 -msgid "" -"Quick comments are found near comment boxes, sometimes hidden. Click them to " -"provide simple replies." -msgstr "" - -#: ../../addon/qcomment/qcomment.php:57 -msgid "Enter quick comments, one per line" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:75 -msgid "Quick Comment settings saved." -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:71 -msgid "Tile Server URL" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:71 -msgid "" -"A list of public tile servers" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:72 -msgid "Default zoom" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:72 -msgid "The default zoom level. (1:world, 18:highest)" -msgstr "" - -#: ../../addon/libertree/libertree.php:36 -msgid "Post to libertree" -msgstr "" - -#: ../../addon/libertree/libertree.php:67 -msgid "libertree Post Settings" -msgstr "" - -#: ../../addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "" - -#: ../../addon/libertree/libertree.php:74 -msgid "Libertree API token" -msgstr "" - -#: ../../addon/libertree/libertree.php:79 -msgid "Libertree site URL" -msgstr "" - -#: ../../addon/libertree/libertree.php:84 -msgid "Post to Libertree by default" -msgstr "" - -#: ../../addon/mathjax/mathjax.php:37 -msgid "" -"The MathJax addon renders mathematical formulae written using the LaTeX " -"syntax surrounded by the usual $$ or an eqnarray block in the postings of " -"your wall,network tab and private mail." -msgstr "" - -#: ../../addon/mathjax/mathjax.php:38 -msgid "Use the MathJax renderer" -msgstr "" - -#: ../../addon/mathjax/mathjax.php:74 -msgid "MathJax Base URL" -msgstr "" - -#: ../../addon/mathjax/mathjax.php:74 -msgid "" -"The URL for the javascript file that should be included to use MathJax. Can " -"be either the MathJax CDN or another installation of MathJax." -msgstr "" - -#: ../../addon/editplain/editplain.php:46 -msgid "Editplain settings updated." -msgstr "" - -#: ../../addon/editplain/editplain.php:76 -msgid "Editplain Settings" -msgstr "" - -#: ../../addon/editplain/editplain.php:78 -msgid "Disable richtext status editor" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:71 -msgid "generic profile image" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:72 -msgid "random geometric pattern" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:73 -msgid "monster face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:74 -msgid "computer generated face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:75 -msgid "retro arcade style face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:87 -msgid "Default avatar image" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:87 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:88 -msgid "Rating of images" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:88 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:102 -msgid "Gravatar settings updated." -msgstr "" - -#: ../../addon/testdrive/testdrive.php:95 -msgid "Your Friendica test account is about to expire." -msgstr "" - -#: ../../addon/testdrive/testdrive.php:96 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"Your test account on %2$s will expire in less than five days. We hope you " -"enjoyed this test drive and use this opportunity to find a permanent " -"Friendica website for your integrated social communications. A list of " -"public sites is available at http://dir.friendica.com/siteinfo - and for " -"more information on setting up your own Friendica server please see the " -"Friendica project website at http://friendica.com." -msgstr "" - -#: ../../addon/pageheader/pageheader.php:50 -msgid "\"pageheader\" Settings" -msgstr "" - -#: ../../addon/pageheader/pageheader.php:68 -msgid "pageheader Settings saved." -msgstr "" - -#: ../../addon/ijpost/ijpost.php:39 -msgid "Post to Insanejournal" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:70 -msgid "InsaneJournal Post Settings" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:72 -msgid "Enable InsaneJournal Post Plugin" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:82 -msgid "InsaneJournal password" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:87 -msgid "Post to InsaneJournal by default" -msgstr "" - -#: ../../addon/viewsrc/viewsrc.php:37 -msgid "View Source" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:134 -msgid "Post to StatusNet" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:176 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:204 -msgid "We could not contact the StatusNet API with the Path you entered." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:232 -msgid "StatusNet settings updated." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:257 -msgid "StatusNet Posting Settings" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:271 -msgid "Globally Available StatusNet OAuthKeys" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:272 -msgid "" -"There are preconfigured OAuth key pairs for some StatusNet servers " -"available. If you are useing one of them, please use these credentials. If " -"not feel free to connect to any other StatusNet instance (see below)." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:280 -msgid "Provide your own OAuth Credentials" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:281 -msgid "" -"No consumer key pair for StatusNet found. Register your Friendica Account as " -"an desktop client on your StatusNet account, copy the consumer key pair here " -"and enter the API base root.
Before you register your own OAuth key " -"pair ask the administrator if there is already a key pair for this Friendica " -"installation at your favorited StatusNet installation." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:283 -msgid "OAuth Consumer Key" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:286 -msgid "OAuth Consumer Secret" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:289 -msgid "Base API Path (remember the trailing /)" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:310 -msgid "" -"To connect to your StatusNet account click the button below to get a " -"security code from StatusNet which you have to copy into the input box below " -"and submit the form. Only your public posts will be posted " -"to StatusNet." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:311 -msgid "Log in with StatusNet" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:313 -msgid "Copy the security code from StatusNet here" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:319 -msgid "Cancel Connection Process" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:321 -msgid "Current StatusNet API is" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:322 -msgid "Cancel StatusNet Connection" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 -msgid "Currently connected to: " -msgstr "" - -#: ../../addon/statusnet/statusnet.php:334 -msgid "" -"If enabled all your public postings can be posted to the " -"associated StatusNet account. You can choose to do so by default (here) or " -"for every posting separately in the posting options when writing the entry." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:336 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to StatusNet will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:339 -msgid "Allow posting to StatusNet" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:342 -msgid "Send public postings to StatusNet by default" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:345 -msgid "Send linked #-tags and @-names to StatusNet" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 -msgid "Clear OAuth configuration" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:553 -msgid "API URL" -msgstr "" - -#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -msgid "Infinite Improbability Drive" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:36 -msgid "Post to Tumblr" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:67 -msgid "Tumblr Post Settings" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:69 -msgid "Enable Tumblr Post Plugin" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:74 -msgid "Tumblr login" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:79 -msgid "Tumblr password" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:84 -msgid "Post to Tumblr by default" -msgstr "" - -#: ../../addon/numfriends/numfriends.php:46 -msgid "Numfriends settings updated." -msgstr "" - -#: ../../addon/numfriends/numfriends.php:77 -msgid "Numfriends Settings" -msgstr "" - -#: ../../addon/numfriends/numfriends.php:79 -msgid "How many contacts to display on profile sidebar" -msgstr "" - #: ../../addon/gnot/gnot.php:48 msgid "Gnot settings updated." msgstr "" @@ -5580,162 +6000,12 @@ msgstr "" msgid "[Friendica:Notify] Comment to conversation #%d" msgstr "" -#: ../../addon/wppost/wppost.php:42 -msgid "Post to Wordpress" +#: ../../addon/planets/planets.php:150 +msgid "Planets Settings" msgstr "" -#: ../../addon/wppost/wppost.php:76 -msgid "WordPress Post Settings" -msgstr "" - -#: ../../addon/wppost/wppost.php:78 -msgid "Enable WordPress Post Plugin" -msgstr "" - -#: ../../addon/wppost/wppost.php:83 -msgid "WordPress username" -msgstr "" - -#: ../../addon/wppost/wppost.php:88 -msgid "WordPress password" -msgstr "" - -#: ../../addon/wppost/wppost.php:93 -msgid "WordPress API URL" -msgstr "" - -#: ../../addon/wppost/wppost.php:98 -msgid "Post to WordPress by default" -msgstr "" - -#: ../../addon/wppost/wppost.php:103 -msgid "Provide a backlink to the Friendica post" -msgstr "" - -#: ../../addon/wppost/wppost.php:205 -msgid "Read the original post and comment stream on Friendica" -msgstr "" - -#: ../../addon/showmore/showmore.php:38 -msgid "\"Show more\" Settings" -msgstr "" - -#: ../../addon/showmore/showmore.php:41 -msgid "Enable Show More" -msgstr "" - -#: ../../addon/showmore/showmore.php:44 -msgid "Cutting posts after how much characters" -msgstr "" - -#: ../../addon/showmore/showmore.php:65 -msgid "Show More Settings saved." -msgstr "" - -#: ../../addon/piwik/piwik.php:79 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "" - -#: ../../addon/piwik/piwik.php:82 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can " -"set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "" - -#: ../../addon/piwik/piwik.php:90 -msgid "Piwik Base URL" -msgstr "" - -#: ../../addon/piwik/piwik.php:90 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "" - -#: ../../addon/piwik/piwik.php:91 -msgid "Site ID" -msgstr "" - -#: ../../addon/piwik/piwik.php:92 -msgid "Show opt-out cookie link?" -msgstr "" - -#: ../../addon/piwik/piwik.php:93 -msgid "Asynchronous tracking" -msgstr "" - -#: ../../addon/twitter/twitter.php:73 -msgid "Post to Twitter" -msgstr "" - -#: ../../addon/twitter/twitter.php:122 -msgid "Twitter settings updated." -msgstr "" - -#: ../../addon/twitter/twitter.php:146 -msgid "Twitter Posting Settings" -msgstr "" - -#: ../../addon/twitter/twitter.php:153 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "" - -#: ../../addon/twitter/twitter.php:172 -msgid "" -"At this Friendica instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input " -"box below and submit the form. Only your public posts will " -"be posted to Twitter." -msgstr "" - -#: ../../addon/twitter/twitter.php:173 -msgid "Log in with Twitter" -msgstr "" - -#: ../../addon/twitter/twitter.php:175 -msgid "Copy the PIN from Twitter here" -msgstr "" - -#: ../../addon/twitter/twitter.php:190 -msgid "" -"If enabled all your public postings can be posted to the " -"associated Twitter account. You can choose to do so by default (here) or for " -"every posting separately in the posting options when writing the entry." -msgstr "" - -#: ../../addon/twitter/twitter.php:192 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "" - -#: ../../addon/twitter/twitter.php:195 -msgid "Allow posting to Twitter" -msgstr "" - -#: ../../addon/twitter/twitter.php:198 -msgid "Send public postings to Twitter by default" -msgstr "" - -#: ../../addon/twitter/twitter.php:201 -msgid "Send linked #-tags and @-names to Twitter" -msgstr "" - -#: ../../addon/twitter/twitter.php:383 -msgid "Consumer key" -msgstr "" - -#: ../../addon/twitter/twitter.php:384 -msgid "Consumer secret" +#: ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" msgstr "" #: ../../addon/irc/irc.php:44 @@ -5762,280 +6032,99 @@ msgstr "" msgid "Popular Channels" msgstr "" -#: ../../addon/blogger/blogger.php:42 -msgid "Post to blogger" +#: ../../addon/public_server/public_server.php:127 +msgid "Your Friendica account is about to expire." msgstr "" -#: ../../addon/blogger/blogger.php:74 -msgid "Blogger Post Settings" +#: ../../addon/public_server/public_server.php:128 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your account on %2$s will expire in less than five days. You may keep your " +"account by logging in at least once every 30 days" msgstr "" -#: ../../addon/blogger/blogger.php:76 -msgid "Enable Blogger Post Plugin" +#: ../../addon/yourls/yourls.php:55 +msgid "YourLS Settings" msgstr "" -#: ../../addon/blogger/blogger.php:81 -msgid "Blogger username" +#: ../../addon/yourls/yourls.php:57 +msgid "URL: http://" msgstr "" -#: ../../addon/blogger/blogger.php:86 -msgid "Blogger password" +#: ../../addon/yourls/yourls.php:62 +msgid "Username:" msgstr "" -#: ../../addon/blogger/blogger.php:91 -msgid "Blogger API URL" +#: ../../addon/yourls/yourls.php:67 +msgid "Password:" msgstr "" -#: ../../addon/blogger/blogger.php:96 -msgid "Post to Blogger by default" +#: ../../addon/yourls/yourls.php:72 +msgid "Use SSL " msgstr "" -#: ../../addon/posterous/posterous.php:37 -msgid "Post to Posterous" +#: ../../addon/yourls/yourls.php:92 +msgid "yourls Settings saved." msgstr "" -#: ../../addon/posterous/posterous.php:70 -msgid "Posterous Post Settings" +#: ../../addon/tumblr/tumblr.php:36 +msgid "Post to Tumblr" msgstr "" -#: ../../addon/posterous/posterous.php:72 -msgid "Enable Posterous Post Plugin" +#: ../../addon/tumblr/tumblr.php:67 +msgid "Tumblr Post Settings" msgstr "" -#: ../../addon/posterous/posterous.php:77 -msgid "Posterous login" +#: ../../addon/tumblr/tumblr.php:69 +msgid "Enable Tumblr Post Plugin" msgstr "" -#: ../../addon/posterous/posterous.php:82 -msgid "Posterous password" +#: ../../addon/tumblr/tumblr.php:74 +msgid "Tumblr login" msgstr "" -#: ../../addon/posterous/posterous.php:87 -msgid "Posterous site ID" +#: ../../addon/tumblr/tumblr.php:79 +msgid "Tumblr password" msgstr "" -#: ../../addon/posterous/posterous.php:92 -msgid "Posterous API token" +#: ../../addon/tumblr/tumblr.php:84 +msgid "Post to Tumblr by default" msgstr "" -#: ../../addon/posterous/posterous.php:97 -msgid "Post to Posterous by default" +#: ../../addon/startpage/startpage.php:83 +msgid "Startpage Settings" msgstr "" -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/diabook/config.php:192 -#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" +#: ../../addon/startpage/startpage.php:85 +msgid "Home page to load after login - leave blank for profile wall" msgstr "" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" +#: ../../addon/startpage/startpage.php:88 +msgid "Examples: "network" or "notifications/system"" msgstr "" -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:193 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" +#: ../../include/auth.php:36 +msgid "Logged out." msgstr "" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" +#: ../../include/auth.php:115 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:56 -msgid "Color scheme" +#: ../../include/auth.php:115 +msgid "The error message was:" msgstr "" -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49 -#: ../../include/nav.php:115 -msgid "Your posts and conversations" +#: ../../include/event.php:17 ../../include/bb2diaspora.php:249 +msgid "Starts:" msgstr "" -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50 -msgid "Your profile page" -msgstr "" - -#: ../../view/theme/diabook/theme.php:129 -msgid "Your contacts" -msgstr "" - -#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51 -msgid "Your photos" -msgstr "" - -#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52 -msgid "Your events" -msgstr "" - -#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 -msgid "Personal notes" -msgstr "" - -#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 -msgid "Your personal photos" -msgstr "" - -#: ../../view/theme/diabook/theme.php:134 -#: ../../view/theme/diabook/theme.php:643 -#: ../../view/theme/diabook/theme.php:747 -#: ../../view/theme/diabook/config.php:201 -msgid "Community Pages" -msgstr "" - -#: ../../view/theme/diabook/theme.php:490 -#: ../../view/theme/diabook/theme.php:749 -#: ../../view/theme/diabook/config.php:203 -msgid "Community Profiles" -msgstr "" - -#: ../../view/theme/diabook/theme.php:511 -#: ../../view/theme/diabook/theme.php:754 -#: ../../view/theme/diabook/config.php:208 -msgid "Last users" -msgstr "" - -#: ../../view/theme/diabook/theme.php:540 -#: ../../view/theme/diabook/theme.php:756 -#: ../../view/theme/diabook/config.php:210 -msgid "Last likes" -msgstr "" - -#: ../../view/theme/diabook/theme.php:585 -#: ../../view/theme/diabook/theme.php:755 -#: ../../view/theme/diabook/config.php:209 -msgid "Last photos" -msgstr "" - -#: ../../view/theme/diabook/theme.php:622 -#: ../../view/theme/diabook/theme.php:752 -#: ../../view/theme/diabook/config.php:206 -msgid "Find Friends" -msgstr "" - -#: ../../view/theme/diabook/theme.php:623 -msgid "Local Directory" -msgstr "" - -#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "" - -#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "" - -#: ../../view/theme/diabook/theme.php:678 -#: ../../view/theme/diabook/theme.php:748 -#: ../../view/theme/diabook/config.php:202 -msgid "Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:683 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:684 -#: ../../view/theme/diabook/config.php:199 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:685 -#: ../../view/theme/diabook/config.php:200 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:698 -#: ../../view/theme/diabook/theme.php:750 -#: ../../view/theme/diabook/config.php:204 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook/theme.php:705 -#: ../../view/theme/diabook/theme.php:751 -#: ../../view/theme/diabook/config.php:205 -msgid "Connect Services" -msgstr "" - -#: ../../view/theme/diabook/theme.php:712 -#: ../../view/theme/diabook/theme.php:753 -msgid "Last Tweets" -msgstr "" - -#: ../../view/theme/diabook/theme.php:715 -#: ../../view/theme/diabook/config.php:197 -msgid "Set twitter search term" -msgstr "" - -#: ../../view/theme/diabook/theme.php:735 -#: ../../view/theme/diabook/theme.php:736 -#: ../../view/theme/diabook/theme.php:737 -#: ../../view/theme/diabook/theme.php:738 -#: ../../view/theme/diabook/theme.php:739 -#: ../../view/theme/diabook/theme.php:740 -#: ../../view/theme/diabook/theme.php:741 -#: ../../view/theme/diabook/theme.php:742 -#: ../../view/theme/diabook/theme.php:743 -#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288 -msgid "don't show" -msgstr "" - -#: ../../view/theme/diabook/theme.php:735 -#: ../../view/theme/diabook/theme.php:736 -#: ../../view/theme/diabook/theme.php:737 -#: ../../view/theme/diabook/theme.php:738 -#: ../../view/theme/diabook/theme.php:739 -#: ../../view/theme/diabook/theme.php:740 -#: ../../view/theme/diabook/theme.php:741 -#: ../../view/theme/diabook/theme.php:742 -#: ../../view/theme/diabook/theme.php:743 -#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287 -msgid "show" -msgstr "" - -#: ../../view/theme/diabook/theme.php:745 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/diabook/config.php:194 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/diabook/config.php:195 -msgid "Set resolution for middle column" -msgstr "" - -#: ../../view/theme/diabook/config.php:196 -msgid "Set color scheme" -msgstr "" - -#: ../../view/theme/diabook/config.php:198 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:207 -msgid "Last tweets" -msgstr "" - -#: ../../view/theme/quattro/config.php:55 -msgid "Alignment" -msgstr "" - -#: ../../view/theme/quattro/config.php:55 -msgid "Left" -msgstr "" - -#: ../../view/theme/quattro/config.php:55 -msgid "Center" -msgstr "" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "" - -#: ../../include/profile_advanced.php:17 ../../boot.php:1111 -msgid "Gender:" +#: ../../include/event.php:27 ../../include/bb2diaspora.php:257 +msgid "Finishes:" msgstr "" #: ../../include/profile_advanced.php:22 @@ -6046,8 +6135,8 @@ msgstr "" msgid "j F" msgstr "" -#: ../../include/profile_advanced.php:30 ../../include/datetime.php:450 -#: ../../include/items.php:1446 +#: ../../include/profile_advanced.php:30 ../../include/items.php:1446 +#: ../../include/datetime.php:450 msgid "Birthday:" msgstr "" @@ -6055,19 +6144,11 @@ msgstr "" msgid "Age:" msgstr "" -#: ../../include/profile_advanced.php:37 ../../boot.php:1114 -msgid "Status:" -msgstr "" - #: ../../include/profile_advanced.php:43 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/profile_advanced.php:48 ../../boot.php:1116 -msgid "Homepage:" -msgstr "" - #: ../../include/profile_advanced.php:52 msgid "Tags:" msgstr "" @@ -6116,76 +6197,266 @@ msgstr "" msgid "School/education:" msgstr "" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" +#: ../../include/message.php:15 ../../include/message.php:171 +msgid "[no subject]" msgstr "" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" +#: ../../include/text.php:243 +msgid "prev" msgstr "" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" +#: ../../include/text.php:245 +msgid "first" msgstr "" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" +#: ../../include/text.php:274 +msgid "last" msgstr "" -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" +#: ../../include/text.php:277 +msgid "next" msgstr "" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" +#: ../../include/text.php:568 +msgid "No contacts" msgstr "" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" +#: ../../include/text.php:577 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:835 +msgid "Monday" msgstr "" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" +#: ../../include/text.php:835 +msgid "Tuesday" msgstr "" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" +#: ../../include/text.php:835 +msgid "Wednesday" msgstr "" -#: ../../include/contact_selectors.php:59 -msgid "Daily" +#: ../../include/text.php:835 +msgid "Thursday" msgstr "" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" +#: ../../include/text.php:835 +msgid "Friday" msgstr "" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" +#: ../../include/text.php:835 +msgid "Saturday" msgstr "" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" +#: ../../include/text.php:835 +msgid "Sunday" msgstr "" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" +#: ../../include/text.php:839 +msgid "January" msgstr "" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" +#: ../../include/text.php:839 +msgid "February" msgstr "" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" +#: ../../include/text.php:839 +msgid "March" msgstr "" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" +#: ../../include/text.php:839 +msgid "April" msgstr "" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" +#: ../../include/text.php:839 +msgid "May" +msgstr "" + +#: ../../include/text.php:839 +msgid "June" +msgstr "" + +#: ../../include/text.php:839 +msgid "July" +msgstr "" + +#: ../../include/text.php:839 +msgid "August" +msgstr "" + +#: ../../include/text.php:839 +msgid "September" +msgstr "" + +#: ../../include/text.php:839 +msgid "October" +msgstr "" + +#: ../../include/text.php:839 +msgid "November" +msgstr "" + +#: ../../include/text.php:839 +msgid "December" +msgstr "" + +#: ../../include/text.php:925 +msgid "bytes" +msgstr "" + +#: ../../include/text.php:945 ../../include/text.php:960 +msgid "remove" +msgstr "" + +#: ../../include/text.php:945 ../../include/text.php:960 +msgid "[remove]" +msgstr "" + +#: ../../include/text.php:948 +msgid "Categories:" +msgstr "" + +#: ../../include/text.php:963 +msgid "Filed under:" +msgstr "" + +#: ../../include/text.php:979 ../../include/text.php:991 +msgid "Click to open/close" +msgstr "" + +#: ../../include/text.php:1096 ../../include/user.php:230 +msgid "default" +msgstr "" + +#: ../../include/text.php:1108 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:1318 +msgid "activity" +msgstr "" + +#: ../../include/text.php:1320 +msgid "comment" +msgstr "" + +#: ../../include/text.php:1321 +msgid "post" +msgstr "" + +#: ../../include/text.php:1476 +msgid "Item filed" +msgstr "" + +#: ../../include/dba.php:41 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: ../../include/items.php:2790 +msgid "A new person is sharing with you at " +msgstr "" + +#: ../../include/items.php:2790 +msgid "You have a new follower at " +msgstr "" + +#: ../../include/items.php:3444 +msgid "Archives" +msgstr "" + +#: ../../include/delivery.php:456 ../../include/notifier.php:678 +msgid "(no subject)" +msgstr "" + +#: ../../include/delivery.php:463 ../../include/notifier.php:685 +#: ../../include/enotify.php:26 +msgid "noreply" +msgstr "" + +#: ../../include/diaspora.php:593 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: ../../include/diaspora.php:2037 +msgid "Attachments:" +msgstr "" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "" + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" + +#: ../../include/follow.php:60 ../../include/follow.php:75 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: ../../include/follow.php:73 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: ../../include/follow.php:77 +msgid "An author or name was not found." +msgstr "" + +#: ../../include/follow.php:79 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: ../../include/follow.php:81 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: ../../include/follow.php:82 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: ../../include/follow.php:88 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: ../../include/follow.php:93 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: ../../include/follow.php:169 +msgid "Unable to retrieve contact information." +msgstr "" + +#: ../../include/follow.php:223 +msgid "following" +msgstr "" + +#: ../../include/security.php:21 +msgid "Welcome " +msgstr "" + +#: ../../include/security.php:22 +msgid "Please upload a profile photo." +msgstr "" + +#: ../../include/security.php:25 +msgid "Welcome back " +msgstr "" + +#: ../../include/security.php:329 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." msgstr "" #: ../../include/profile_selectors.php:6 @@ -6420,885 +6691,6 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/event.php:17 ../../include/bb2diaspora.php:249 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:27 ../../include/bb2diaspora.php:257 -msgid "Finishes:" -msgstr "" - -#: ../../include/delivery.php:456 ../../include/notifier.php:678 -msgid "(no subject)" -msgstr "" - -#: ../../include/delivery.php:463 ../../include/enotify.php:26 -#: ../../include/notifier.php:685 -msgid "noreply" -msgstr "" - -#: ../../include/text.php:243 -msgid "prev" -msgstr "" - -#: ../../include/text.php:245 -msgid "first" -msgstr "" - -#: ../../include/text.php:274 -msgid "last" -msgstr "" - -#: ../../include/text.php:277 -msgid "next" -msgstr "" - -#: ../../include/text.php:568 -msgid "No contacts" -msgstr "" - -#: ../../include/text.php:577 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:835 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:835 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:835 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:835 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:835 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:835 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:835 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:839 -msgid "January" -msgstr "" - -#: ../../include/text.php:839 -msgid "February" -msgstr "" - -#: ../../include/text.php:839 -msgid "March" -msgstr "" - -#: ../../include/text.php:839 -msgid "April" -msgstr "" - -#: ../../include/text.php:839 -msgid "May" -msgstr "" - -#: ../../include/text.php:839 -msgid "June" -msgstr "" - -#: ../../include/text.php:839 -msgid "July" -msgstr "" - -#: ../../include/text.php:839 -msgid "August" -msgstr "" - -#: ../../include/text.php:839 -msgid "September" -msgstr "" - -#: ../../include/text.php:839 -msgid "October" -msgstr "" - -#: ../../include/text.php:839 -msgid "November" -msgstr "" - -#: ../../include/text.php:839 -msgid "December" -msgstr "" - -#: ../../include/text.php:925 -msgid "bytes" -msgstr "" - -#: ../../include/text.php:945 ../../include/text.php:960 -msgid "remove" -msgstr "" - -#: ../../include/text.php:945 ../../include/text.php:960 -msgid "[remove]" -msgstr "" - -#: ../../include/text.php:948 -msgid "Categories:" -msgstr "" - -#: ../../include/text.php:963 -msgid "Filed under:" -msgstr "" - -#: ../../include/text.php:979 ../../include/text.php:991 -msgid "Click to open/close" -msgstr "" - -#: ../../include/text.php:1096 ../../include/user.php:230 -msgid "default" -msgstr "" - -#: ../../include/text.php:1108 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/text.php:1318 -msgid "activity" -msgstr "" - -#: ../../include/text.php:1320 -msgid "comment" -msgstr "" - -#: ../../include/text.php:1321 -msgid "post" -msgstr "" - -#: ../../include/text.php:1476 -msgid "Item filed" -msgstr "" - -#: ../../include/diaspora.php:593 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: ../../include/diaspora.php:2037 -msgid "Attachments:" -msgstr "" - -#: ../../include/network.php:827 -msgid "view full size" -msgstr "" - -#: ../../include/oembed.php:134 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:143 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:176 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:195 -msgid "Everybody" -msgstr "" - -#: ../../include/group.php:218 -msgid "edit" -msgstr "" - -#: ../../include/group.php:239 -msgid "Groups" -msgstr "" - -#: ../../include/group.php:240 -msgid "Edit group" -msgstr "" - -#: ../../include/group.php:241 -msgid "Create a new group" -msgstr "" - -#: ../../include/group.php:242 -msgid "Contacts not in any group" -msgstr "" - -#: ../../include/nav.php:46 ../../boot.php:821 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:46 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:49 ../../boot.php:1508 -msgid "Status" -msgstr "" - -#: ../../include/nav.php:64 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:77 -msgid "Home Page" -msgstr "" - -#: ../../include/nav.php:81 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:86 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:89 -msgid "Apps" -msgstr "" - -#: ../../include/nav.php:89 -msgid "Addon applications, utilities, games" -msgstr "" - -#: ../../include/nav.php:91 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Conversations on this site" -msgstr "" - -#: ../../include/nav.php:103 -msgid "Directory" -msgstr "" - -#: ../../include/nav.php:103 -msgid "People directory" -msgstr "" - -#: ../../include/nav.php:113 -msgid "Conversations from your friends" -msgstr "" - -#: ../../include/nav.php:121 -msgid "Friend Requests" -msgstr "" - -#: ../../include/nav.php:123 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:124 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:128 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:129 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:130 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:134 -msgid "Manage" -msgstr "" - -#: ../../include/nav.php:134 -msgid "Manage other pages" -msgstr "" - -#: ../../include/nav.php:138 ../../boot.php:1069 -msgid "Profiles" -msgstr "" - -#: ../../include/nav.php:138 ../../boot.php:1069 -msgid "Manage/edit profiles" -msgstr "" - -#: ../../include/nav.php:139 -msgid "Manage/edit friends and contacts" -msgstr "" - -#: ../../include/nav.php:146 -msgid "Site setup and configuration" -msgstr "" - -#: ../../include/nav.php:169 -msgid "Nothing new here" -msgstr "" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "" - -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:68 -msgid "Networks" -msgstr "" - -#: ../../include/contact_widgets.php:71 -msgid "All Networks" -msgstr "" - -#: ../../include/contact_widgets.php:98 -msgid "Saved Folders" -msgstr "" - -#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 -msgid "Everything" -msgstr "" - -#: ../../include/contact_widgets.php:126 -msgid "Categories" -msgstr "" - -#: ../../include/auth.php:36 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:115 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../include/auth.php:115 -msgid "The error message was:" -msgstr "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:131 ../../include/datetime.php:263 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:136 ../../include/datetime.php:264 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:141 ../../include/datetime.php:266 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:254 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:260 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:263 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:264 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:265 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:265 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:266 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:267 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:267 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:268 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:268 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:269 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:269 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:278 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/onepoll.php:406 -msgid "From: " -msgstr "" - -#: ../../include/bbcode.php:210 ../../include/bbcode.php:230 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/bbcode.php:245 ../../include/bbcode.php:314 -msgid "Image/photo" -msgstr "" - -#: ../../include/dba.php:41 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/message.php:15 ../../include/message.php:171 -msgid "[no subject]" -msgstr "" - -#: ../../include/acl_selectors.php:286 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/enotify.php:14 -msgid "Friendica Notification" -msgstr "" - -#: ../../include/enotify.php:17 -msgid "Thank You," -msgstr "" - -#: ../../include/enotify.php:19 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../include/enotify.php:38 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:42 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "" - -#: ../../include/enotify.php:44 -#, php-format -msgid "%s sent you a new private message at %s." -msgstr "" - -#: ../../include/enotify.php:45 -#, php-format -msgid "%s sent you %s." -msgstr "" - -#: ../../include/enotify.php:45 -msgid "a private message" -msgstr "" - -#: ../../include/enotify.php:46 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:76 -#, php-format -msgid "%s's" -msgstr "" - -#: ../../include/enotify.php:80 -msgid "your" -msgstr "" - -#: ../../include/enotify.php:87 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%d by %s" -msgstr "" - -#: ../../include/enotify.php:88 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "" - -#: ../../include/enotify.php:89 -#, php-format -msgid "%s commented on %s." -msgstr "" - -#: ../../include/enotify.php:91 ../../include/enotify.php:104 -#: ../../include/enotify.php:115 ../../include/enotify.php:126 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../include/enotify.php:98 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:100 -#, php-format -msgid "%s posted to your profile wall at %s" -msgstr "" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%s posted to %s" -msgstr "" - -#: ../../include/enotify.php:102 -msgid "your profile wall." -msgstr "" - -#: ../../include/enotify.php:111 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:112 -#, php-format -msgid "%s tagged you at %s" -msgstr "" - -#: ../../include/enotify.php:113 -#, php-format -msgid "%s %s." -msgstr "" - -#: ../../include/enotify.php:113 -msgid "tagged you" -msgstr "" - -#: ../../include/enotify.php:122 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:123 -#, php-format -msgid "%s tagged your post at %s" -msgstr "" - -#: ../../include/enotify.php:124 -#, php-format -msgid "%s tagged %s" -msgstr "" - -#: ../../include/enotify.php:124 -msgid "your post" -msgstr "" - -#: ../../include/enotify.php:133 -msgid "[Friendica:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:134 -#, php-format -msgid "You've received an introduction from '%s' at %s" -msgstr "" - -#: ../../include/enotify.php:135 -#, php-format -msgid "You've received %s from %s." -msgstr "" - -#: ../../include/enotify.php:135 -msgid "an introduction" -msgstr "" - -#: ../../include/enotify.php:136 ../../include/enotify.php:153 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:138 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "" - -#: ../../include/enotify.php:145 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:146 -#, php-format -msgid "You've received a friend suggestion from '%s' at %s" -msgstr "" - -#: ../../include/enotify.php:147 -#, php-format -msgid "You've received %s for %s from %s." -msgstr "" - -#: ../../include/enotify.php:148 -msgid "a friend suggestion" -msgstr "" - -#: ../../include/enotify.php:151 -msgid "Name:" -msgstr "" - -#: ../../include/enotify.php:152 -msgid "Photo:" -msgstr "" - -#: ../../include/enotify.php:155 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "" - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: ../../include/follow.php:60 ../../include/follow.php:75 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: ../../include/follow.php:73 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../include/follow.php:77 -msgid "An author or name was not found." -msgstr "" - -#: ../../include/follow.php:79 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: ../../include/follow.php:81 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: ../../include/follow.php:82 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: ../../include/follow.php:88 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: ../../include/follow.php:93 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: ../../include/follow.php:169 -msgid "Unable to retrieve contact information." -msgstr "" - -#: ../../include/follow.php:223 -msgid "following" -msgstr "" - -#: ../../include/items.php:2790 -msgid "A new person is sharing with you at " -msgstr "" - -#: ../../include/items.php:2790 -msgid "You have a new follower at " -msgstr "" - -#: ../../include/bb2diaspora.php:102 ../../include/bb2diaspora.php:112 -#: ../../include/bb2diaspora.php:113 -msgid "image/photo" -msgstr "" - -#: ../../include/bb2diaspora.php:102 -msgid "link" -msgstr "" - -#: ../../include/user.php:38 -msgid "An invitation is required." -msgstr "" - -#: ../../include/user.php:43 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/user.php:51 -msgid "Invalid OpenID url" -msgstr "" - -#: ../../include/user.php:66 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/user.php:80 -msgid "Please use a shorter name." -msgstr "" - -#: ../../include/user.php:82 -msgid "Name too short." -msgstr "" - -#: ../../include/user.php:97 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "" - -#: ../../include/user.php:102 -msgid "Your email domain is not among those allowed on this site." -msgstr "" - -#: ../../include/user.php:105 -msgid "Not a valid email address." -msgstr "" - -#: ../../include/user.php:115 -msgid "Cannot use that email." -msgstr "" - -#: ../../include/user.php:121 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "" - -#: ../../include/user.php:127 ../../include/user.php:219 -msgid "Nickname is already registered. Please choose another." -msgstr "" - -#: ../../include/user.php:137 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "" - -#: ../../include/user.php:153 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "" - -#: ../../include/user.php:205 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: ../../include/user.php:240 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: ../../include/security.php:21 -msgid "Welcome " -msgstr "" - -#: ../../include/security.php:22 -msgid "Please upload a profile photo." -msgstr "" - -#: ../../include/security.php:25 -msgid "Welcome back " -msgstr "" - -#: ../../include/security.php:329 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "" - -#: ../../include/Contact.php:111 -msgid "stopped following" -msgstr "" - -#: ../../include/Contact.php:203 ../../include/conversation.php:842 -msgid "View Status" -msgstr "" - -#: ../../include/Contact.php:204 ../../include/conversation.php:843 -msgid "View Profile" -msgstr "" - -#: ../../include/Contact.php:205 ../../include/conversation.php:844 -msgid "View Photos" -msgstr "" - -#: ../../include/Contact.php:206 ../../include/Contact.php:219 -#: ../../include/conversation.php:845 -msgid "Network Posts" -msgstr "" - -#: ../../include/Contact.php:207 ../../include/Contact.php:219 -#: ../../include/conversation.php:846 -msgid "Edit Contact" -msgstr "" - -#: ../../include/Contact.php:208 ../../include/Contact.php:219 -#: ../../include/conversation.php:847 -msgid "Send PM" -msgstr "" - #: ../../include/conversation.php:163 msgid "post/item" msgstr "" @@ -7422,6 +6814,33 @@ msgstr "" msgid "Delete Selected Items" msgstr "" +#: ../../include/conversation.php:842 ../../include/Contact.php:203 +msgid "View Status" +msgstr "" + +#: ../../include/conversation.php:843 ../../include/Contact.php:204 +msgid "View Profile" +msgstr "" + +#: ../../include/conversation.php:844 ../../include/Contact.php:205 +msgid "View Photos" +msgstr "" + +#: ../../include/conversation.php:845 ../../include/Contact.php:206 +#: ../../include/Contact.php:219 +msgid "Network Posts" +msgstr "" + +#: ../../include/conversation.php:846 ../../include/Contact.php:207 +#: ../../include/Contact.php:219 +msgid "Edit Contact" +msgstr "" + +#: ../../include/conversation.php:847 ../../include/Contact.php:208 +#: ../../include/Contact.php:219 +msgid "Send PM" +msgstr "" + #: ../../include/conversation.php:901 #, php-format msgid "%s likes this." @@ -7521,96 +6940,610 @@ msgstr "" msgid "permissions" msgstr "" -#: ../../boot.php:522 -msgid "Delete this item?" +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" msgstr "" -#: ../../boot.php:525 -msgid "show fewer" +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" msgstr "" -#: ../../boot.php:698 +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: ../../include/contact_widgets.php:23 #, php-format -msgid "Update %s failed. See error logs." +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" msgstr "" -#: ../../boot.php:700 +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:68 +msgid "Networks" +msgstr "" + +#: ../../include/contact_widgets.php:71 +msgid "All Networks" +msgstr "" + +#: ../../include/contact_widgets.php:98 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:126 +msgid "Categories" +msgstr "" + +#: ../../include/nav.php:46 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:64 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:77 +msgid "Home Page" +msgstr "" + +#: ../../include/nav.php:81 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:86 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:89 +msgid "Apps" +msgstr "" + +#: ../../include/nav.php:89 +msgid "Addon applications, utilities, games" +msgstr "" + +#: ../../include/nav.php:91 +msgid "Search site content" +msgstr "" + +#: ../../include/nav.php:101 +msgid "Conversations on this site" +msgstr "" + +#: ../../include/nav.php:103 +msgid "Directory" +msgstr "" + +#: ../../include/nav.php:103 +msgid "People directory" +msgstr "" + +#: ../../include/nav.php:113 +msgid "Conversations from your friends" +msgstr "" + +#: ../../include/nav.php:121 +msgid "Friend Requests" +msgstr "" + +#: ../../include/nav.php:123 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:124 +msgid "Mark all system notifications seen" +msgstr "" + +#: ../../include/nav.php:128 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:129 +msgid "Inbox" +msgstr "" + +#: ../../include/nav.php:130 +msgid "Outbox" +msgstr "" + +#: ../../include/nav.php:134 +msgid "Manage" +msgstr "" + +#: ../../include/nav.php:134 +msgid "Manage other pages" +msgstr "" + +#: ../../include/nav.php:139 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: ../../include/nav.php:146 +msgid "Site setup and configuration" +msgstr "" + +#: ../../include/nav.php:169 +msgid "Nothing new here" +msgstr "" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "" + +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "" + +#: ../../include/bb2diaspora.php:102 ../../include/bb2diaspora.php:112 +#: ../../include/bb2diaspora.php:113 +msgid "image/photo" +msgstr "" + +#: ../../include/bb2diaspora.php:102 +msgid "link" +msgstr "" + +#: ../../include/enotify.php:14 +msgid "Friendica Notification" +msgstr "" + +#: ../../include/enotify.php:17 +msgid "Thank You," +msgstr "" + +#: ../../include/enotify.php:19 #, php-format -msgid "Update Error at %s" +msgid "%s Administrator" msgstr "" -#: ../../boot.php:800 -msgid "Create a New Account" +#: ../../include/enotify.php:38 +#, php-format +msgid "%s " msgstr "" -#: ../../boot.php:824 -msgid "Nickname or Email address: " +#: ../../include/enotify.php:42 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" msgstr "" -#: ../../boot.php:825 -msgid "Password: " +#: ../../include/enotify.php:44 +#, php-format +msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: ../../boot.php:828 -msgid "Or login using OpenID: " +#: ../../include/enotify.php:45 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../boot.php:834 -msgid "Forgot your password?" +#: ../../include/enotify.php:45 +msgid "a private message" msgstr "" -#: ../../boot.php:1001 -msgid "Edit profile" +#: ../../include/enotify.php:46 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../boot.php:1061 -msgid "Message" +#: ../../include/enotify.php:73 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "" -#: ../../boot.php:1177 ../../boot.php:1253 -msgid "g A l F d" +#: ../../include/enotify.php:80 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "" -#: ../../boot.php:1178 ../../boot.php:1254 -msgid "F d" +#: ../../include/enotify.php:88 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "" -#: ../../boot.php:1223 ../../boot.php:1294 -msgid "[today]" +#: ../../include/enotify.php:98 +msgid "[Friendica:Notify] Comment to conversation #%1$d by %1$s" msgstr "" -#: ../../boot.php:1235 -msgid "Birthday Reminders" +#: ../../include/enotify.php:99 +#, php-format +msgid "%s commented on an item/conversation you have been following." msgstr "" -#: ../../boot.php:1236 -msgid "Birthdays this week:" +#: ../../include/enotify.php:102 ../../include/enotify.php:117 +#: ../../include/enotify.php:130 ../../include/enotify.php:143 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../boot.php:1287 -msgid "[No description]" +#: ../../include/enotify.php:109 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "" -#: ../../boot.php:1305 -msgid "Event Reminders" +#: ../../include/enotify.php:111 +#, php-format +msgid "%1$s posted to your profile wall at %1$s" msgstr "" -#: ../../boot.php:1306 -msgid "Events this week:" +#: ../../include/enotify.php:113 +#, php-format +msgid "%1$s posted to [url=%2s]your wall[/url]" msgstr "" -#: ../../boot.php:1511 -msgid "Status Messages and Posts" +#: ../../include/enotify.php:124 +#, php-format +msgid "[Friendica:Notify] %s tagged you" msgstr "" -#: ../../boot.php:1517 -msgid "Profile Details" +#: ../../include/enotify.php:125 +#, php-format +msgid "%1$s tagged you at %2$s" msgstr "" -#: ../../boot.php:1532 -msgid "Events and Calendar" +#: ../../include/enotify.php:126 +#, php-format +msgid "%1$s [url=%2s]tagged you[/url]." msgstr "" -#: ../../boot.php:1538 -msgid "Only You Can See This" +#: ../../include/enotify.php:137 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:138 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../include/enotify.php:139 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: ../../include/enotify.php:150 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:151 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:152 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: ../../include/enotify.php:155 ../../include/enotify.php:173 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../include/enotify.php:157 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "" + +#: ../../include/enotify.php:164 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:165 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:166 +#, php-format +msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: ../../include/enotify.php:171 +msgid "Name:" +msgstr "" + +#: ../../include/enotify.php:172 +msgid "Photo:" +msgstr "" + +#: ../../include/enotify.php:175 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../include/onepoll.php:406 +msgid "From: " +msgstr "" + +#: ../../include/user.php:38 +msgid "An invitation is required." +msgstr "" + +#: ../../include/user.php:43 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/user.php:51 +msgid "Invalid OpenID url" +msgstr "" + +#: ../../include/user.php:66 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/user.php:80 +msgid "Please use a shorter name." +msgstr "" + +#: ../../include/user.php:82 +msgid "Name too short." +msgstr "" + +#: ../../include/user.php:97 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "" + +#: ../../include/user.php:102 +msgid "Your email domain is not among those allowed on this site." +msgstr "" + +#: ../../include/user.php:105 +msgid "Not a valid email address." +msgstr "" + +#: ../../include/user.php:115 +msgid "Cannot use that email." +msgstr "" + +#: ../../include/user.php:121 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "" + +#: ../../include/user.php:127 ../../include/user.php:219 +msgid "Nickname is already registered. Please choose another." +msgstr "" + +#: ../../include/user.php:137 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: ../../include/user.php:153 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: ../../include/user.php:205 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: ../../include/user.php:240 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: ../../include/acl_selectors.php:286 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/bbcode.php:210 ../../include/bbcode.php:230 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/bbcode.php:245 ../../include/bbcode.php:314 +msgid "Image/photo" +msgstr "" + +#: ../../include/oembed.php:134 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:143 +msgid "Embedding disabled" +msgstr "" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: ../../include/group.php:176 +msgid "Default privacy group for new contacts" +msgstr "" + +#: ../../include/group.php:195 +msgid "Everybody" +msgstr "" + +#: ../../include/group.php:218 +msgid "edit" +msgstr "" + +#: ../../include/group.php:239 +msgid "Groups" +msgstr "" + +#: ../../include/group.php:240 +msgid "Edit group" +msgstr "" + +#: ../../include/group.php:241 +msgid "Create a new group" +msgstr "" + +#: ../../include/group.php:242 +msgid "Contacts not in any group" +msgstr "" + +#: ../../include/Contact.php:111 +msgid "stopped following" +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:131 ../../include/datetime.php:263 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:136 ../../include/datetime.php:264 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:141 ../../include/datetime.php:266 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:254 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:260 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:263 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:264 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:265 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:265 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:266 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:267 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:267 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:268 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:268 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:269 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:269 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:278 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/network.php:827 +msgid "view full size" msgstr "" From feab17bfea374fd753b18157eeb8bf5cd61954cf Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Wed, 13 Jun 2012 12:08:34 -0400 Subject: [PATCH 2/2] enotify: fix stupid typo --- include/enotify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/enotify.php b/include/enotify.php index 89ecc3703f..aba2f85163 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -80,7 +80,7 @@ function notification($params) { $dest_str = sprintf(t('%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'), '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', $itemlink, - $p[0]['author-name'] + $p[0]['author-name'], $item_post_type); // "your post"