diff --git a/LICENSE b/LICENSE
index b8c943177..f85b21913 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2010-2013 the Red Project
+Copyright (c) 2010-2014 RedMatrix
All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
diff --git a/assets/home.html b/assets/home.html
index 1a0a13481..fa0d8b3bc 100644
--- a/assets/home.html
+++ b/assets/home.html
@@ -20,56 +20,171 @@ header { z-index: 10000; }
}
+body::after {
+ content: '';
+ background-image:url(assets/uluru2.jpg);
+ background-position: 50% 50%;
+ background-repeat: no-repeat;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ position: absolute;
+ opacity: 0.5;
+ z-index: -1;
+}
+
+
+
-
Dream it. Do it.
-
-
-
-
Communications
-
Message Expiration
-
Photo Albums
-
Decentralised
-
Cloud Storage
-
Own Your Content
-
Blogging
-
Decent Encryption
-
Chatrooms
-
Unsend Private Mail
-
Webpage Creation
-
Content Management
-
Games
-
Unincorporated
-
Forums
-
Share Anything Digital
-
Pseudonyms
-
Multiple Identities
-
No Advertising
-
Event Calendar
-
Bookmarking
-
Community Tagging
-
Internet-scale Privacy
-
Single Sign-On
-
Directory Services
-
Nomadic Identity
-
Social Networking
-
Derivative Channels
-
Multiple Profiles
-
Privacy Groups
-
Autonomy
-
Affinity Filtering
-
Friend Suggestions
-
Cross-Site Auth
-
Themes
-
Plugins
-
External API
-
3rd Party Apps
-
Open Source
-
+
RedMatrix
+
+
Dream it. Do it.
+
+The RedMatrix (aka "red") is a highly advanced social networking platform which was created by a farmer in Australia - that grew disgusted by the lack of privacy and the increasing tendency of foreign corporations and governments to monitor and control the internet. This has strangled and subverted all that was once good about the web - and turned it into a "steaming pile of crap". (Aussies typically don't mince words.)
+
+
+
+Working with a team of volunteers from six continents and over a period of several years, this has evolved into something quite spectacular, far removed from its humble beginnings as a tool to stay in contact with family members and friends that are separated by vast distances. It's an open source, decentralised identity and sharing system which brings back some semblance of privacy to a world that desperately needs it - today more than ever. It's a webserver platform not much more complicated than a WordPress blog and using the same technology, but thousands of times more capable in what it can do for your social communications and sharing needs.
+
+
+
+Taking cues from life in the Aussie outback, the Red Matrix has no central authority. Each channel (or social profile) is independent and autonomous - controlling its own publishing privacy as desired. Some will want more privacy, some less. Unlike your typical social network - the matrix has no say in this decision and cannot subvert it. Server hubs are self-sufficient and the network will continue to function if any single node in the matrix goes offline. It also provides channel resilience. You can "clone" your channel (or social profile) to any hub in the network and carry on without interruption if your primary server "chucks a wobbly" for an hour - or a week. (No fail whale needed here.)
+
+
+
+Are you ready to ditch the steaming pile of crap, and breathe some fresh air for a change? Join us.
+
+To be fair, this Aussie farmer knows more about electronic communications and web software than many professional developers. He's a somewhat respected internet pioneer who once worked for American corporate giants as a web communications and protocol wizard - and has returned from semi-retirement to try and save the net from what is has now become.
+
+
+
diff --git a/assets/logo_antiprism.png b/assets/logo_antiprism.png
deleted file mode 100644
index b72e2a211..000000000
Binary files a/assets/logo_antiprism.png and /dev/null differ
diff --git a/assets/logo_simplifiedap.png b/assets/logo_simplifiedap.png
new file mode 100644
index 000000000..a49a9c12a
Binary files /dev/null and b/assets/logo_simplifiedap.png differ
diff --git a/assets/redmatrixlogo.png b/assets/redmatrixlogo.png
deleted file mode 100644
index 6929ae14f..000000000
Binary files a/assets/redmatrixlogo.png and /dev/null differ
diff --git a/assets/uluru2.jpg b/assets/uluru2.jpg
new file mode 100644
index 000000000..d58fca390
Binary files /dev/null and b/assets/uluru2.jpg differ
diff --git a/boot.php b/boot.php
index e7f583b44..a5a48b2bf 100755
--- a/boot.php
+++ b/boot.php
@@ -40,13 +40,14 @@ require_once('include/BaseObject.php');
require_once('include/features.php');
require_once('include/taxonomy.php');
require_once('include/identity.php');
+require_once('include/Contact.php');
define ( 'RED_PLATFORM', 'Red Matrix' );
define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R');
define ( 'ZOT_REVISION', 1 );
-define ( 'DB_UPDATE_VERSION', 1098 );
+define ( 'DB_UPDATE_VERSION', 1103 );
define ( 'EOL', ' ' . "\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
@@ -289,6 +290,7 @@ define ( 'ABOOK_FLAG_IGNORED' , 0x0002);
define ( 'ABOOK_FLAG_HIDDEN' , 0x0004);
define ( 'ABOOK_FLAG_ARCHIVED' , 0x0008);
define ( 'ABOOK_FLAG_PENDING' , 0x0010);
+define ( 'ABOOK_FLAG_UNCONNECTED', 0x0020);
define ( 'ABOOK_FLAG_SELF' , 0x0080);
@@ -306,9 +308,9 @@ define ( 'ATTACH_FLAG_OS', 0x0002);
-define ( 'MENU_ITEM_ZID', 0x0001);
-define ( 'MENU_ITEM_NEWWIN', 0x0002);
-
+define ( 'MENU_ITEM_ZID', 0x0001);
+define ( 'MENU_ITEM_NEWWIN', 0x0002);
+define ( 'MENU_ITEM_CHATROOM', 0x0004);
/**
* Poll/Survey types
@@ -322,11 +324,10 @@ define ( 'POLL_OVERWRITE', 0x8000); // If you vote twice remove the prior
define ( 'UPDATE_FLAGS_UPDATED', 0x0001);
+define ( 'UPDATE_FLAGS_FORCED', 0x0002);
define ( 'UPDATE_FLAGS_DELETED', 0x1000);
-
-
/**
* Maximum number of "people who like (or don't like) this" that we will list by name
*/
@@ -490,7 +491,7 @@ define ( 'ACCOUNT_PENDING', 0x0010 );
define ( 'ACCOUNT_ROLE_ALLOWCODE', 0x0001 );
define ( 'ACCOUNT_ROLE_SYSTEM', 0x0002 );
-
+define ( 'ACCOUNT_ROLE_DEVELOPER', 0x0004 );
define ( 'ACCOUNT_ROLE_ADMIN', 0x1000 );
/**
@@ -527,6 +528,8 @@ define ( 'ITEM_MENTIONSME', 0x0400);
define ( 'ITEM_NOCOMMENT', 0x0800); // commenting/followups are disabled
define ( 'ITEM_OBSCURED', 0x1000); // bit-mangled to protect from casual browsing by site admin
define ( 'ITEM_VERIFIED', 0x2000); // Signature verification was successful
+define ( 'ITEM_RETAINED', 0x4000); // We looked at this item once to decide whether or not to expire it, and decided not to.
+ // Don't make us evaluate this same item again.
/**
*
* Reverse the effect of magic_quotes_gpc if it is enabled.
@@ -1176,6 +1179,13 @@ function check_config(&$a) {
$a->set_baseurl($a->get_baseurl());
+ // Make sure each site has a system channel. This is now created on install
+ // so we just need to keep this around a couple of weeks until the hubs that
+ // already exist have one
+ $syschan_exists = get_sys_channel();
+ if (! $syschan_exists)
+ create_sys_channel();
+
if($build != DB_UPDATE_VERSION) {
$stored = intval($build);
if(! $stored) {
@@ -1677,10 +1687,11 @@ function current_theme(){
function current_theme_url($installing = false) {
global $a;
$t = current_theme();
- $uid = '';
- $uid = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
+ $opts = '';
+ $opts = (($a->profile_uid) ? '?f=&puid=' . $a->profile_uid : '');
+ $opts .= ((x($a->layout,'schema')) ? '&schema=' . $a->layout['schema'] : '');
if(file_exists('view/theme/' . $t . '/php/style.php'))
- return('view/theme/' . $t . '/php/style.pcss' . $uid);
+ return('view/theme/' . $t . '/php/style.pcss' . $opts);
return('view/theme/' . $t . '/css/style.css');
}
@@ -1693,6 +1704,15 @@ function is_site_admin() {
return false;
}
+function is_developer() {
+ $a = get_app();
+ if((intval($_SESSION['authenticated']))
+ && (is_array($a->account))
+ && ($a->account['account_roles'] & ACCOUNT_ROLE_DEVELOPER))
+ return true;
+ return false;
+}
+
function load_contact_links($uid) {
@@ -1803,8 +1823,19 @@ function construct_page(&$a) {
require_once('include/comanche.php');
- if(($p = theme_include('mod_' . $a->module . '.pdl')) != '')
- comanche_parser($a,@file_get_contents($p));
+ // in case a page has overloaded a module, see if we already have a layout defined
+ // otherwise, if a pdl file exists for this module, use it
+
+ if(! count($a->layout)) {
+ $n = 'mod_' . $a->module . '.pdl' ;
+ $u = comanche_get_channel_id();
+ if($u)
+ $s = get_pconfig($u,'system',$n);
+ if((! $s) && (($p = theme_include($n)) != ''))
+ $s = @file_get_contents($p);
+ if($s)
+ comanche_parser($a,$s);
+ }
$comanche = ((count($a->layout)) ? true : false);
@@ -1837,7 +1868,11 @@ function construct_page(&$a) {
require_once('include/js_strings.php');
- head_add_css(((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.css');
+ if(x($a->page,'template_style'))
+ head_add_css($a->page['template_style'] . '.css');
+ else
+ head_add_css(((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.css');
+
head_add_css('mod_' . $a->module . '.css');
head_add_css(current_theme_url($installing));
diff --git a/doc/Account-Basics.md b/doc/Account-Basics.md
index 5d937cb1c..c4a8f3bc4 100644
--- a/doc/Account-Basics.md
+++ b/doc/Account-Basics.md
@@ -18,7 +18,7 @@ Enter a password of your choice, and repeat it in the second box to ensure it wa
*Terms Of Service*
-Click the link to read the site's terms of service. This will open in a new tab. Once you've read them, tick the box to confirm.
+Click the link to read the site's terms of service. Once you've read them, tick the box in the register form to confirm.
*Register*
@@ -38,4 +38,4 @@ When your channel is created you will be taken straight to your settings page wh
* [Remove Account](help/Remove-Account)
-
\ No newline at end of file
+
diff --git a/doc/AdvancedSearch.md b/doc/AdvancedSearch.md
new file mode 100644
index 000000000..5a9a5a3bc
--- /dev/null
+++ b/doc/AdvancedSearch.md
@@ -0,0 +1,57 @@
+Advanced Directory Search
+=========================
+
+
+Advanced Directory Search is enabled in "Expert Mode" from your Settings => Additional features page.
+
+On the Directory page an option named "Advanced" will apear in the "Find Channels" widget (typically in the sidebar). Clicking "Advanced" will open another search box for entering advanced search requests.
+
+Advanced requests include
+
+* name=xxx
+[Channel name contains xxx]
+
+* address=xxx
+[Channel address (webbie) contains xxx]
+
+* locale=xxx
+[Locale (typically 'city') contains xxx]
+
+* region=xxx
+[Region (state/territory) contains xxx]
+
+* postcode=xxx
+[Postcode or zip code contains xxx]
+
+* country=xxx
+[Country name contains xxx]
+
+* gender=xxx
+[Gender contains xxx]
+
+* marital=xxx
+[Marital status contains xxx]
+
+* sexual=xxx
+[Sexual preference contains xxx]
+
+* keywords=xxx
+[Keywords contain xxx]
+
+There are many reasons why a match may not return what you're looking for, as many channels do not provide detailed information in their default (public) profile, and many of these fields allow free-text input in several languages - and this may be difficult to match precisely. For instance you may have better results finding somebody in the USA with 'country=u' (along with some odd channels from Deutschland and Bulgaria and Australia) because this could be represented in a profile as US, U.S.A, USA, United States, etc...
+
+Future revisions of this tool may try to smooth over some of these difficulties.
+
+Requests may be joined together with 'and', 'or', and 'and not'.
+
+Terms containing spaces must be quoted.
+
+Example:
+
+ name="charlie brown" and country=canada and not gender=female
+
+
+
+
+
+
diff --git a/doc/Comanche.md b/doc/Comanche.md
index 8874e839a..fe122db8c 100644
--- a/doc/Comanche.md
+++ b/doc/Comanche.md
@@ -6,7 +6,7 @@ Comanche is a markup language similar to bbcode with which to create elaborate a
Comanche primarily chooses what content will appear in various regions of the page. The various regions have names and these names can change depending on what layout template you choose.
-Currently there are two layout templates, unless your site provides additional layouts (TODO list all templates)
+Currently there are three layout templates, unless your site provides additional layouts.
default
@@ -19,9 +19,24 @@ Currently there are two layout templates, unless your site provides additional l
The full template defines the same as the default template with the exception that there is no "aside" region.
-To choose a layout template, use the 'layout' tag.
+ choklet
- [layout]full[/layout]
+ The choklet template provides a number of fluid layout styles which can be specified by flavour:
+
+ (default flavour) - a two column layout similar to the "default" template, but more fluid
+ three - three column layout (adds a "right_aside" region to the default template)
+ edgestwo - two column layout with fixed side margins
+ edgesthree - three column layout with fixed side margins
+ full - three column layout with fixed side margins and adds a "header" region beneath the navigation bar
+
+
+To choose a layout template, use the "template" tag.
+
+ [template]full[/template]
+
+To choose the "choklet" template with the "three" flavour:
+
+ [template=three]choklet[/template]
The default template will be used if no other template is specified. The template can use any names it desires for content regions. You will be using 'region' tags to decide what content to place in the respective regions.
@@ -42,6 +57,9 @@ To select a theme for your page, use the 'theme' tag.
This will select the theme named "apw". By default your channel's preferred theme will be used.
+ [theme=dark]redbasic[/theme]
+
+This will select the theme named "redbasic" and load the "dark" theme schema for this theme.
**Regions**
@@ -60,6 +78,11 @@ Your webpage creation tools allow you to create menus and blocks, in addition to
This places the menu called "mymenu" at this location on the page, which must be inside a region.
+ [menu=horizontal-menu]mymenu[/menu]
+
+This places the menu called "mymenu" at this location on the page, which must be inside a region. Additionally it adds the CSS class "horizontal-menu" to this menu. This *may* result in a menu that looks different than the default menu style, *if* the css for the current theme defines a "horizontal-menu" class.
+
+
[block]contributors[/block]
This places a block named "contributors" in this region.
@@ -75,9 +98,9 @@ Widgets are executable apps provided by the system which you can place on your p
-Widgets and arguments are specified with the 'widget' and 'arg' tags.
+Widgets and arguments are specified with the 'widget' and 'var' tags.
- [widget=recent_visitors][arg=count]24[/arg][/widget]
+ [widget=recent_visitors][var=count]24[/var][/widget]
This loads the "recent_visitors" widget and supplies it with the argument "count" set to "24".
@@ -92,9 +115,11 @@ The 'comment' tag is used to delimit comments. These comments will not appear on
**Complex Example**
+Please note that pasting this example into a layout page is not likely to do anything useful as the chosen names (template, theme, regions, etc.) may not correspond to any existing webpage components.
+
[comment]use an existing page template which provides a banner region plus 3 columns beneath it[/comment]
- [layout]3-column-with-header[/layout]
+ [template]3-column-with-header[/template]
[comment]Use the "darknight" theme[/comment]
@@ -111,8 +136,8 @@ The 'comment' tag is used to delimit comments. These comments will not appear on
[menu]myfavouritemenu[/menu]
[widget=recent_visitors]
- [arg=count]24[/arg]
- [arg=names_only]1[/arg]
+ [var=count]24[/var]
+ [var=names_only]1[/var]
[/widget]
[widget=tagcloud][/widget]
diff --git a/doc/Creating-Templates.md b/doc/Creating-Templates.md
new file mode 100644
index 000000000..35003cb1a
--- /dev/null
+++ b/doc/Creating-Templates.md
@@ -0,0 +1,91 @@
+Creating Page Templates
+=======================
+
+
+A page template for use with Comanche requires two files - a PHP template and a CSS file. Page templates will need to be installed by the system administrator of your site.
+
+
+First choose a name. Here we'll create a template and call it "demo".
+
+You will need to create the files "view/php/demo.php" and "view/css/demo.css" to hold the PHP template and CSS respectively.
+
+To get a better idea of this process, let's look at an existing template - the "default" template. This is used by default throughout the application.
+
+view/php/default.php
+====================
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Here's is the corresponding CSS file
+
+view/php/default.css
+====================
+
+
+ aside#region_1 {
+ display: block;
+ width: 210px;
+ position: absolute;
+ top: 65px;
+ left: 0;
+ margin-left: 10px;
+ }
+
+ aside input[type='text'] {
+ width: 174px;
+ }
+
+
+ section {
+ position: absolute;
+ top: 65px;
+ left: 250px;
+ display: block;
+ right: 15px;
+ padding-bottom: 350px;
+ }
+
+
+Some things you may notice when looking at these definitions:
+
+* We have not specified any CSS for the "nav", "right_aside", or "footer" regions. In this template "nav" and "footer" will be the full page width and we will let the size and placement of these elements be controlled by the theme. "right_aside" is not currently used.
+
+* There are elements on the page such as "page-footer" and "pause" for which there is no apparent content. This content will come from Javascript elements.
+
+* Our default template uses absolute positioning. Modern web design often uses "float" div containers so that scrollbars aren't typically needed when viewing on small-screen devices.
+
+To design a new template, it is best to start with an existing template, and modify it as desired. That is what we will do here.
+
+The way that Comanche provides content inside a specific region is by using a region tag.
+
+ [region=aside][widget=profile][/widget][/region]
+
+This example will place a "profile" widget in the "aside" region. But what it actually does is place the HTML for the widget into a code variable **$page['aside']**. Our default page template defines a region on the page (the CSS positions this as an absolute sidebar) and then inserts the contents of $page['aside'] (if it exists).
+
+So if you wanted to create a template with a region named "foo", you would provide a place for it on the page, then include the contents of $page['foo'] wherever you wanted to use it, and then using Comanche, you could specify
+
+ [region=foo][widget=profile][/widget][/region]
+
+and this would place a profile widget into the "foo" region you created.
+
+Use the CSS file to position the region on the page where desired and optionally control its size.
+
+[To be continued]
\ No newline at end of file
diff --git a/doc/DerivedTheme1.md b/doc/DerivedTheme1.md
new file mode 100644
index 000000000..d20a958f2
--- /dev/null
+++ b/doc/DerivedTheme1.md
@@ -0,0 +1,78 @@
+Creating a Derived Theme
+========================
+
+**Lesson 1**
+
+A derived theme takes most of the settings from its "parent" theme and lets you change a few things to your liking without creating an entire theme package.
+
+
+To create a derived theme, first choose a name. For our example we'll call our theme 'mytheme'. Hopefully you'll be a bit more creative. But throughout this document, wherever you see 'mytheme', replace that with the name you chose.
+
+**Directory Structure**
+
+First you need to create a theme directory structure. We'll keep it simple. We need a php directory and a css directory. Here are the Unix/Linux commands to do this. Assume that 'mywebsite' is your top level Red Matrix folder.
+
+
+ cd mywebsite
+ mkdir view/theme/mytheme
+ mkdir view/theme/mytheme/css
+ mkdir view/theme/mytheme/php
+
+
+Great. Now we need a couple of files. The first one is your theme info file, which describes the theme.
+
+It will be called view/theme/mytheme/php/theme.php (clever name huh?)
+
+Inside it, put the following information - edit as needed
+
+ theme_info['extends'] = 'redbasic';
+
+
+ }
+
+
+Remember to rename the mytheme_init function with your theme name. In this case we will be extending the theme 'redbasic'.
+
+
+Now create another file. We call this a PCSS file, but it's really a PHP file.
+
+The file is called view/theme/mytheme/php/style.php
+
+In it, put the following:
+
+ Display Settings as their default theme.
+
+
+
\ No newline at end of file
diff --git a/doc/Profiles.md b/doc/Profiles.md
index 249ea4f29..1e9e0fe5e 100644
--- a/doc/Profiles.md
+++ b/doc/Profiles.md
@@ -3,46 +3,34 @@ Profiles
* [Home](help)
-Red has unlimited profiles. You may use different profiles to show different "sides of yourself" to different audiences. This is different to having different _channels_. Different channels allow for completely sets of information. You may have a channel for yourself, a channel for your sports team, a channel for your website, or whatever else. A profile allows for finely graded "sides" of each channel. For example, your default public profile might say "Hello, I'm Fred, and I like laughing". You may show your close friends a profile that adds "and I also enjoy dwarf tossing".
+Red has unlimited profiles. You may use different profiles to show different "sides of yourself" to different audiences. This is different to having different _channels_. Different channels allow for completely different sets of information. You may have a channel for yourself, a channel for your sports team, a channel for your website, or whatever else. A profile allows for finely graded "sides" of each channel. For example, your default public profile might say "Hello, I'm Fred, and I like laughing". You may show your close friends a profile that adds "and I also enjoy dwarf tossing".
You always have a profile known as your "default" or "public" profile. This profile is always available to the general public and cannot be hidden (there may be rare exceptions on privately run or disconnected sites). You may, and probably should restrict the information you make available on your public profile.
That said, if you want other friends to be able to find you, it helps to have the following information in your public profile...
-* Your real name
+* Your real name or at least a nickname everybody knows
* A photo of **you**
* Your location on the planet, at least to a country level.
Without this basic information, you could get very lonely here. Most people (even your best friends) will not try and connect with somebody that has a fake name or doesn't contain a real photo.
-In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some "Public Keywords" to your profile. Such as "music, linux, photography" or whatever. You can add as many keywords as you like.
+In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some "Keywords" to your profile. Such as "music, linux, photography" or whatever. You can add as many keywords as you like.
-Your default or public profile is also shown to contacts on other networks, since they do not have the ability to view your private profiles. Only members of the Friendica network can see alternate/private profiles.
+To create an alternate profile, select "View Profile" from the menu of your Red Matrix site, then click on the pencil at your profile photo. You may edit an existing profile, change the profile photo, add things to a profile or create a new profile. You may also create a "clone" of an existing profile if you only wish to change a few items but don't wish to enter all the information again. To do that, click on the profile you want to clone and choose "Clone this profile" there.
-
-To create an alternate profile, select "Profiles" from the menu of your Friendica site. You may edit an existing profile, change the profile photo, or create a new profile. You may also create a "clone" of an existing profile if you only wish to change a few items but don't wish to enter all the information again.
-
-To assign a profile to specific persons, select the person from your "Connections" page and click the pencil "Edit" icon. You will find a dropdown box listing the various profiles available. If this box is not selectable, the person is not in a supported network and cannot be assigned a specific profile.
+In the list of your profiles, you can also choose the contacts who can see a specific profile. Just click on "Edit visibility" next to the profile in question (only available for the profiles that are not your default profile) and then click on user images to add them to or remove them from the group of people who can see this profile.
Once a profile has been selected, when the person views your profile, they will see the private profile you have assigned. If they are not authenticated, they will see your public profile.
-You may also discover that (assuming you have the proper permissions) you may be able to post directly on the other person's channel (often called a "wall-to-wall" post). You may also be able to comment directly on posts from while visiting the other person's profile page.
+There is a setting which allows you to publish your profile to a directory and ensure that it can be found by others. You can change this setting on the "Settings" page.
-There is a setting which allow you to publish your profile to a directory and ensure that it can be found by others. You can change this setting on the "Settings" page.
-
-If you do not wish to be visible to any of these sites, you may leave your profile unpublished.
-
-Although you may have multiple profiles, you only have one profile photo. This is intentional. In early tests we experimented with different photos for each profile and found it was very confusing for people. They might see a different picture depending on what website they visited or what conversation they were in, and often alerted them to the fact that other people might be able to see different profiles of you than they could see.
-
-(But you can use the rich-text information boxes within a profile such as "Tell us about yourself" and link other photos onto the page.)
+If you do not wish to be found be people unless you give them your channel address, you may leave your profile unpublished.
**Keywords and Directory Search**
-On the site Directory page, you may search for people with published profiles. The search is typically for your nickname or part of your full name. However this search will also match against other profile fields - such as gender, location, "about", work, and education. You may also include "Keywords" in your default profile - which may be used to search for common interests with other members. You have two sets of keywords available - public and private. Private keywords are *not* visible to anybody. You could use these keywords to locate people who share membership in secret societies, or that share a love of fishing (for example) - without making this information visible on your public profile. Public keywords are used in the friend suggestion tool and although they aren't readily visible, they may be seen by viewing the HTML of your profile page.
+On the directory page, you may search for people with published profiles. The search is typically for your nickname or part of your full name. However this search will also match against other profile fields - such as gender, location, "about", work, and education. You may also include "Keywords" in your default profile - which may be used to search for common interests with other members. Keywords are used in the channel suggestion tool and although they aren't visible in the directory, they are shown if people visit your profile page.
Directory searches are also able to use "boolean" logic so that you can search for "+lesbian +Florida" and find those who's sexual preference (or keywords) contain the world "lesbian" and that live in Florida. See the section on "Topical Tags" on the [Tags-and-Mentions](help/Tags-and-Mentions) page for more information on performing boolean searches.
-On your Contacts page is a link to "Find People with Shared Interests". This will combine both your public and private keywords, and find people who have matching and/or similar keywords. The more keywords you provide, the more relevant the search results that are returned. These are sorted by relevance. You may discover that you are the first person on the list - because you are very likely the most relevant match for your keywords in the directory.
-
-
-
\ No newline at end of file
+On your Connnections page and in the directory there is a link to "Suggestions" or "Channel Suggestions", respectively. This will find channels who have matching and/or similar keywords. The more keywords you provide, the more relevant the search results that are returned. These are sorted by relevance.
diff --git a/doc/To-Do-Code.md b/doc/To-Do-Code.md
index 5804801b4..58ecd18c6 100644
--- a/doc/To-Do-Code.md
+++ b/doc/To-Do-Code.md
@@ -7,10 +7,16 @@ We need much more than this, but here are areas where developers can help. Pleas
* Documentation - see [Red Documentation Project To-Do List](help/To-Do)
+* Infinite scroll to the directory pages
+
* Finish the anti-spam bayesian engine
* Integrate the "open site" list with the register page
+* implement oembed provider interface
+
+* implement openid server interface
+
* Write more webpage layouts
* Write more webpage widgets
diff --git a/doc/Widgets.md b/doc/Widgets.md
new file mode 100644
index 000000000..dc7093f8a
--- /dev/null
+++ b/doc/Widgets.md
@@ -0,0 +1,73 @@
+Core Widgets
+============
+
+Some/many of these widgets have restrictions which may restrict the type of page where they may appear or may require login
+
+
+* clock - displays the current time
+ * args: military (1 or 0) - use 24 hour time as opposed to AM/PM
+ *
+
+* profile - displays a profile sidebar on pages which load profiles (pages with nickname in the URL)
+
+* tagcloud - display a tagcloud of webpage items
+
+ * args: count - number of items to return (default 24)
+ *
+
+
+* collections - collection selector for the current logged in channel
+
+ * args: mode - one of "conversation", "group", "abook" depending on module
+ *
+
+
+* suggestions - friend suggestions for the current logged on channel
+
+* follow - presents a text box for following another channel
+
+* notes - private notes area for the current logged in channel if private_notes feature is enabled
+
+* savedsearch - network/matrix search with save - must be logged in and savedsearch feature enabled
+
+* filer - select filed items from network/matrix stream - must be logged in
+
+* archive - date range selector for network and channel pages
+
+* fullprofile - same as profile currently
+
+* categories - categories filter (channel page)
+
+* tagcloud_wall - tagcloud for channel page only
+
+* affinity - affinity slider for network page - must be logged in
+
+* settings_menu - sidebar menu for settings page, must be logged in
+
+* mailmenu - sidebar menu for private message page - must be logged in
+
+* design_tools - design tools menu for webpage building pages, must be logged in
+
+* findpeople - tools to find other channels
+
+* photo_albums - list photo albums of the current page owner with a selector menu
+
+* vcard - mini profile sidebar for the person of interest (page owner, whatever)
+
+* dirsafemode - directory selection tool - only on directory pages
+
+* dirsort - directory selection tool - only on directory pages
+
+* dirtags - directory tool - only on directory pages
+
+* menu_preview - preview a menu - only on menu edit pages
+
+* chatroom_list - list of chatrooms for the page owner
+
+* bookmarkedchats - list of bookmarked chatrooms collected on this site for the current observer
+
+* suggestechats - "interesting" chatrooms chosen for the current observer
+
+* item - displays a single webpage item by mid
+1 args: mid - message_id of webpage to display
+
diff --git a/doc/about.bb b/doc/about.bb
new file mode 100644
index 000000000..90992b925
--- /dev/null
+++ b/doc/about.bb
@@ -0,0 +1,24 @@
+[b]About[/b]
+
+The Red Matrix is a decentralized communication network, which aims to provide communication that is censorship-resistant, privacy-respecting, and thus free from the oppressive claws of contemporary corporate communication giants. These giants function primarily as spy networks for paying clients of all sorts and types, in addition to monopolizing and centralizing the Internet; a feature that was not part of the original and revolutionary goals that produced the World Wide Web.
+
+The Red Matrix is free and open source. It is designed to scale from a $35 Raspberry Pi, to top of the line AMD and Intel Xeon-powered multi-core enterprise servers. It can be used to support communication between a few individuals, or scale to many thousands and more.
+
+Red aims to be skill and resource agnostic. It is easy to use by everyday computer users, as well as by systems administrators and developers.
+
+How you use it depends on how you want to use it.
+
+It is written in the PHP scripting language, thus making it trivial to install on any hosting platform in use today. This includes self-hosting at home, at hosting providers such as [url=http://mediatemple.com/]Media Temple[/url] and [url=http://www.dreamhost.com/]Dreamhost[/url], or on virtual and dedicated servers, offered by the likes of [url=https://www.linode.com]Linode[/url], [url=http://greenqloud.com]GreenQloud[/url] or [url=https://aws.amazon.com]Amazon AWS[/url].
+
+In other words, the Red Matrix can run on any computing platform that comes with a web server, a MySQL-compatible database, and the PHP scripting language.
+
+Along the way, Red offers a number of unique goodies:
+
+[b][color= grey]Single-click user identification:[/color][/b] meaning you can access sites on the Red Matrix simply by clicking on links to remote sites. Authentication just happens automagically behind the scenes. Forget about remembering multiple user names with multiple passwords when accessing different sites online.
+
+[b][color= grey]Cloning:[/color][/b] of online identities. Your online presence no longer has to be tied to a single server, domain name or IP address. You can clone and import your identity to another server (or, a hub as servers are known in the Red Matrix). Now, should your primary hub go down, no worries, your contacts, posts, messages, and content will automagically continue to be available and accessible under your cloned identity.
+
+[b][color= grey]Privacy:[/color][/b] Red identities (Zot IDs) can be deleted, backed up/downloaded, and cloned. The user is in full control of their data. Should you decide to delete all your content and erase your Zot ID, all you have to do is click on a link and it's immediately deleted from the hub. No questions, no fuss.
+
+Return to the [url=[baseurl]/help/main]Main documentation page[/url]
+
diff --git a/doc/account_basics.bb b/doc/account_basics.bb
new file mode 100644
index 000000000..902ff8bd0
--- /dev/null
+++ b/doc/account_basics.bb
@@ -0,0 +1,33 @@
+[b]Account Basics[/b]
+
+[b]Registration[/b]
+
+Not all Red Matrix sites allow open registration. If registration is allowed, you will see a "Register" link immediately below the login prompts on the site home page. Following this link will take you to the site Registration page. On some sites it may redirect you to another site which allow registrations. As all Red Matrix sites are linked, it does not matter where your account resides.
+
+[b]Your Email Address[/b]
+
+Please provide a valid email address. Your email address is never published. This address will be used to (optionally) send email notifications for incoming messages or items, and used to recover lost passwords.
+
+[b]Password[/b]
+
+Enter a password of your choice, and repeat it in the second box to ensure it was typed correctly. As the Red Matrix offers a decentralised identity, your account can log you in to many other websites.
+
+[b]Terms Of Service[/b]
+
+Click the link to read the site's terms of service. Once you've read them, tick the box in the register form to confirm.
+
+[b]Register[/b]
+
+Once you have provided the necessary details, click the 'Register' button. Some sites may require administrator approval before the registration is processed, and you will be alerted if this is the case. Please watch your email (including spam folders) for your registration approval.
+
+[b]Create a Channel[/b]
+
+Next, you will be presented with the "Add a channel" screen. Normally, your first channel will be one that represents you - so using your own name (or psuedonym) as the channel name is a good idea. The channel name should be thought of as a title, or brief description of your channel. The "choose a short nickname" box is similar to a "username" field. We will use whatever you enter here to create a channel address, which other people will use to connect to you, and you will use to log in to other sites. This looks like an email address, and takes the form nickname@siteyouregisteredat.xyz
+
+When your channel is created you will be taken straight to your settings page where you can define permissions, enable features, etc. All these things are covered in the appropriate section of the helpfiles.
+
+See Also
+
+[zrl=[baseurl]/help/permissions]Permissions[/zrl]
+[zrl=[baseurl]/help/profiles]Profiles[/zrl]
+[zrl=[baseurl]/help/remove_account]Remove Account[/zrl]
\ No newline at end of file
diff --git a/doc/api_functions.bb b/doc/api_functions.bb
new file mode 100644
index 000000000..13460c1b9
--- /dev/null
+++ b/doc/api_functions.bb
@@ -0,0 +1,130 @@
+[b]Red Twitter API[/b]
+
+The "basic" Red web API is based on the Twitter API, as this provides instant compatibility with a huge number of third-party clients and applications without requiring any code changes on their part. It is also a super-set of the StatusNet version of the Twitter API, as this also has existing wide support.
+
+Red has a lot more capability that isn't exposed in the Twitter interfaces or where we are forced to "dumb-down" the API functions to work with the primitive Twitter/StatusNet communications and privacy model. So we plan to extend the Twitter API in ways that will allow Red-specific clients to make full use of Red features without being crippled.
+
+A dedicated Red API is also being developed to work with native data structures and permissions and which do not require translating to different privacy and permission models and storage formats. This will be described in other documents. The prefix for all of the native endpoints is 'api/red'.
+
+Red provides multiple channels accesible via the same login account. With Red, any API function which requires authentication will accept a parameter &channel={channel_nickname} - and will select that channel and make it current before executing the API command. By default, the default channel associated with an account is selected.
+
+Red also provides an extended permission model. In the absence of any Red specific API calls to set permissions, they will be set to the default permissions settings which are associated with the current channel.
+
+Red will probably never be able to support the Twitter 'api/friendships' functions fully because Red is not a social network and has no concept of "friendships" - it only recognises permissions to do stuff (or not do stuff as the case may be).
+
+Legend: T= Twitter, S= StatusNet, F= Friendica, R= Red, ()=Not yet working, J= JSON only (XML formats deprecated)
+
+Twitter API compatible functions:
+
+ api/account/verify_credentials T,S,F,R
+ api/statuses/update T,S,F,R
+ api/users/show T,S,F,R
+ api/statuses/home_timeline T,S,F,R
+ api/statuses/friends_timeline T,S,F,R
+ api/statuses/public_timeline T,S,F,R
+ api/statuses/show T,S,F,R
+ api/statuses/retweet T,S,F,R
+ api/statuses/destroy T,S,F,(R)
+ api/statuses/mentions T,S,F,(R)
+ api/statuses/replies T,S,F,(R)
+ api/statuses/user_timeline T,S,F,(R)
+ api/favorites T,S,F,(R)
+ api/account/rate_limit_status T,S,F,R
+ api/help/test T,S,F,R
+ api/statuses/friends T,S,F,R
+ api/statuses/followers T,S,F,R
+ api/friends/ids T,S,F,R
+ api/followers/ids T,S,F,R
+ api/direct_messages/new T,S,F,(R)
+ api/direct_messages/conversation T,S,F,(R)
+ api/direct_messages/all T,S,F,(R)
+ api/direct_messages/sent T,S,F,(R)
+ api/direct_messages T,S,F,(R)
+ api/oauth/request_token T,S,F,R
+ api/oauth/access_token T,S,F,R
+
+Twitter API functions supported by StatusNet but not currently by Friendica or Red
+
+ api/favorites T,S
+ api/favorites/create T,S
+ api/favorites/destroy T,S
+ api/statuses/retweets_of_me T,S
+ api/friendships/create T,S
+ api/friendships/destroy T,S
+ api/friendships/exists T,S
+ api/friendships/show T,S
+ api/account/update_location T,S
+ api/account/update_profile_background_image T,S
+ api/account/update_profile_image T,S
+ api/blocks/create T,S
+ api/blocks/destroy T,S
+
+Twitter API functions not currently supported by StatusNet
+
+ api/statuses/retweeted_to_me T
+ api/statuses/retweeted_by_me T
+ api/direct_messages/destroy T
+ api/account/end_session T,(R)
+ api/account/update_delivery_device T
+ api/notifications/follow T
+ api/notifications/leave T
+ api/blocks/exists T
+ api/blocks/blocking T
+ api/lists T
+
+Statusnet compatible extensions to the Twitter API supported in both Friendica and Red
+
+ api/statusnet/version S,F,R
+ api/statusnet/config S,F,R
+
+Friendica API extensions to the Twitter API supported in both Friendica and Red
+
+ api/statuses/mediap F,R
+
+Red specific API extensions to the Twitter API not supported in Friendica
+
+ api/account/logout R
+ api/export/basic R,J
+ api/friendica/config R
+ api/red/config R
+ api/friendica/version R
+
+ api/red/version R
+
+ api/red/channel/export/basic R,J
+ api/red/channel/stream R,J (currently post only)
+ api/red/albums R,J
+ api/red/photos R,J (option album=xxxx)
+
+Red proposed API extensions to the Twitter API
+
+ api/statuses/edit (R),J
+ api/statuses/permissions (R),J
+ api/statuses/permissions/update (R),J
+ api/statuses/ids (R),J # search for existing message_id before importing a foreign post
+ api/files/show (R),J
+ api/files/destroy (R),J
+ api/files/update (R),J
+ api/files/permissions (R),J
+ api/files/permissions/update (R),J
+ api/pages/show (R),J
+ api/pages/destroy (R),J
+ api/pages/update (R),J
+ api/pages/permissions (R),J
+ api/pages/permissions/update (R),J
+ api/events/show (R),J
+ api/events/update (R),J
+ api/events/permissions (R),J
+ api/events/permissions/update (R),J
+ api/events/destroy (R),J
+ api/photos/show (R),J
+ api/photos/update (R),J
+ api/photos/permissions (R),J
+ api/photos/permissions/update (R),J
+ api/albums/destroy (R),J
+ api/albums/show (R),J
+ api/albums/update (R),J
+ api/albums/permissions (R),J
+ api/albums/permissions/update (R),J
+ api/albums/destroy (R),J
+ api/friends/permissions (R),J
\ No newline at end of file
diff --git a/doc/campaign.bb b/doc/campaign.bb
new file mode 100644
index 000000000..63a072d42
--- /dev/null
+++ b/doc/campaign.bb
@@ -0,0 +1,234 @@
+[b]Initial Indiegg pitch[/b]
+
+[b][color= grey][size=20]What have we done, and what we hope to achieve[/size][/color][/b]
+
+[b][color= grey][size=18]Single-click sign on, nomadic identity, censorship-resistance, privacy, self-hosting[/size][/color][/b]
+
+We started the Red Matrix project by asking ourselves a few questions:
+
+- Imagine if it was possible to just access the content of different web sites, without the need to enter usernames and passwords for every site. Such a feature would permit Single-Click user identification: the ability to access sites simply by clicking on links to remote sites.
+Authentication just happens automagically behind the scenes. Forget about remembering multiple user names with multiple passwords when accessing different sites online.
+
+We liked this idea and went ahead with coding it immediately. Today, single-click sign is in alpha state. It needs more love, which means a solid three months of full-time development efforts.
+
+- Think of your Facebook, Twitter, WordPress, or any other website where you currently have an account. Now imagine being able to clone your account, to make an exact duplicate of it (with all of your friends, posts and settings), then export your cloned account into another server that is part of this communication network. After you're done, both of your accounts are synced from the time they were cloned. It doesn't matter where you log in (at your original location, or where you imported your clone). You see the same content, the same friends, posts, and account settings.
+At that point, it is more appropriate to call your account an identity that is nomadic (it is not tied to one home, unless you choose to do so!).
+It's 2013, our online presence no longer has to be tied to a single server, domain name or IP address. We should be able to clone and import our identities to other servers. In such a network, it should only matter who you are, not where you are.
+
+We're very intrigued by the possibilities nomadic identities open up for freedom, censorship-resistance, and identity resilience. Consider the following scenarios:
+
+ -- Should a repressive government or corporation decide to delete your account, your cloned identity lives on, because it is located on another server, across the world, which is part of the same communication network. You can't be silenced!
+
+ -- What if there is a server meltdown, and your identity goes off line. No problem, you log into your clone and all is good.
+
+ -- Your server administrator can no longer afford to keep paying to support a free service (a labor love and principle, which all of us have participating in as system administrators of Friendica sites!). She notifies you that you must clone your account before the shutoff date. Rather than loose all your friends, and start from scratch by creating a new identity somewhere, you clone and move to another server.
+We feel this is especially helpful for the free web, where administrators of FOSS community sites are often faced with difficult financial decisions. Since many of them rely on donations, sometimes servers have to be taken offline, when costs become prohibitive for the brave DIY souls running those server. Nomadic identities should relieve some of the pressures associated with such situations.
+
+At the same time, we are also thinking of solutions that would make it possible for people running Red hubs to be financially sustainable. To that end, we're starting to implement service classes in our code, which would allow administrators to structure paid levels of service, if they choose to do so.
+
+Today, nomadic identity is currently in alpha state. It also needs more love, which means a solid three months of full-time development efforts.
+
+- Imagine a social network that is censorship-resistant, and privacy-respecting by design. It is not controlled by one mega-corporation, and where users cannot be easily censored by oppressive governments. So, in addition to nomadic identities, we are talking about decentralization, open source, freely software, that can run on any hardware that supports a database and a modern web browser. And we mean "any hardware", from a self-hosted $35 Raspberry Pi, to the very latest Intel Xeon and AMD Bulldozer-powered server behemoths.
+
+We've realized that privacy requires full control over content. We should be able to delete, backup and download all of our content, as well as associated account/identity information. To this end, we have already implemented the initial version of account export and backup.
+
+Concerned about pages and pages of posts from months and years past? The solution should be simple: visit your settings page, specify that all content older than 7 days, with the exception of starred posts, should be automatically deleted. Done, the clutter is gone! (Consider also the privacy and anti-mass surveillance implications of this feature. PRISM disclosures have hinted that three-letter spying agencies around the world are recording all internet traffic and storing it for a few days at a time. We feel that automatic post expiration becomes a rather useful feature in this context, and implementing it is one of our near future priorities.)
+
+[b][color= grey][size=18]The Affinity Slider and Access Control Lists[/size][/color][/b]
+
+- What if the permissions and access control lists that help secure modern operating systems were extended into a communication network that lived on the internet? This means somebody could log into this network from their home site, and with the simple click of a few buttons dynamically sort who can have access to their online content on a very fine level: from restricting others from seeing your latest blog post, to sharing your bookmarks with the world.
+
+We've coded the initial version of such a new feature. It is called the "Affinity Slider", and in our very-alpha user interface it looks like this.
+[img]https://friendicared.net/photo/b07b0262e3146325508b81a9d1ae4a1e-0.png[/img]
+
+{INSERT SCREENSHOT OF A MATRIX PAGE}
+
+Think of it as an easy way to filter content that you see, based on the degree of "closeness" to you. Move the slider to Friends, and only content coming from contacts you've tagged as friends is displayed on your home page. Uncluttering thousands of contacts, friends, RSS feeds, and other content should be a basic feature of modern communication on the web, but not at the expense of ease of use.
+
+In addition to the Affinity Slider, we also have the ACL (Access Control List). Say you want to share something with only 5 of your contacts (a blog, two friends from college, and two forums). You click on the padlock, choose the recipients, and that's it. Only those identities will recieve their posts. Furthermore, the post will be encrypted via PKI (pulic key encryption) to help maintain privacy. In the age of PRISM, we don't know all the details on what's safe out there, but we still think that privacy by design should be automatically present, invisible to the user, and easy to use.
+Attaching permissions to any data that lives on this network, potentially solves a great many headaches, while achieving simplicity in communication.
+
+Think of it this way: the internet is nothing, but a bunch of permissions and a folder of data. You, the user controls the permissions and thus the data that is relevant to you.
+
+[b][color= grey][size=20]The Matrix is Born![/size][/color][/b]
+
+After asking and striving to answer a number of such questions, we realized that we were imagining a general purpose communication network with a number of unique, and potentially game-changing, features. We called it the Red Matrix and started thinking of it as an over-lay on top of the internet as it exists today; an operating system re-invented as a communication network, with its own permissions, access control lists, protocol, connectors to others services, and open-ended possibilities via its API. The sum of the matrix is greater than it's parts. We're not building website, but a way for websites to link together and grow into something that is unique and ever-changing, with autonomy and privacy.
+
+It's a lot of work, for anyone. So far, we've got a team of a handful of volunteers, code geeks, brave early adopters, system administrators and other good people, willing to give the project a shot. We're motivated by our commitment to a free web, where privacy is built-in, and corporations don't have a stranglehold on our daily communication.
+
+We need your help to finish it and release it to the world!
+
+[b][color= grey][size=20]What have we written so far[/size][/color][/b]
+
+As of the today, the Red Matrix is in developer preview (alpha) state. It is not ready for everyday use, but some of the initial set of core features are implemented (again, in alpha state). These include:
+
+- Zot, the protocol powering the matrix
+- Single-signon logins.
+- Nomadic identities
+- Basic content manipulation: creation, deletion, rudimentary handling of photos, and media files
+- A bare-bones outline of the API and user documentation.
+
+
+[b][color= grey][size=20]Our TO-DO List[/size][/color][/b]
+
+However, in addition to finishing and polishing the above, there are a number of features that have to implemented to make the Red Matrix ready for daily use. If we meet our fundraising goal, we hope to dive into the following road map, by order of priority:
+
+- A professionally designed user interface (UI), interface that is adaptive to any user level, from end users who want to use the Matrix as a social network, to tinkerers who will put together a customized blog using Comanche, to hackers who will develop and extend the matrix using a built-in code editor, that hooks to the API and the git.
+
+- Comanche, our new markup language, similar to BBCode, with which to create elaborate and complex web pages by assembling them from a series of components - some of which are pre-built and others which can be defined on the fly. You can read more about it on our github wiki: https://github.com/friendica/red/wiki/Comanche
+
+- A unique help system that lives in the matrix, but is not based on the principles of a search engine. We have some interesting ideas about decentralizing help documentation, without going down the road of distributed search engines. Here's a hint: We shouldn't be searching at all, we should just be filtering what's already there in new, and cunning ways.
+
+- An appropriate logo, along with professionally done documentation system, both for our API, as well as users.
+
+- WordPress-like single button software upgrades
+
+- A built-in development environment, using an integrated web-based code editor such as Ace9
+
+[b][color= grey][size=20]What will the money be used for[/size][/color][/b]
+
+If we raise our targeted amount of funds, we plan to use it as follows:
+
+1) Fund 6 months {OR WHATEVER} of full time work for our current core developers, Mike, Thomas, and Tobias {ANYONE ELSE?]
+
+2) Pay a professional web developer to design an kick ass reference theme, along with a project logo.
+
+3) {WHAT ELSE?}
+
+[b][color= grey][size=20]Deadlines[/size][/color][/b]
+
+[b]March, 2014: Red Matrix Beta with the following features[/b]
+
+- {LIST FEATURES}
+
+[b][color= grey][size=20]Who We Are[/size][/color][/b]
+
+Mike: {FILL IN BIO, reference Friendica, etc.}
+
+Thomas: {bio blurb}
+
+Tobias: {bio blurb}
+
+Arto: {documentation, etc.}
+
+{WHO ELSE? WE NEED A TEAM, AT LEAST 3-4 PEOPLE}
+
+[b][color= grey][size=20]What Do I Get as a Supporter?[/size][/color][/b]
+
+Our ability to reach 1.0 stable release depends on your generosity and support. We appreciate your help, regardless of the amount! Here's what we're thinking as far as different contribution levels go:
+
+[b]$1: {CATCHY TAGLINE}[/b]
+
+We'll list your name on our initial supporters list, a Hall of Fame of the matrix!
+
+[b]$5:[/b]
+
+[b]$10: [/b]
+
+[b]$16: [/b]
+
+You get one of your Red Matrix t-shirts, as well as our undying gratitude.
+
+[b]$32: [/b]
+
+[b]$64 [/b]
+
+[b]128 [/b]
+
+[b]$256: [/b]
+
+[b]$512: [/b]
+
+[b]$1024 [/b]
+
+[b]$2048[/b]
+
+Each contributor at this level gets their own Red Matrix virtual private server, installed, hosted and supported by us for a period of 1 year.
+
+[b][color= grey][size=20]Why are we so excited about the Red Matrix?[/size][/color][/b]
+
+{SOMETHING ABOUT THE POTENTIAL IMPACT OF RED, ITS INNOVATIONS, ETC>
+
+[b][color= grey][size=20]Other Ways to Help[/size][/color][/b]
+
+We're a handful of volunteers, and we understand that not everyone can contribute by donating money. There are many other ways you can in getting the Matrix to version 1.0!
+
+First, you can checkout our source code on github: https://github.com/friendica/red
+
+Maybe you can dive in and help us out with some development.
+
+Second, you can install the current developer preview on a server and start compiling bug reports.
+
+Third, register at one of the public alpha Red hubs, and get a feel for what Red is trying to do!
+
+Perhaps you're good at writing and documenting stuff. Grab an account at one of the public alphas and give us a hand.
+
+[b][color= grey][size=20]Frequently Asked Questions[/size][/color][/b]
+
+[b]1. Is Red a social network?[/b]
+
+The Red Matrix is not a social network. We're thinking of it as a general purpose communication network, with sharing, and public/private communications built into the matrix.
+
+[b]2. What is the difference between Red and Friendica?[/b]
+
+What's the difference between a passport, and a postcard?
+
+Friendica is really, really good at sending postcards. It can do all sorts of things with postcards. It can send them to your friends. It can send them to people you don't know. It can put them in an envelope and send them privately. It can run them through a photocopier and plaster them all over the internet. It can even take postcards in one language and convert them to many others so your friends who speak a different language can read them.
+
+What Friendica can't do, is wave a postcard at somebody and expect them to believe that holding this postcard prove you are who you say you are. Sure, if you've been sending somebody postcards, they might accept that it is you in the picture, but somebody who has never heard of you will not accept ownership of a postcard as proof of identity.
+
+The Red Matrix offers a passport.
+
+You can still use it to send postcards. At the same time, when you wave your passport at somebody, they do accept it as proof of identity. No longer do you need to register at every single site you use. You already have an account - it's just not necessarily at our site - so we'll ask to see your passport instead.
+
+Once you've proven your identity, a Red hub lets you use our services, as though you'd registered with directly, and we'd verified your credentials as would have happened in the olden days. These resources can, of course, be anything at all.
+
+[b]2. Why did you choose PHP, instead of Ruby or Python?[/b]
+
+The reference implementation is in PHP. We chose PHP, because it is available everywhere, and is easily configurable. We understand the debates between proponents and opponents of PHP, Ruby and Python. Nothing prevents implementations of Zot and the matrix in those languages. In fact, people on the matrix have already started developing a version of Red in Python [SOURCE?], and there is talk about future implementations in C (aiming for blazing native performance) and Java. It's free and open source, so we feel it's only a matter of time, once Red is initially completed.
+
+[b]4. Other than PHP, what other technology does Red use?[/b]
+
+We use MySQL as our database (this include any forks such as, MariaDB or Percona), and any modern webserver (Apache, nginx, etc.).
+
+[b]5. How is the Affinity Slider different from Mozilla's Persona?[/b]
+{COMPLETE}
+
+[b]6. Does the Red Matrix use encryption? Details please![/b]
+
+Yes, we do our best to use free and open source encryption libraries to help achieve privacy from general, mass surveillance.
+
+Communication between web browsers and Red hubs is encrypted using SSL certificates.
+
+Private communication on the matrix is protected by AES symmetric encryption, which is itself protected by RSA PKI (public key encryption). By default, we use AES-256-CBC, and our RSA keys are set to 4096-bits.
+
+For more info on our initial implementation of encrypted communication, check out our source code at Github: https://github.com/friendica/red/blob/master/include/crypto.php
+
+[b]7. What do you mean by decentralization? [/b]
+
+
+[b]8. Can I build my own website with in the Red Matrix?[/b]
+
+Yes. The short explanation: We've got this spiffy idea we're calling "Comanche", which will allow non-programmers to build complete custom websites, and any such website will be able to connect to any other website or channel in the matrix. The goal of Comanche is to hide the technical complexities of communicating in the matrix, while encouraging people to use their creativity and put together their own unique presence on the matrix.
+
+The longer explanation: Comanche is a markup language, similar to bbcode, with which to create elaborate and complex web pages by assembling them from a series of components - some of which are pre-built and others which can be defined on the fly. Comanche uses a Page Description Language file (".pdl", pronounced "puddle") to create these pages. Bbcode is not a requirement; an XML PDL file could also be used. The tag delimiters would be different. Usage is the same.
+
+Additional information is available on our Github project wiki: https://github.com/friendica/red/wiki/Comanche
+
+Comanche is another one of our priorities for the next six months.
+
+[b]9. Where can I see some technical description of Zot?[/b]
+
+Our github wiki contains a number of high-level and technical descriptions of Zot, Comanche, and Red in general: https://github.com/friendica/red/wiki
+
+[b]10. What happens if you raise more than {TARGETED NUMBER}?[/b]
+
+Raising more than our initial goal of funds, will speed up our development efforts. More developers will be able to take time off from other jobs, and concentrate efforts on finishing Red.
+
+[b]11 Can I make a contribution via Bitcoin?[/b]
+
+{YES/NO}
+
+[b]12. I have additional Questions[/]
+
+Awesome. We'd be more than happy to chat. You can find us {HERE}
\ No newline at end of file
diff --git a/doc/channels.bb b/doc/channels.bb
new file mode 100644
index 000000000..3be1211a6
--- /dev/null
+++ b/doc/channels.bb
@@ -0,0 +1,27 @@
+[b]Channels[/b]
+
+Channels are simply collections of content stored in one place. A channel can represent anything. It could represent you, a website, a forum, photo albums, anything. For most people, their first channel with be "Me".
+
+The most important features for a channel that represents "me" are:
+
+Secure and private "spam free" communications
+
+Identity and "single-signon" across the entire network
+
+Privacy controls and permissions which extend to the entire network
+
+Directory services (like a phone book)
+
+In short, a channel that represents yourself is "me, on the internet".
+
+You will be required to create your first channel as part of the sign up process. You can also create additonal channels from the "Select channel" link.
+
+You will be asked to provide a channel name, and a short nick name. For a channel that represents yourself, it is a good idea to use your real name here to ensure your friends can find you, and connect to your channel. The short nickname will be used to generate a "webbie". This is a bit like a username, and will look like an email address, taking the form nickname@domain. You should put a little thought into what you want to use here. Imagine somebody asking for your webbie and having to tell them it is "llamas-are_kewl.123". "llamasarecool" would be a much better choice.
+
+Once you have created your channel, you will be taken to the settings page, where you can configure your channel, and set your default permissions.
+
+Once you have done this, your channel is ready to use. At [observer.url] you will find your channel "stream". This is where your recent activity will appear, in reverse chronological order. If you post in the box marked "share", the entry will appear at the top of your stream. You will also find links to all the other communication areas for this channel here. The "About" tab contains your "profile", the photos page contain photo albums, and the events page contains events share by both yourself and your contacts.
+
+The "Matrix" page contains all recent posts from across the matrix, again in reverse chronologial order. The exact posts that appear here depend largely on your permissions. At their most permissive, you will receive posts from complete strangers. At the other end of the scale, you may see posts from only your friends - or if you're feeling really anti-social, only your own posts.
+
+As mentioned at the start, many other kinds of channel are possible, however, the creation procedure is the same. The difference between channels lies primarily in the permissions assigned. For example, a channel for sharing documents with colleagues at work would probably want more permissive settings for "Can write to my "public" file storage" than a personal account. For more information, see the permissions section.
\ No newline at end of file
diff --git a/doc/checking_account_quota_usage.bb b/doc/checking_account_quota_usage.bb
new file mode 100644
index 000000000..198b15bfd
--- /dev/null
+++ b/doc/checking_account_quota_usage.bb
@@ -0,0 +1,26 @@
+[b]Checking your account quota usage (service limits usage)[/b]
+
+Your hub might implement service class limits, assigning limits to the total size of file, photo, channels, top-level posts, etc., that can be created by an account holder for a specific service level.
+
+Here's how you can quickly check how much of your assigned quota you're currently using:
+
+[b][color= grey]Check file storage quota levels[/color][/b]
+Visit the following URL in your browser:
+[code]
+https://{Red-domain}/filestorage/{your_username}
+[/code]
+
+Example:
+[code]https://friendicared.net/filestorage/test2
+[/code]
+
+[b][color= grey]Check uploaded photos storage quota levels[/color][/b]
+[code]
+https://{Red-domain}photos/{your_username}/upload/
+[/code]
+
+Example:
+[code]https://friendicared.net/photos/test2/upload/
+[/code]
+
+Return to the [url=[baseurl]/help/main]Main documentation page[/url]
\ No newline at end of file
diff --git a/doc/cloud.bb b/doc/cloud.bb
new file mode 100644
index 000000000..8997b88fe
--- /dev/null
+++ b/doc/cloud.bb
@@ -0,0 +1,25 @@
+[b]Personal Cloud Storage[/b]
+
+The Red Matrix provides an ability to store privately and/or share arbitrary files with friends.
+
+You may either upload files from your computer into your storage area, or copy them directly from the operating system using the WebDAV protocol.
+
+On many public servers there may be limits on disk usage.
+
+[b]File Attachments[/b]
+
+The quickest and easiest way to share files is through file attachments. In the row of icons below the status post editor is a tool to upload attachments. Click the tool, select a file and submit. After the file is uploaded, you will see an attachment code placed inside the text region. Do not edit this line or it may break the ability for your friends to see the attachment. You can use the post permissions dialogue box or privacy hashtags to restrict the visibility of the file - which will be set to match the permissions of the post your are sending.
+
+To delete attachments or change the permissions on the stored files, visit [observer.baseurl]/filestorage/{{username}}" replacing {{username}} with the nickname you provided during channel creation.
+
+[b]Web Access[/b]
+
+Your files are visible on the web at the location "cloud/{{username}}" to anybody who is allowed to view them. If the viewer has sufficient privileges, they may also have the ability to create new files and folders/directories.
+
+[b]WebDAV access[/b]
+
+See: [zrl=[baseurl]/help/cloud_desktop_clients]Cloud Desktop Clients[/zrl]
+
+[b]Permissions[/b]
+
+When using WebDAV, the file is created with your channel's default file permissions and this cannot be changed from within the operating system. It also may not be as restrictive as you would like. What we've found is that the preferred method of making files private is to first create folders or directories; then visit "filestorage/{{username}}"; select the directory and change the permissions. Do this before you put anything into the directory. The directory permissions take precedence so you can then put files or other folders into that container and they will be protected from unwanted viewers by the directory permissions. It is common for folks to create a "personal" or "private" folder which is restricted to themselves. You can use this as a personal cloud to store anything from anywhere on the web or any computer and it is protected from others. You might also create folders for "family" and "friends" with permission granted to appropriate collections of channels.
\ No newline at end of file
diff --git a/doc/cloud_desktop_clients.bb b/doc/cloud_desktop_clients.bb
new file mode 100644
index 000000000..b715678d9
--- /dev/null
+++ b/doc/cloud_desktop_clients.bb
@@ -0,0 +1,16 @@
+[b]Cloud Desktop Clients[/b]
+
+[b]Windows Clients[/b]
+
+[li][zrl=[baseurl]/help/dav_windows]Windows Internal Client[/zrl][/li]
+
+
+[b]Linux Clients[/b]
+
+[li][zrl=[baseurl]/help/dav_mount]Command Line as a Filesystem[/zrl][/li]
+[li][zrl=[baseurl]/help/dav_dolphin]Dolphin[/zrl][/li]
+[li][zrl=[baseurl]/help/dav_konqueror]Konqueror[/zrl][/li]
+[li][zrl=[baseurl]/help/dav_nautilus]Nautilus[/zrl][/li]
+[li][zrl=[baseurl]/help/dav_nemo]Nemo[/zrl][/li]
+
+Return to the [zrl=[baseurl]/help/main]Main documentation page[/zrl]
\ No newline at end of file
diff --git a/doc/comanche.bb b/doc/comanche.bb
new file mode 100644
index 000000000..e79f9a4c7
--- /dev/null
+++ b/doc/comanche.bb
@@ -0,0 +1,181 @@
+[b]Comanche Page Description Language[/b]
+
+Comanche is a markup language similar to bbcode with which to create elaborate and complex web pages by assembling them from a series of components - some of which are pre-built and others which can be defined on the fly. Comanche uses a Page Decription Language to create these pages.
+
+Comanche primarily chooses what content will appear in various regions of the page. The various regions have names and these names can change depending on what layout template you choose.
+
+Currently there are three layout templates, unless your site provides additional layouts (TODO list all templates)
+
+[code]
+ default
+
+ The default template defines a "nav" region across the top, "aside" as a fixed width sidebar,
+ "content" for the main content region, and "footer" for a page footer.
+
+
+ full
+
+ The full template defines the same as the default template with the exception that there is no "aside" region.
+
+
+ choklet
+
+ The choklet template provides a number of fluid layout styles which can be specified by flavour:
+
+ (default flavour) - a two column layout similar to the "default" template, but more fluid
+ three - three column layout (adds a "right_aside" region to the default template)
+ edgestwo - two column layout with fixed side margins
+ edgesthree - three column layout with fixed side margins
+ full - three column layout with fixed side margins and adds a "header" region beneath the navigation bar
+
+[/code]
+
+To choose a layout template, use the 'template' tag.
+
+[code]
+ [template]full[/template]
+[/code]
+
+
+To choose the "choklet" template with the "three" flavour:
+
+[code]
+ [template=three]choklet[/template]
+[/code]
+
+
+
+
+
+The default template will be used if no other template is specified. The template can use any names it desires for content regions. You will be using 'region' tags to decide what content to place in the respective regions.
+
+
+Two "macros" have been defined for your use.
+[code]
+ $nav - replaced with the site navigation bar content.
+ $content - replaced with the main page content.
+[/code]
+
+By default, $nav is placed in the "nav" page region and $content is placed in the "content" region. You only need to use these macros if you wish to re-arrange where these items appear, either to change the order or to move them to other regions.
+
+
+To select a theme for your page, use the 'theme' tag.
+[code]
+ [theme]apw[/theme]
+[/code]
+This will select the theme named "apw". By default your channel's preferred theme will be used.
+
+[code]
+ [theme=passion]apw[/theme]
+[/code]
+This will select the theme named "apw" and select the "passion" schema (theme variant).
+
+
+[b]Regions[/b]
+
+Each region has a name, as noted above. You will specify the region of interest using a 'region' tag, which includes the name. Any content you wish placed in this region should be placed between the opening region tag and the closing tag.
+
+[code]
+ [region=aside]....content goes here....[/region]
+ [region=nav]....content goes here....[/region]
+[/code]
+
+
+[b]Menus and Blocks[/b]
+
+Your webpage creation tools allow you to create menus and blocks, in addition to page content. These provide a chunk of existing content to be placed in whatever regions and whatever order you specify. Each of these has a name which you define when the menu or block is created.
+[code]
+ [menu]mymenu[/menu]
+[/code]
+This places the menu called "mymenu" at this location on the page, which must be inside a region.
+
+[code]
+ [menu=horizontal]mymenu[/menu]
+[/code]
+This places the menu called "mymenu" at this location on the page, which must be inside a region. Additionally it applies the "horizontal" style to the menu. "horizontal" is defined in the redbasic theme. It may or may not be available in other themes.
+
+
+[code]
+ [block]contributors[/block]
+[/code]
+This places a block named "contributors" in this region.
+
+
+[b]Widgets[/b]
+
+Widgets are executable apps provided by the system which you can place on your page. Some widgets take arguments which allows you to tailor the widget to your purpose. (TODO: list available widgets and arguments). The base system provides
+[code]
+ profile - widget which duplicates the profile sidebar of your channel page. This widget takes no arguments
+ tagcloud - provides a tag cloud of categories
+ count - maximum number of category tags to list
+[/code]
+
+
+Widgets and arguments are specified with the 'widget' and 'var' tags.
+[code]
+ [widget=recent_visitors][var=count]24[/var][/widget]
+[/code]
+
+This loads the "recent_visitors" widget and supplies it with the argument "count" set to "24".
+
+
+[b]Comments[/b]
+
+The 'comment' tag is used to delimit comments. These comments will not appear on the rendered page.
+
+[code]
+ [comment]This is a comment[/comment]
+[/code]
+
+
+[b]Complex Example[/b]
+
+[code]
+ [comment]use an existing page template which provides a banner region plus 3 columns beneath it[/comment]
+
+ [template]3-column-with-header[/template]
+
+ [comment]Use the "darknight" theme[/comment]
+
+ [theme]darkknight[/theme]
+
+ [comment]Use the existing site navigation menu[/comment]
+
+ [region=nav]$nav[/region]
+
+ [region=side]
+
+ [comment]Use my chosen menu and a couple of widgets[/comment]
+
+ [menu]myfavouritemenu[/menu]
+
+ [widget=recent_visitors]
+ [var=count]24[/var]
+ [var=names_only]1[/var]
+ [/widget]
+
+ [widget=tagcloud][/widget]
+ [block]donate[/block]
+
+ [/region]
+
+
+
+ [region=middle]
+
+ [comment]Show the normal page content[/comment]
+
+ $content
+
+ [/region]
+
+
+
+ [region=right]
+
+ [comment]Show my condensed channel "wall" feed and allow interaction if the observer is allowed to interact[/comment]
+
+ [widget]channel[/widget]
+
+ [/region]
+[/code]
\ No newline at end of file
diff --git a/doc/connecting_to_channels.bb b/doc/connecting_to_channels.bb
new file mode 100644
index 000000000..b81abc7bd
--- /dev/null
+++ b/doc/connecting_to_channels.bb
@@ -0,0 +1,17 @@
+[b]Connecting To Channels[/b]
+
+Connections in the Red Matrix can take on a great many different meanings. But let's keep it simple, you want to be friends with somebody like you are familiar with from social networking. How do you do it?
+
+First, you need to find some channels to connect to. There are two primary ways of doing this. Firstly, setting the "Can send me their channel stream and posts" permission to "Anybody in this network" will bring posts from complete strangers to your matrix. This will give you a lot of public content and should hopefully help you find interesting, entertaing people, forums, and channels.
+
+The next thing you can do is look at the Directory. The directory is available on every Red Matrix website which means searching from your own site will bring in results from the entire network. You can search by name, interest, location and keyword. This is incomplete, so we'll improve this paragraph later.
+
+To connect with other Red Matrix channels:
+
+Visit their profile by clicking their photograph in the directory, matrix, or comments, and it will open their channel home page in the channel viewer. At the left hand side of the screen, you will usually see a link called "connect". Click it, and you're done. Depending on the settings of the channel you are connecting to, you may need to wait for them to approve your connection, but no further action is needed on your part. Once you've initiated the connection, you will be taken to the connection editor. This allows you to assign specific permissions for this channel. If you don't allow any permissions, communication will be very limited. There are some quick links which you can use to avoid setting individual permissions. To provide a social network environment, "Full Sharing" is recommended. You may review the settings that are applied with the quick links to ensure they are suitable for the channel you are connecting with and adjust if necessary. Then scroll to the bottom of the page and click "Submit".
+
+You may also connect with any channel by visiting the "Connections" page of your site or the Directory and typing their "webbie" into the "Add New Connection" field. Use this method if somebody tells you their webbie and you wish to connect with them. A webbie looks like an email address; for example "bob@example.com". The process is the same as connecting via the "Connect" button - you will then be taken to the connection editor to set permissions.
+
+[b]Premium Channels[/b]
+
+Some channels are designated "Premium Channels" and may require some action on your part before a connection can be established. The Connect button will for these channels will take you to a page which lists in detail what terms the channel owner has set. If the terms are accepted, the connection will then proceed normally. In some cases, such as with celebrities and world-reknowned publishers, this may involve payment. If you do not agree to the terms, the connection will not proceed, or it may proceed but with reduced permissions allowed on your interactions with that channel.
\ No newline at end of file
diff --git a/doc/dav_dolphin.bb b/doc/dav_dolphin.bb
new file mode 100644
index 000000000..4429303d3
--- /dev/null
+++ b/doc/dav_dolphin.bb
@@ -0,0 +1,9 @@
+[b]Using The Cloud - Dolphin[/b]
+
+Visit webdavs://example.com/cloud where "example.com" is the URL of your hub.
+
+When prompted for a username and password, enter your username (the first part of your webbie - no @ or domain name) and password for your normal account.
+
+Note, if you are already logged in to the web interface via Konqueror, you will not be prompted for further authentication.
+
+Return to the [zrl=[baseurl]/help/main]Main documentation page[/zrl]
\ No newline at end of file
diff --git a/doc/dav_konqueror.bb b/doc/dav_konqueror.bb
new file mode 100644
index 000000000..f44c11fb2
--- /dev/null
+++ b/doc/dav_konqueror.bb
@@ -0,0 +1,11 @@
+[b]Using The Cloud - Konqueror[/b]
+
+Simply visit webdavs://example.com/cloud after logging in to your hub, where "example.com" is the URL of your hub.
+
+No further authentication is required if you are logged in to your hub in the normal manner.
+
+Additionally, if one has authenticated at a different hub during their normal browser session, your identity will be passed to the cloud for these hubs too - meaning you can access any private files on any server, as long as you have permissions to see them, as long as you have visited that site earlier in your session.
+
+This functionality is normally restricted to the web interface, and is not available to any desktop software other than KDE.
+
+Return to the [zrl=[baseurl]/help/main]Main documentation page[/zrl]
\ No newline at end of file
diff --git a/doc/dav_mount.bb b/doc/dav_mount.bb
new file mode 100644
index 000000000..f86e2a6e5
--- /dev/null
+++ b/doc/dav_mount.bb
@@ -0,0 +1,63 @@
+[b]Mounting As A Filesystem[/b]
+
+To install your cloud directory as a filesystem, you first need davfs2 installed. 99% of the time, this will be included in your distributions repositories. In Debian
+
+[code]apt-get install davfs2[/code]
+
+If you want to let normal users mount the filesystem
+
+[code] dpkg-reconfigure davfs2[/code]
+
+and select "yes" at the prompt.
+
+Now you need to add any user you want to be able to mount dav to the davfs2 group
+
+[code]usermod -aG davfs2 <DesktopUser>[/code]
+
+Edit /etc/fstab
+
+[code]nano /etc/fstab[/code]
+
+ to include your cloud directory by adding
+
+[code]
+example.com/cloud/ /mount/point davfs user,noauto,uid=<DesktopUser>,file_mode=600,dir_mode=700 0 1
+[/code]
+
+Where example.com is the URL of your hub, /mount/point is the location you want to mount the cloud, and <DesktopUser> is the user you log in to one your computer. Note that if you are mounting as a normal user (not root) the mount point must be in your home directory.
+
+For example, if I wanted to mount my cloud to a directory called 'cloud' in my home directory, and my username was bob, my fstab would be
+
+[code]example.com/cloud/ /home/bob/cloud davfs user,noauto,uid=bob,file_mode=600,dir_mode=700 0 1[/code]
+
+Now, create the mount point.
+
+[code]mkdir /home/bob/cloud[/code]
+
+and also create a directory file to store your credentials
+
+[code]mkdir /home/bob/.davfs2[/code]
+
+Create a file called 'secrets'
+
+[code]nano /home/bob/.davfs2/secrets[/code]
+
+and add your cloud login credentials
+
+[code]
+example.com/cloud <username> <password>
+[/code]
+
+Where <username> and <password> are the username and password [i]for your hub[/i].
+
+Don't let this file be writeable by anyone who doesn't need it with
+
+[code]chmod 600 /home/bob/.davfs2/secrets[/code]
+
+Finally, mount the drive.
+
+[code]mount example.com/cloud[/code]
+
+You can now find your cloud at /home/bob/cloud and use it as though it were part of your local filesystem - even if the applications you are using have no dav support themselves.
+
+Return to the [zrl=[baseurl]/help/main]Main documentation page[/zrl]
\ No newline at end of file
diff --git a/doc/dav_nautilus.bb b/doc/dav_nautilus.bb
new file mode 100644
index 000000000..d3c478aa0
--- /dev/null
+++ b/doc/dav_nautilus.bb
@@ -0,0 +1,9 @@
+[b]Using The Cloud - Nautilus[/b]
+
+1. Open a File browsing window (that's Nautilus)
+2. Select File > Connect to server from the menu
+3. Type davs://<domain_name>/cloud/<your_username> and click Connect
+4. You will be prompted for your username (same as above) and password
+5. Your personal DAV directory will be shown in the window
+
+Return to the [zrl=[baseurl]/help/main]Main documentation page[/zrl]
\ No newline at end of file
diff --git a/doc/dav_nemo.bb b/doc/dav_nemo.bb
new file mode 100644
index 000000000..a2553c1d5
--- /dev/null
+++ b/doc/dav_nemo.bb
@@ -0,0 +1,19 @@
+[b]Using The Cloud - Nemo[/b]
+
+For (file browser) Nemo 1.8.2 under Linux Mint 15, Cinnamon 1.8.8. Nemo ist the standard file browser there.
+
+1st way
+type "davs://yourusername@friendicared.net/cloud" in the address bar
+
+2nd way
+Menu > file > connect to server
+Fill the dialog
+- Server: friendicared.net
+- Type: Secure WebDAV (https)
+- Folder: /cloud
+- Username: yourusername
+- Passwort: yourpasswort
+
+Once open you can set a bookmark.
+
+Return to the [zrl=[baseurl]/help/main]Main documentation page[/zrl]
\ No newline at end of file
diff --git a/doc/dav_windows.bb b/doc/dav_windows.bb
new file mode 100644
index 000000000..600944b68
--- /dev/null
+++ b/doc/dav_windows.bb
@@ -0,0 +1,11 @@
+[b]Using The Cloud - Windows Internal Client[/b]
+
+RedDav using Windows 7 graphical user interface wizard:
+1. Left-click the Start-button to open the start menu.
+2. Right-click the My computer icon to access its menu.
+3. Left-click Map network drive... to open the connection dialog wizard.
+4. Type #^[url=https://example.net/cloud/your_user_name]https://example.net/cloud/your_user_name[/url] in the textbox and click the Complete button where "example.net" is the URL of your hub.
+5. Type your Red account's user name. IMPORTANT - NO at-sign or domain name.
+6. Type your Red password
+
+Return to the [zrl=[baseurl]/help/main]Main documentation page[/zrl]
\ No newline at end of file
diff --git a/doc/de/Home.md b/doc/de/Home.md
new file mode 100644
index 000000000..d603af11b
--- /dev/null
+++ b/doc/de/Home.md
@@ -0,0 +1,43 @@
+Dokumentation und Ressourcen zur Red-Matrix
+===========================================
+
+
+**Inhalt**
+
+* [Grundlagen zu Red-Konten](help/Kontengrundlagen)
+* [Profile](help/Profile)
+* [Channels](help/Channels)
+* [Connecting to Channels](help/Connecting-to-Channels)
+* [Permissions](help/Permissions)
+* [Cloud Storage](help/Cloud)
+* [But Wait - There's More. MUCH More...](help/Features)
+* [Tags and Mentions](help/Tags-and-Mentions)
+* [Web Pages](help/Webpages)
+* [Remove Account](help/Remove-Account)
+* [BBcode reference for posts and comments](help/bbcode)
+
+**Technische Dokumentation**
+
+* [Install](help/Install)
+* [Comanche Page Descriptions](help/Comanche)
+* [Plugins](help/Plugins)
+* [Schemas](help/Schema-development)
+* [Developers](help/Developers)
+* [Intro for Developers](help/Intro-for-Developers)
+* [API functions](help/api_functions)
+* [Red Functions 101](help/dev-function-overview)
+* [Code-Referenz (mit doxygen generiert, Englisch)](doc/html)
+* [To-Do list for the Red Documentation Project](help/To-Do)
+* [To-Do list for Developers](help/To-Do-Code)
+
+**Externe Ressourcen**
+
+* [External Resource Links](help/External-Resources)
+* [Haupt-Website](https://github.com/friendica/red)
+* [Plugins/Addons-Website](https://github.com/friendica/red-addons)
+* [Assets-Website](https://github.com/friendica/red-assets)
+* [Entwickler-Kanal](http://zothub.com/channel/one)
+
+**Über**
+
+* [Server- und Versionsinformationen](siteinfo)
diff --git a/doc/de/Kontengrundlagen.md b/doc/de/Kontengrundlagen.md
new file mode 100644
index 000000000..23a8da87a
--- /dev/null
+++ b/doc/de/Kontengrundlagen.md
@@ -0,0 +1,72 @@
+Grundlagen zu Red-Konten
+========================
+
+* [Zurück zur Hilfe-Startseite](help)
+
+
+**Registrieren**
+
+Nicht alle Server in der Red-Matrix erlauben jedem, sich zu registrieren.
+Wenn eine Registrierung möglich ist, erscheint unter dem Anmelde-Formular
+ein Link mit dem Titel „Registrieren“, der Dich zur Registrierungs-Seite
+des Servers führt. Auf manchen Servern wirst Du auf einen anderen Server
+weitergeleitet, der Registrierungen erlaubt. Da alle Red-Server
+miteinander verbunden sind, ist es egal, auf welchem Du Dich registrierst.
+
+*Deine E-Mail-Adresse*
+
+Bitte gib eine funktionierende E-Mail-Adresse an. Sie wird **nie**
+veröffentlicht. Wenn Du willst, kannst Du Dir an diese Adresse
+Benachrichtigungen schicken lassen, wenn Du neue Nachrichten oder Beiträge
+erhalten hast. Sie wird außerdem benutzt, um vergessene Passwörter
+wiederherstellen zu können.
+
+*Passwort*
+
+Gib ein Passwort Deiner Wahl ein und wiederhole es in der zweiten Box, um
+sicherzugehen, dass Du Dich nicht vertippt hast. Da die Red-Matrix
+dezentralisierten Identitäsnachweis beherrscht, kannst Du Dich mit Deinem
+Konto auf vielen anderen Webseiten anmelden.
+
+*Nutzungsbedingungen*
+
+Klicke auf den Link, um die Nutzungsbedingungen dieses Servers zu lesen.
+Wenn Du sie gelesen hast, setze den Haken im Registrierungsformular, um
+sie zu akzeptieren.
+
+*Registrieren*
+
+Wenn Du alles ausgefüllt hast, klicke auf den „Registrieren“-Knopf. Bei
+manchen Servern muss der Administrator Deiner Registrierung erst noch
+zustimmen, bevor Du Dein Konto nutzen kannst. Falls das der Fall ist,
+wird Dir das entsprechend angezeigt. Du erhältst dann eine E-Mail, wenn
+die Registrierung vollendet wurde. (Sicherheitshalber auch Spam-Ordner
+überprüfen!)
+
+*Einen Kanal anlegen*
+
+Als nächstes kommst Du direkt auf den „Kanal hinzufügen“-Bildschirm. Dein
+erster Kanal wird normalerweise der sein, der Dich selbst repräsentiert.
+Es ist also sinnvoll, Deinen Namen oder Dein Pseudonym als Kanal-Namen zu
+verwenden.
+
+Der Kanal-Name ist der Titel oder eine kurze Beschreibung des Kanals. Der
+„Spitzname“ ist so etwas wie ein Benutzername. Was Du hier eingibst wird
+Teil Deiner Kanal-Adresse, die Andere benutzen, um sich mit Dir zu
+verbinden, und die Du selbst benutzt, um Dich auf anderen Servern
+anzumelden. Die Kanal-Adresse sieht aus wie eine E-Mail-Adresse, zum
+Beispiel so: spitzname@deinserver.xyz
+
+Wenn Dein Kanal angelegt ist, geht es direkt weiter zu den Einstellungen.
+Dort kannst Du Zugriffsrechte setzen, Funktionen zu- oder abschalten und
+so weiter. Diese Punkte werden auf den entsprechenden Hilfeseiten erklärt.
+
+**Siehe auch**
+
+* [Permissions](help/Permissions)
+
+* [Profile](help/Profile)
+
+* [Remove Account](help/Remove-Account)
+
+
diff --git a/doc/de/Profile.md b/doc/de/Profile.md
new file mode 100644
index 000000000..6ee06a55d
--- /dev/null
+++ b/doc/de/Profile.md
@@ -0,0 +1,97 @@
+Profile
+=======
+
+* [Zurück zur Hilfe-Startseite](help)
+
+In Red kannst Du beliebig viele Profile anlegen. Du kannst mehrere Profile
+nutzen, um verschiedenen Kontakten und Profilbesuchern unterschiedliche
+Seiten Deiner Persönlichkeit zu zeigen. Das ist nicht das gleiche wie das
+Anlegen mehrerer _Kanäle_.
+
+Mehrere Kanäle erlauben es, komplett voneinander getrennte Informationen
+zu verwalten. Du könntest zum Beispiel einen Kanal für Dich selbst
+anlegen, einen für Deinen Schwimmverein, einen für Dein Blog und so weiter
+und so fort.
+
+Ein Profil erlaubt es, unterschiedlichen Leuten unterschiedliche
+Informationen über einen Kanal zu präsentieren. Beispiel: In Deinem
+Standard-Profil, das alle Profilbesucher zu sehen bekommen, könnte nur
+Dein Vorname stehen, sonst keine weiteren Informationen. Freunde und
+Bekannte könnten Deinen kompletten Realnamen und Deine Postadresse zu
+sehen bekommen, und im Profil für Deinen engsten Freundeskreis könnten
+peinliche Hobbies Trinkrekorde ihren Platz finden.
+
+Jeder Kanal hat ein Standard-Profil (öffentliches Profil), das vor niemandem
+versteckt werden kann (außer evtl. auf privaten Servern, die nicht mit der
+Matrix verbunden sind). Du kannst und solltest Dich in der Auswahl dessen, was
+Du im Standard-Profil von Dir preisgibst, stark einschränken.
+
+Trotzdem: Wenn Du willst, dass Freunde Dich finden können, macht es Sinn,
+folgende Informationen ins öffentliche Profil einzutragen:
+
+* Deinen Realnamen oder zumindest einen Spitznamen, unter dem Dich jeder kennt
+* Ein Foto, das auch wirklich Dich zeigt
+* Deinen Wohnort, oder zumindest Land oder Bundesland
+
+Ohne diese Informationen könnte es passieren, dass Du hier sehr einsam
+bist. Die meisten Leute verbinden sich nicht mit jemandem, von dem sie nur
+einen Fake-Namen und ein Foto sehen, das noch nicht einmal einen Menschen
+zeigt.
+
+Wenn Du Leute kennenlernen möchtest, die ähnliche Interessen haben wie Du,
+nimm Dir einen Moment Zeit und füge einige Schlüsselwörter hinzu. Zum
+Beispiel „Musik, Linux, Fotografie“ oder was auch immer. Danach können
+andere dann im Verzeichnis suchen. Du kannst so viele Schlüsselwörter
+eingeben wie Du möchtest.
+
+Um alternative Profile zu erstellen, klicke auf „Profil ansehen“ im Menü
+Deines Red-Servers und dann auf den Bleistift am Profilfoto. Dann kannst
+Du existierende Profile bearbeiten, Dein Profilfoto verändern, Dinge zu
+einem Profil hinzufügen oder ein neues Profil erstellen. Du kannst auch
+ein Profil „klonen“, wenn Du nur einige wenige Einträge ändern willst,
+ohne die ganzen Informationen noch einmal einzugeben. Klicke dazu auf das
+Profil, das Du klonen willst, und wähle dann „Dieses Profil klonen“.
+
+In der Liste Deiner Profile kannst Du auch bestimmen, wer ein bestimmtes
+Profil zu sehen bekommt. Klicke dazu auf „Sichtbarkeit bearbeiten“ neben
+dem Profil, um das es geht (gibt es nur bei Profilen, die nicht Dein
+Standard-Profil sind). Klicke dann auf die Bilder derjenigen Kontakte, die
+dieses Profil sehen sollen – sie sind dann oben zu sehen. Wenn Du oben auf
+ein Bild klickst, wird dieser Kontakt wieder aus der Gruppe derjenigen
+herausgenommen, die dieses Profil zu sehen bekommen.
+
+Hast Du einem Kontakt ein Profil zugeordnet, wird er immer dieses Profil
+sehen, wenn er sich Dein Profil ansieht. Besucht er Deinen Red-Server,
+ohne sich anzumelden, sieht er aber weiterhin Dein Standard-Profil.
+
+Auf der allgemeinen „Einstellungen“-Seite gibt es eine Einstellung, mit
+der Du festlegen kannst, ob Dein Standard-Profil in den Red-Verzeichnissen
+veröffentlicht werden soll.
+
+Wenn Du nicht möchtest, dass andere Dich finden können, ohne dass Du ihnen
+Deine Kanal-Adresse gibst, kannst Du so verhindern, dass Dein Profil
+veröffentlicht wird.
+
+**Schlüsselwörter und Verzeichnissuche**
+
+Im Verzeichnis (Kanal-Anzeiger) kannst Du nach Leuten suchen, die ihre
+Profile veröffentlichen. Zum Beispiel, indem Du Namen oder Spitznamen
+eingibst. Es werden aber auch viele andere Profilfelder durchsucht, zum
+Beispiel Geschlecht, Wohnort, Hobbys, Arbeit/Anstellung und
+Schule/Ausbildung und die Schlüsselwörter. Wenn Du Schlüsselwörter in Dein
+Profil einträgst, können Dich Leute mit ähnlichen Interessen finden. Sie
+werden außerdem bei den Kanal-Vorschlägen benutzt. Sie sind im Verzeichnis
+nicht direkt sichtbar, wohl aber auf Deiner Profil-Seite.
+
+In Verzeichnis-Suchen kann auch boolesche Logik benutzt werden. Du kannst
+also nach „+lesbisch +Hamburg“ suchen, um Leute zu finden, deren sexuelle
+Orientierung lesbisch ist (oder deren Schlüsselwörter „lesbisch“
+enthalten), und die in Hamburg leben. Mehr Informationen über boolesche
+Suchen findest Du im Abschnitt „Topical Tags“ auf der Hilfeseite
+[Tags-and-Mentions](help/Tags-and-Mentions).
+
+Auf Deiner „Verbindungen“-Seite und im Verzeichnis (Kanal-Anzeiger) gibt
+es einen Link „Vorschläge“ bzw. „Kanal-Vorschläge“. Dort findest Du
+Kanäle, die gleiche oder ähnliche Schlüsselwörter im Profil haben wie Du.
+Je mehr Schlüsselwörter Du in Dein Standard-Profil einträgst, desto besser
+werden die Suchergebnisse. Sie sind nach relevanz sortiert.
diff --git a/doc/de/features.bb b/doc/de/features.bb
new file mode 100644
index 000000000..65ea45679
--- /dev/null
+++ b/doc/de/features.bb
@@ -0,0 +1,108 @@
+[size=24][b]Features der Red-Matrix[/b][/size]
+
+[url=[baseurl]/help]Zurück zur Hilfe-Startseite[/url]
+
+Die Red-Matrix ist ein Allzweck-Kommunikationsnetzwerk mit einigen einzigartigen Features. Sie wurde für eine große Bandbreite von Nutzern entwickelt, von Nutzern sozialer Netzwerke über technisch nicht interessierte Blogger bis hin zu PHP-Experten und erfahrenen Systemadministratoren.
+
+Diese Seite listet einige der Kern-Features von Red auf, die in der offiziellen Distribution enthalten sind. Wie immer bei freier Open-Source-Software sind den Möglichkeiten keine Grenzen gesetzt. Beliebige Erweiterungen, Addons, Themes und Konfigurationen sind möglich.
+
+[b][size=18]Entwickelt für Privatsphäre und Freiheit[/size][/b]
+
+Eines der Design-Ziele von Red ist einfache Kommunikations über das Web, ohne die Privatsphäre zu vernachlässigen, wenn die Nutzer das Wünschen. Um dieses Ziel zu erreichen, verfügt Red über einige Features, die beliebige Stufen des Privatsphäre-Schutzes ermöglichen:
+
+[b]Beziehungs-Tool[/b]
+
+Wenn Du in der Red-Matrix einen Kontakt hinzufügst (und das Beziehungs-Tool aktiviert hast), hast Du die Möglichkeit, einen „Grad der Freundschaft“ zu bestimmen. Bespiel: Wenn Du ein Blog eines Bekannten hinzufügst, könntest Du ihm den Freundschaftsgrad „Bekannte“ (Acquaintances) geben.
+
+[img]https://friendicared.net/photo/b07b0262e3146325508b81a9d1ae4a1e-0.png[/img]
+
+Wenn Du aber den privaten Kanal eines Freundes hinzufügst, wäre der Freundschaftsgrad „Freunde“ vermutlich passender.
+
+Wenn Du allen Kontakten solche Freundschaftsgrade zugeordnet hast, kannst Du mit dem Beziehungs-Tool, das (sofern aktiviert) oben auf Deiner Matrix-Seite erscheint, bestimmen, welche Inhalte Du sehen willst. Indem Du die Schieberegler so einstellst, dass der linke auf „Ich“ und der rechte auf „Freunde“ steht, kannst Du dafür sorgen, dass nur Inhalte von Kontakten angezeigt werden, deren Freundschaftsgrad sich irgendwo im Bereich zwischen „Ich“, „Beste Freunde“ und „Freunde“ bewegt. Alle anderen Kontakte, zum Beispiel solche mit einem Freundschaftsgrad in der Nähe von „Bekannte“, werden nicht angezeigt.
+
+Das Beziehungs-Tool erlaubt blitzschnelles Filtern von großen Mengen Inhalt, gruppiert nach Freundschaftsgrad.
+
+[b]Zugriffsrechte[/b]
+
+Wenn Du Inhalte mit anderen teilst, hast Du die Option, den Zugriff darauf einzuschränken. Wenn Du auf das Schloss unterhalb des Beitrags-Editors klickst, kannst Du auswählen, wer diesen Beitrag sehen darf, indem Du einfach auf die Namen klickst.
+
+Diese Nachricht kann dann nur vom Absender und den eingestellten Empfängern betrachtet werden. Mit anderen Worten, sie erscheint nicht öffentlich auf einer Pinnwand.
+
+[b]Verschlüsselung privater Nachrichten[/b]
+
+Öffentliche Nachrichten werden in der Red-Matrix nicht verschlüsselt, bevor sie Deinen Server verlassen, und sie werden auch im Klartext in der Datenbank gespeichert.
+
+Nachrichten mit eingeschränktem Empfängerkreis werden jedoch mit einem symmetrischen 256-bit-AES-CBC-Schlüssel verschlüsselt, der seinerseits mit Public-Key-Kryptografie auf Basis von 4096-bittigen RSA-Schlüsseln geschützt (nochmal verschlüsselt) wird, die mit dem sendenden Kanal verbunden sind.
+
+Jeder Red-Kanal hat seinen eigenes 4096-bit-RSA-Schlüsselpaar, das erzeugt wird, wenn der Kanal erstellt wird.
+
+[b]TLS/SSL[/b]
+
+Red-Server, die TLS/SSL benutzen, verschlüsseln ihre Kommunikation vom Server zum Nutzer mit SSL. Nach den aktuellen Enthüllungen über das Umgehen von Verschlüsselung durch NSA, GHCQ und andere Dienste, sollte man jedoch nicht mehr savon ausgehen, dass diese Verbindungen nicht mitgelesen werden können.
+
+[b]Kanal-Einstellungen[/b]
+
+Für jeden Kanal kannst Du detaillierte Zugriffseinstellungen für verschiedenste Aspekte der Kommunikation festlegen. Unter den „Sicherheits- und Privatsphäre-Einstellungen“ kann für jeden Punkt auf der linken Seite eine von 5-6 möglichen Optionen aus dem Menü gewählt werden.
+
+[img]https://friendicared.net/photo/0f5be8da282858edd645b0a1a6626491.png[/img]
+
+Die Optionen sind:
+[ul][*]Niemand außer Du selbst
+[*]Nur die, denen Du es explizit erlaubst
+[*]All Deine Kontakte
+[*]Jeder auf diesem Server
+[*]Alle Red-Nutzer
+[*]Jeder im Internet[/ul]
+
+[b]Klone[/b]
+
+Konten in der Red-Matrix werden auch als [i]nomadische Identitäten[/i] bezeichnet (eine ausführliche Erklärung dazu gibt es unter [url=[baseurl]/help/what_is_zot]What is Zot?[/url]). Nomadisch, weil bei anderen Diensten die Identität eines Nutzers an den Server oder die Plattform gebunden ist, auf der er ursprünglich erstellt wurde. Ein Facebook- oder Gmail-Konto ist and diese Dienste gekettet. Er funktioniert nicht ohne Facebook.com bzw. Gmail.com.
+
+Bei Red ist das anders. Sagen wir, Du hast eine Red-Indentität namens tina@red.com. Die kannst Du auf einen anderen Server klonen, mit dem gleichen oder einem anderen Namen, zum Beispiel lebtEwig@matrixserver.info.
+
+Beide Kanäle sind jetzt miteinander synchronisiert, das heißt, dass alle Kontakte und Einstellungen auf dem Klon immer die gleichen sind wie auf dem ursprünglichen Kanal. Es ist egal, ob Du eine Nachricht von dort aus oder vom Klon aus schickst. Alle Nachrichten sind in beiden Klonen vorhanden.
+
+Das ist ein ziemlich revolutionäres Feature, wenn man sich einige Szenarien dazu ansieht:
+
+[ul][*]Was passiert, wenn ein Server, auf dem sich Deine Identität befindet, plötzlich offline ist? Ohne Klone ist der Nutzer nicht in der Lage zu kommunzieren, bis der Server wieder online ist. Mit Klonen loggst Du Dich einfach bei Deinem geklonten Kanal ein und lebst glücklich bis an Dein Ende.
+[*]Der Administrator Deines Red-Servers kann es sich nicht länger leisten, seinen für alle kostenlosen Server zu bezahlen. Er gibt bekannt, dass der Server in zwei Wochen vom Netz gehen wird. Zeit genug, um Deine Red-Kanäle auf andere Server zu klonen und somit Verbindungen und Freunde zu behalten.
+[*]Was, wenn Dein Kanal staatlicher Zensur unterliegt? Dein Server-Admin wird gezwungen, Dein Konto und alle damit verbundenen Kanäle und Daten zu löschen. Durch Klone bietet die Red-Matrix Zensur-Resistenz. Wenn Du willst, kannst Du hunderte von Klonen haben, alle mit unterschiedlichen Namen und auf unterschiedlichen Servern überall im Internet.[/ul]
+
+Red bietet interessante, neue Möglichkeiten in Bezug auf die Privatsphäre. Mehr dazu bald unter „Tipps und Tricks zur privaten Kommunikation“.
+
+Klone unterliegen einigen Restriktionen. Eine vollständige Erklärung zum Klonen von Identitäten gibt es bald unter „Klone“.
+
+
+[b]Kanal-Backups[/b]
+
+In Red gibt es ein einfaches Ein-Klick-Backup, mit dem Du ein komplettes Backup Deiner Kanal-Einstellungen und Verbindungen herunterladen kannst.
+
+Solche Backups sind ein Weg, um Klone zu erstellen, und können genutzt werden, um einen Kanal wiederherzustellen.
+
+[b]Löschen von Konten[/b]
+
+Konten und Kanäle können sofort gelöscht werden, indem Du einfach auf einen Link klickst. Das wars. Alle damit verbundenen Inhalte werden sofort aus der Matrix gelöscht (inklusiver aller Beiträge und sonstiger Inhalte, die von dem gelöschten Konto/Kanal erzeugt wurden).
+
+[b][size=18]Erstellen von Inhalten[/size][/b]
+
+[b]Beiträge schreiben[/b]
+
+Red unterstützt diverse verschiedene Wege, um Inhalte zu erstellen, von einem grafischen Text-Editor über verschieden Markup-Sprachen bis hin zu reinem HTML.
+
+Mit Red geliefert wird TinyMCE, ein WYSIWYG-Editor, der in den Einstellungen eingeschaltet werden kann. Ist er nicht aktiviert, können normale Beiträge mit BBCode (wie in Foren) formatiert werden.
+
+Webseiten können außerdem in HTML, Markdown und Plain Text erstellt werden.
+
+[b]Inhalte löschen[/b]
+
+Alle Inhalte in der Matrix bleiben unter der Kontroller des Nutzers (bzw. Kanals), der sie ursprünglich erstellt hat. Alle Beiträge können jederzeit gelöscht werden, egal, ob sie auf dem Heimat-Server des Nutzers oder auf einem anderen Server erstellt wurden, an dem der Nutzer via Zot angemeldet war.
+
+[b]Medien[/b]
+
+Genau wie jedes andere Blog-System, soziale Netzwerk oder Mikro-Blogging-Dienst unterstützt Red das Hochladen von Dateien, das Einbetten von Bildern und Videos und das Verlinken von Seiten.
+
+[b]Vorschau[/b]
+
+Vor dem Absenden kann eine Vorschau von Beiträgen betrachtet werden.
+
+[url=[baseurl]/help]Zurück zur Hilfe-Startseite[/url]
diff --git a/doc/de/kontengrundlagen.bb b/doc/de/kontengrundlagen.bb
new file mode 100644
index 000000000..fe0b10035
--- /dev/null
+++ b/doc/de/kontengrundlagen.bb
@@ -0,0 +1,38 @@
+[size=24][b]Grundlagen zu Red-Konten[/b][/size]
+
+[zrl=[baseurl]/help]Zurück zur Hilfe-Startseite[/zrl]
+
+
+[b]Registrieren[/b]
+
+Nicht alle Server in der Red-Matrix erlauben jedem, sich zu registrieren. Wenn eine Registrierung möglich ist, erscheint unter dem Anmelde-Formular ein Link mit dem Titel „Registrieren“, der Dich zur Registrierungs-Seite des Servers führt. Auf manchen Servern wirst Du auf einen anderen Server weitergeleitet, der Registrierungen erlaubt. Da alle Red-Server miteinander verbunden sind, ist es egal, auf welchem Du Dich registrierst.
+
+[b]Deine E-Mail-Adresse[/b]
+
+Bitte gib eine funktionierende E-Mail-Adresse an. Sie wird [b]nie[/b] veröffentlicht. Wenn Du willst, kannst Du Dir an diese Adresse Benachrichtigungen schicken lassen, wenn Du neue Nachrichten oder Beiträge erhalten hast. Sie wird außerdem benutzt, um vergessene Passwörter wiederherstellen zu können.
+
+[b]Passwort[/b]
+
+Gib ein Passwort Deiner Wahl ein und wiederhole es in der zweiten Box, um sicherzugehen, dass Du Dich nicht vertippt hast. Da die Red-Matrix dezentralisierten Identitäsnachweis beherrscht, kannst Du Dich mit Deinem Konto auf vielen anderen Webseiten anmelden.
+
+[b]Nutzungsbedingungen[/b]
+
+Klicke auf den Link, um die Nutzungsbedingungen dieses Servers zu lesen. Wenn Du sie gelesen hast, setze den Haken im Registrierungsformular, um sie zu akzeptieren.
+
+[b]Registrieren[/b]
+
+Wenn Du alles ausgefüllt hast, klicke auf den „Registrieren“-Knopf. Bei manchen Servern muss der Administrator Deiner Registrierung erst noch zustimmen, bevor Du Dein Konto nutzen kannst. Falls das der Fall ist, wird Dir das entsprechend angezeigt. Du erhältst dann eine E-Mail, wenn die Registrierung vollendet wurde. (Sicherheitshalber auch Spam-Ordner überprüfen!)
+
+[b]Einen Kanal anlegen[/b]
+
+Als nächstes kommst Du direkt auf den „Kanal hinzufügen“-Bildschirm. Dein erster Kanal wird normalerweise der sein, der Dich selbst repräsentiert. Es ist also sinnvoll, Deinen Namen oder Dein Pseudonym als Kanal-Namen zu verwenden.
+
+Der Kanal-Name ist der Titel oder eine kurze Beschreibung des Kanals. Der „Spitzname“ ist so etwas wie ein Benutzername. Was Du hier eingibst wird Teil Deiner Kanal-Adresse, die Andere benutzen, um sich mit Dir zu verbinden, und die Du selbst benutzt, um Dich auf anderen Servern anzumelden. Die Kanal-Adresse sieht aus wie eine E-Mail-Adresse, zum Beispiel so: spitzname@deinserver.xyz
+
+Wenn Dein Kanal angelegt ist, geht es direkt weiter zu den Einstellungen. Dort kannst Du Zugriffsrechte setzen, Funktionen zu- oder abschalten und so weiter. Diese Punkte werden auf den entsprechenden Hilfeseiten erklärt.
+
+[b]Siehe auch[/b]
+
+[zrl=[baseurl]/help/permissions]Permissions[/zrl]
+[zrl=[baseurl]/help/profile]Profile[/zrl]
+[zrl=[baseurl]/help/remove_account]Remove Account[/zrl]
diff --git a/doc/de/main.bb b/doc/de/main.bb
new file mode 100644
index 000000000..e6fa0eee0
--- /dev/null
+++ b/doc/de/main.bb
@@ -0,0 +1,59 @@
+[size=24][b]Dokumentation und Ressourcen zur Red-Matrix[/b][/size]
+
+[size=18][b]Inhalt[/b][/size]
+
+[zrl=[baseurl]/help/redmatrix]Was ist die Red-Matrix?[/zrl]
+[zrl=[baseurl]/help/features]Features der Red-Matrix[/zrl]
+[zrl=[baseurl]/help/what_is_zot]What is Zot?[/zrl]
+
+[b]Grundlegende Anleitung[/b]
+
+[zrl=[baseurl]/help/kontengrundlagen]Grundlagen zu Konten[/zrl]
+[zrl=[baseurl]/help/profile]Profile[/zrl]
+[zrl=[baseurl]/help/channels]Channels[/zrl]
+[zrl=[baseurl]/help/connecting_to_channels]Connecting to Channels[/zrl]
+[zrl=[baseurl]/help/permissions]Permissions[/zrl]
+[zrl=[baseurl]/help/cloud]Cloud Storage[/zrl]
+
+[b]Aber Halt! Es gibt noch mehr! [i]Viel[/i] mehr …[/b]
+
+[zrl=[baseurl]/help/tags_and_mentions]Tags and Mentions[/zrl]
+[zrl=[baseurl]/help/webpages]Web Pages[/zrl]
+[zrl=[baseurl]/help/remove_account]Remove Account[/zrl]
+[zrl=[baseurl]/help/bbcode]BBcode reference for posts and comments[/zrl]
+[zrl=[baseurl]/help/checking_account_quota_usage]Checking Account Quota Usage[/zrl]
+[zrl=[baseurl]/help/cloud_desktop_clients]Cloud Desktop Clients[/zrl]
+
+[b]Für Administratoren[/b]
+
+[zrl=[baseurl]/help/debian_install]Easy Install on Debian via script[/zrl]
+[zrl=[baseurl]/help/red2pi]Installing Red on the Raspberry Pi[/zrl]
+[zrl=[baseurl]/help/problems-following-an-update]Problems Following A Software Update[/zrl]
+[zrl=[baseurl]/help/troubleshooting]Troubleshooting Tips[/zrl]
+
+
+[b]Technische Dokumentation[/b]
+
+[zrl=[baseurl]/help/install]Install[/zrl]
+[zrl=[baseurl]/help/comanche]Comanche Page Descriptions[/zrl]
+[zrl=[baseurl]/help/plugins]Plugins[/zrl]
+[zrl=[baseurl]/help/schema_development]Schemas[/zrl]
+[zrl=[baseurl]/help/developers]Developers[/zrl]
+[zrl=[baseurl]/help/intro_for_developers]Intro for Developers[/zrl]
+[zrl=[baseurl]/help/api_functions]API functions[/zrl]
+[zrl=[baseurl]/help/developer_function_primer]Red Functions 101[/zrl]
+[zrl=[baseurl]/doc/html/]Code Reference (doxygen generated - sets cookies)[/zrl]
+[zrl=[baseurl]/help/to_do_doco]To-Do list for the Red Documentation Project[/zrl]
+[zrl=[baseurl]/help/to_do_code]To-Do list for Developers[/zrl]
+[zrl=[baseurl]/help/git_for_non_developers]Git for Non-Developers[/zrl]
+
+[b]Externe Ressourcen[/b]
+
+[zrl=[baseurl]/help/external-resource-links]External Resource Links[/zrl]
+[url=https://github.com/friendica/red]Haupt-Website[/url]
+[url=https://github.com/friendica/red-addons]Addons-Website[/url]
+[url=https://zothub.com/channel/one]Entwickler-Kanal[/url]
+
+[b]Über[/b]
+
+[zrl=[baseurl]/siteinfo]Informationen zu diesem Server und der Red-Version[/zrl]
diff --git a/doc/de/profile.bb b/doc/de/profile.bb
new file mode 100644
index 000000000..25abdc664
--- /dev/null
+++ b/doc/de/profile.bb
@@ -0,0 +1,41 @@
+[size=24][b]Profile[/b][/size]
+
+[zrl=[baseurl]/help]Zurück zur Hilfe-Startseite[/zrl]
+
+In Red kannst Du beliebig viele Profile anlegen. Du kannst mehrere Profile nutzen, um verschiedenen Kontakten und Profilbesuchern unterschiedliche Seiten Deiner Persönlichkeit zu zeigen. Das ist nicht das gleiche wie das Anlegen mehrerer [i]Kanäle.[/i]
+
+Mehrere Kanäle erlauben es, komplett voneinander getrennte Informationen zu verwalten. Du könntest zum Beispiel einen Kanal für Dich selbst anlegen, einen für Deinen Schwimmverein, einen für Dein Blog und so weiter und so fort.
+
+Ein Profil erlaubt es, unterschiedlichen Leuten unterschiedliche Informationen über einen Kanal zu präsentieren. Beispiel: In Deinem Standard-Profil, das alle Profilbesucher zu sehen bekommen, könnte nur Dein Vorname stehen, sonst keine weiteren Informationen. Freunde und Bekannte könnten Deinen kompletten Realnamen und Deine Postadresse zu sehen bekommen, und im Profil für Deinen engsten Freundeskreis könnten peinliche Hobbies Trinkrekorde ihren Platz finden.
+
+Jeder Kanal hat ein Standard-Profil (öffentliches Profil), das vor niemandem versteckt werden kann (außer evtl. auf privaten Servern, die nicht mit der Matrix verbunden sind). Du kannst und solltest Dich in der Auswahl dessen, was Du im Standard-Profil von Dir preisgibst, stark einschränken.
+
+Trotzdem: Wenn Du willst, dass Freunde Dich finden können, macht es Sinn, folgende Informationen ins öffentliche Profil einzutragen:
+
+[ul][*] Deinen Realnamen oder zumindest einen Spitznamen, unter dem Dich jeder kennt
+[*] Ein Foto, das auch wirklich Dich zeigt
+[*] Deinen Wohnort, oder zumindest Land oder Bundesland[/ul]
+
+Ohne diese Informationen könnte es passieren, dass Du hier sehr einsam bist. Die meisten Leute verbinden sich nicht mit jemandem, von dem sie nur einen Fake-Namen und ein Foto sehen, das noch nicht einmal einen Menschen zeigt.
+
+Wenn Du Leute kennenlernen möchtest, die ähnliche Interessen haben wie Du, nimm Dir einen Moment Zeit und füge einige Schlüsselwörter hinzu. Zum Beispiel „Musik, Linux, Fotografie“ oder was auch immer. Danach können andere dann im Verzeichnis suchen. Du kannst so viele Schlüsselwörter eingeben wie Du möchtest.
+
+Um alternative Profile zu erstellen, besuche zunächst die Seite [zrl=[baseurl]/settings/features]Einstellungen > Zusätzliche Funktionen[/zrl] und aktiviere dort „Mehrfachprofile“. Ohne diese Aktivierung hast Du nur ein Profil, nämlich Dein Standard-Profil.
+
+Klicke dann auf „Profile bearbeiten“ im Menü Deines Red-Servers. Dort kannst Du existierende Profile bearbeiten, Dein Profilfoto verändern, Dinge zu einem Profil hinzufügen oder ein neues Profil erstellen. Du kannst auch ein Profil „klonen“, wenn Du nur einige wenige Einträge ändern willst, ohne die ganzen Informationen noch einmal einzugeben. Klicke dazu auf das Profil, das Du klonen willst, und wähle dann „Dieses Profil klonen“.
+
+In der Liste Deiner Profile kannst Du auch bestimmen, wer ein bestimmtes Profil zu sehen bekommt. Klicke dazu auf „Sichtbarkeit bearbeiten“ neben dem Profil, um das es geht (gibt es nur bei Profilen, die nicht Dein Standard-Profil sind). Klicke dann auf die Bilder derjenigen Kontakte, die dieses Profil sehen sollen – sie sind dann oben zu sehen. Wenn Du oben auf ein Bild klickst, wird dieser Kontakt wieder aus der Gruppe derjenigen herausgenommen, die dieses Profil zu sehen bekommen.
+
+Hast Du einem Kontakt ein Profil zugeordnet, wird er immer dieses Profil sehen, wenn er sich Dein Profil ansieht. Besucht er Deinen Red-Server, ohne sich anzumelden, sieht er aber weiterhin Dein Standard-Profil.
+
+Auf der allgemeinen „Einstellungen“-Seite gibt es eine Einstellung, mit der Du festlegen kannst, ob Dein Standard-Profil in den Red-Verzeichnissen veröffentlicht werden soll.
+
+Wenn Du nicht möchtest, dass andere Dich finden können, ohne dass Du ihnen
+Deine Kanal-Adresse gibst, kannst Du so verhindern, dass Dein Profil
+veröffentlicht wird.
+
+[b]Schlüsselwörter und Verzeichnissuche[/b]
+
+Im Verzeichnis (Kanal-Anzeiger) kannst Du nach Leuten suchen, die ihre Profile veröffentlichen. Zum Beispiel, indem Du Namen oder Spitznamen eingibst. Aktuell werden nur das Namensfeld und die Schlüsselwörter durchsucht. Wenn Du Schlüsselwörter in Dein Standard-Profil einträgst, können Dich Leute mit ähnlichen Interessen finden. Sie werden außerdem bei den Kanal-Vorschlägen benutzt. Sie sind im Verzeichnis nicht direkt sichtbar, wohl aber auf Deiner Profil-Seite.
+
+Auf Deiner „Verbindungen“-Seite und im Verzeichnis (Kanal-Anzeiger) gibt es einen Link „Vorschläge“ bzw. „Kanal-Vorschläge“. Dort findest Du Kanäle, die gleiche oder ähnliche Schlüsselwörter im Profil haben wie Du. Je mehr Schlüsselwörter Du in Dein Standard-Profil einträgst, desto besser werden die Suchergebnisse. Sie sind nach relevanz sortiert.
diff --git a/doc/de/redmatrix.bb b/doc/de/redmatrix.bb
new file mode 100644
index 000000000..aa27769d0
--- /dev/null
+++ b/doc/de/redmatrix.bb
@@ -0,0 +1,23 @@
+[size=24][b]Was ist die Red-Matrix?[/b][/size]
+
+Die Red-Matrix ist ein dezentralisiertes Kommunikationsnetzwerk mit dem Ziel, Kommunikationsmöglichkeiten bereitzustellen, die Zensur umgehen, die Privatsphäre respektieren und somit frei sind von den Einschränkungen, die die heutigen kommerziellen Kommunikationsgiganten uns auferlegen. Diese stellen in erster Linie Spionagenetzwerke für zahlende Kunden aller Art zur Verfügung und monopolisieren und zentralisieren das ganze Internet – was ursprünglich eben gerade nicht unter den revolutionären Zielen war, die einst zum World Wide Web führten.
+
+Die Software der Red-Matrix ist frei, kostenlos und Open Source. Sie wurde entwickelt, um auf einem Raspberry Pi für € 30,– ebenso zu laufen wie auf den größten AMD- und Intel-Xeon-Multiprozessor-Servern. Sie kann für die Kommunikation zwischen einigen wenigen Einzelpersonen genutzt werden oder viele tausend Leute und mehr miteinander verbinden.
+
+Ein weiteres Ziel ist es, von Können und Ressourcen unabhängig zu sein. Die Red-Matrix ist für den einfachen Computernutzer ebenso leicht bedienbar wie für Systemadministratoren und Entwickler.
+
+Wie Du sie benutzt hängt davon ab, wie Du sie benutzen [i]willst.[/i]
+
+Die Red-Matrix ist in PHP geschrieben, dadurch ist es einfach, sie auf jedweder heutigen Hosting-Plattform zu installieren, inklusive Self-Hosting zu Hause, auf Shared Servern wie bei [url=https://uberspace.de/]Uberspace[/url], [url=http://mediatemple.com/]Media Temple[/url] und [url=http://www.dreamhost.com/]Dreamhost[/url], oder auf virtuellen und dedizierten Servern, wie es sie zum Beispiel bei [url=https://www.linode.com]Linode[/url], [url=http://greenqloud.com]GreenQloud[/url] oder [url=https://aws.amazon.com]Amazon AWS[/url] gibt.
+
+Mit anderen Worten, die Red-Matrix kann auf jeder Plattform laufen, die einen Web-Server, eine MySQL-kompatible Datenbank und PHP mitbringt.
+
+Dabei bietet Red einige einzigartige Leckerbissen:
+
+[b][color=grey]Ein-Klick-Identifikation:[/color][/b] Du kannst auf andere Server in der Red-Matrix zugreifen, indem Du einfach auf einen Link dorthin klickst. Die Authentifizierung wird ganz einfach automatisch hinter den Kulissen durchgeführt. Vergiss viele verschiedene Usernamen für verschiedene Seiten und die Passwörter dazu – das tut alles die Matrix für Dich.
+
+[b][color=grey]Klone:[/color][/b] Du kannst Deine Online-Identität klonen. Sie ist nicht mehr länger an einen bestimmten Server, eine Domain oder eine IP-Adresse gebunden. Importiere sie einfach auf einem anderen Red-Server (direkt online oder mit Hilfe eines vorher generierten Exports). Wenn Dein primärer Server plötzlich nicht mehr online ist, kein Problem, Deine Kontakte, Posts, Nachrichten und Inhalte sind automagisch weiterhin unter Deiner geklonten Identität verfügbar und zugreifbar.
+
+[b][color=grey]Privatsphäre:[/color][/b] Red-Identitäten (Zot-IDs) können gelöscht, gesichert/heruntergeladen und geklont werden. Du hast volle Kontrolle über Deine Daten. Wenn Du Dich entscheidest, all Deine Daten und Deine Zot-ID zu löschen, musst Du nur auf einen Link klicken, und sie werden sofort von dem Server gelöscht. Keine Fragen, keine Umstände
+
+[url=[baseurl]/help]Zurück zur Hilfe-Startseite[/url]
diff --git a/doc/debian_install.bb b/doc/debian_install.bb
new file mode 100644
index 000000000..b2e74fdde
--- /dev/null
+++ b/doc/debian_install.bb
@@ -0,0 +1,29 @@
+[b]Installing On Debian[/b]
+
+While following the instructions for any other installation will work on Debian, for this platform we also provide an install script which can be [zrl=https://friendicared.net/cloud/docs/debian-setup.sh]downloaded here[/zrl]
+
+[b]THIS SCRIPT IS MEANT TO BE RUN ON A NEW OR JUST REINSTALLED SERVER[/b]
+
+Some programs such as Apache & Samba are removed by this script.
+
+Note, this script will use Nginx as the webserver, and dropbear for ssh. It will also install PHP and MySQL from the DotDeb repository. The DotDeb is not an official Debian repository, though it is maintained by Debian developers.
+
+The file setup-debian.sh has to be on your server.
+
+For the initial setup git may not be installed on your server, to install git:
+
+[code]apt-get install git[/code]
+
+If wget is installed try
+
+[code]wget --no-check-certificate --timestamping [zrl=https://friendicared.net/cloud/docs/setup-debian.sh]https://friendicared.net/cloud/docs/debian-setup.sh[/zrl][/code]
+
+To install wget:
+[code]apt-get install wget[/code]
+
+For intitial server setup run
+[code]bash setup-debian.sh all[/code]
+
+To install Red for domain example.com, after the initial server setup run
+
+[code]bash setup-debian.sh red example.com[/code]
\ No newline at end of file
diff --git a/doc/developer_function_primer.bb b/doc/developer_function_primer.bb
new file mode 100644
index 000000000..8a41c81f4
--- /dev/null
+++ b/doc/developer_function_primer.bb
@@ -0,0 +1,45 @@
+[b]Red development - some useful basic functions[/b]
+
+[b]get_account_id()[/b]
+
+Returns numeric account_id if authenticated or 0. It is possible to be authenticated and not connected to a channel.
+
+[b]local_user()[/b]
+
+Returns authenticated numeric channel_id if authenticated and connected to a channel or 0. Sometimes referred to as $uid in the code.
+
+[b]remote_user()[/b]
+
+Returns authenticated string hash of Red global identifier, if authenticated via remote auth, or an empty string.
+
+[b]get_app()[/b]
+
+Returns the global app structure ($a).
+
+[b]App::get_observer()[/b]
+
+(App:: is usually assigned to the global $a), so $a->get_observer() or get_app()->get_observer() - returns an xchan structure representing the current viewer if authenticated (locally or remotely).
+
+[b]get_config($family,$key), get_pconfig($uid,$family,$key)[/b]
+
+Returns the config setting for $family and $key or false if unset.
+
+[b] set_config($family,$key,$value), set_pconfig($uid,$family,$key,$value)[/b]
+
+Sets the value of config setting for $family and $key to $value. Returns $value. The config versions operate on system-wide settings. The pconfig versions get/set the values for a specific integer uid (channel_id).
+
+[b]dbesc()[/b]
+
+Always escape strings being used in DB queries. This function returns the escaped string. Integer DB parameters should all be proven integers by wrapping with intval()
+
+[b]q($sql,$var1...)[/b]
+
+Perform a DB query with the SQL statement $sql. printf style arguments %s and %d are replaced with variable arguments, which should each be appropriately dbesc() or intval(). SELECT queries return an array of results or false if SQL or DB error. Other queries return true if the command was successful or false if it wasn't.
+
+[b]t($string)[/b]
+
+Returns the translated variant of $string for the current language or $string (default 'en' language) if the language is unrecognised or a translated version of the string does not exist.
+
+[b]x($var), $x($array,$key)[/b]
+
+Shorthand test to see if variable $var is set and is not empty. Tests vary by type. Returns false if $var or $key is not set. If variable is set, returns 1 if has 'non-zero' value, otherwise returns 0. -- e.g. x('') or x(0) returns 0;
\ No newline at end of file
diff --git a/doc/developers.bb b/doc/developers.bb
new file mode 100644
index 000000000..b925d31fb
--- /dev/null
+++ b/doc/developers.bb
@@ -0,0 +1,52 @@
+[b]Red Developer Guide[/b]
+
+[b]Here is how you can join us.[/b]
+
+First, get yourself a working git package on the system where you will be
+doing development.
+
+Create your own github account.
+
+You may fork/clone the Red repository from [url=https://github.com/friendica/red.git]https://github.com/friendica/red.git[/url]
+
+Follow the instructions provided here: [url=http://help.github.com/fork-a-repo/]http://help.github.com/fork-a-repo/[/url]
+to create and use your own tracking fork on github
+
+Then go to your github page and create a "Pull request" when you are ready
+to notify us to merge your work.
+
+[b]Translations[/b]
+
+Our translations are managed through Transifex. If you wish to help out translating the Red Matrix to another language, sign up on transifex.com, visit [url=https://www.transifex.com/projects/p/red-matrix/]https://www.transifex.com/projects/p/red-matrix/[/url] and request to join one of the existing language teams or create a new one. Notify one of the core developers when you have a translation update which requires merging, or ask about merging it yourself if you're comfortable with git and PHP. We have a string file called 'messages.po' which is gettext compliant and a handful of email templates, and from there we automatically generate the application's language files.
+
+[zrl=https://friendicared.net/pages/doc/translations]Translations - More Info[/zrl]
+
+[b]Important[/b]
+
+Please pull in any changes from the project repository and merge them with your work **before** issuing a pull request. We reserve the right to reject any patch which results in a large number of merge conflicts. This is especially true in the case of language translations - where we may not be able to understand the subtle differences between conflicting versions.
+
+Also - **test your changes**. Don't assume that a simple fix won't break something else. If possible get an experienced Red developer to review the code.
+
+Further documentation can be found at the Github wiki pages at: [url=https://github.com/friendica/red/wiki]https://github.com/friendica/red/wiki[/url]
+
+[b]Licensing[/b]
+
+All code contributed to the project falls under the MIT license, unless otherwise specified. We will accept third-party code which falls under MIT, BSD and LGPL, but copyleft licensing (GPL, and AGPL) is only permitted in addons. It must be possible to completely remove the GPL (copyleft) code from the main project without breaking anything.
+
+[b]Coding Style[/b]
+
+In the interests of consistency we adopt the following code styling. We may accept patches using other styles, but where possible please try to provide a consistent code style. We aren't going to argue or debate the merits of this style, and it is irrelevant what project 'xyz' uses. This is not project 'xyz'. This is a baseline to try and keep the code readable now and in the future.
+
+[li] All comments should be in English.[/li]
+
+[li] We use doxygen to generate documentation. This hasn't been consistently applied, but learning it and using it are highly encouraged.[/li]
+
+[li] Indentation is accomplished primarily with tabs using a tab-width of 4.[/li]
+
+[li] String concatenation and operators should be separated by whitespace. e.g. "$foo = $bar . 'abc';" instead of "$foo=$bar.'abc';"[/li]
+
+[li] Generally speaking, we use single quotes for string variables and double quotes for SQL statements. "Here documents" should be avoided. Sometimes using double quoted strings with variable replacement is the most efficient means of creating the string. In most cases, you should be using single quotes.[/li]
+
+[li] Use whitespace liberally to enhance readability. When creating arrays with many elements, we will often set one key/value pair per line, indented from the parent line appropriately. Lining up the assignment operators takes a bit more work, but also increases readability.[/li]
+
+[li] Generally speaking, opening braces go on the same line as the thing which opens the brace. They are the last character on the line. Closing braces are on a line by themselves. [/li]
\ No newline at end of file
diff --git a/doc/external-resource-links.bb b/doc/external-resource-links.bb
new file mode 100644
index 000000000..09ac48a47
--- /dev/null
+++ b/doc/external-resource-links.bb
@@ -0,0 +1,22 @@
+[b]External Resource Links[/b]
+
+[b][color= grey][size=24]External Links[/size][/color][/b]
+[b]Third-Party Themes[/b]
+
+[*][url=https://github.com/beardy-unixer/apw]APW[/url]
+[*][url=https://github.com/omigeot/redstrap3]Redstrap[/url]
+[*][url=https://github.com/23n/Pluto]Pluto[/url]
+[*][url=https://bitbucket.org/tobiasd/red-clean]Clean[/url]
+
+[b]Third-Party Addons[/b]
+[*][url=https://github.com/beardy-unixer/red-addons-extra]BBCode Extensions for Webpages/Wikis[/url]
+[*][url=https://abcentric.net/git/abcjsplugin.git]ABCjs integration - display scores in posts (WIP)[/url]
+
+[b]Related Projects[/b]
+
+[*][url=https://addons.mozilla.org/en-US/firefox/addon/redshare/]Redshare for Firefox[/url]
+[*][url=https://github.com/cvogeley/red-for-android]Red for Android[/url]
+[*][url=https://github.com/zzottel/feed2red]feed2red.pl (posts Atom/RSS feeds to channel)[/url]
+
+[b]Utilities[/b]
+[*][url=https://github.com/beardy-unixer/lowendscript-ng]Debian Install Script[/url]
\ No newline at end of file
diff --git a/doc/extra_features.bb b/doc/extra_features.bb
new file mode 100644
index 000000000..91a16d365
--- /dev/null
+++ b/doc/extra_features.bb
@@ -0,0 +1,103 @@
+[b]Features[/b]
+
+The default interface of the Red Matrix was designed to be uncluttered. There are a huge number of extra features (some of which are extremely useful) which you can turn on and get the most of the application. These are found under the Extra Features link of your Settings page.
+
+[b]Content Expiration[/b]
+
+Remove posts/comments and/or private messages at a future time. An extra button is added to the post editor which asks you for an expiration. Typically this in "yyyy-mm-dd hh:mm" format, but in the English language you have a bit more freedom and can use most any recognisable date reference such as "next Thursday" or "+1 day". At the specified time (give or take approximately ten minutes based on the remote system's checking frequency) the post is removed.
+
+[b]Multiple Profiles[/b]
+
+The ability to create multiple profiles which are visible only to specific persons or groups. Your default profile may be visible to anybody, but secondary profiles can all contain different or additional information and can only be seen by those to whom that profile is assigned.
+
+[b]Web Pages[/b]
+
+Provides the ability to use web page design feaures and create custom webpages from your own content and also to design the pages with page layouts, custom menus, and content blocks.
+
+[b]Private Notes[/b]
+
+On pages where it is available (your matrix page and personal web pages) provide a "widget" to create and store personal reminders and notes.
+
+[b]Enhanced Photo Albums[/b]
+
+Provides a photo album viewer that is a bit prettier than the normal interface.
+
+[b]Extended Identity Sharing[/b]
+
+By default your identity travels with you as you browse the matrix to remote sites - and they know who you are and can show you content that only you can see. With Extended Identity Sharing you can provide this information to any website you visit from within the matrix.
+
+[b]Expert Mode[/b]
+
+This allows you to see some advanced configuration options that would confuse some people or cause support issues. In particular this can give you full control over theme features and colours - so that you can tweak a large number of settings of the display theme to your liking.
+
+[b]Premium Channel[/b]
+
+This allows you to set restrictions and terms on those that connect with your channel. This may be used by celebrities or anybody else who wishes to describe their channel to people who wish to connect with it. In certain cases you may be asked for payment in order to connect.
+
+[b]Richtext Editor[/b]
+
+The status post editor is plaintext, but the matrix allows a wide range of markup using BBcode. The visual editor provides "what you see is what you get" for many of the most frequently used markup tags.
+
+[b]Post Preview[/b]
+
+Allows previewing posts and comments exactly as they would look on the page before publishing them.
+
+[b]Channel Sources[/b]
+
+Automatically import and re-publish channel content from other channels or feeds. This allows you to create sub-channels and super-channels from content provided elsewhere. The rules are that the content must be public, and the channel owner must give you permission to source their channel.
+
+[b]Even More Encryption[/b]
+
+Private messages are encrypted during transport and storage. In this day and age, this encyption may not be enough if your communications are extremely sensitive. This options lets you provide optional encryption of content "end-to-end" with a shared secret key. How the recipient learns the secret key is completely up to you. You can provide a hint such as "the name of aunt Claire's first dog".
+
+[b]Search by Date[/b]
+
+This provides the ability to select posts by date ranges
+
+[b]Collections Filter[/b]
+
+Enable widget to display stream posts only from selected collections. This also toggles the outbound permissions while you are viewing a collection. This is analogous to Google "circles" or Disapora "aspects".
+
+[b]Saved Searches[/b]
+
+Provides a search widget on your matrix page which can save selected search terms for re-use.
+
+[b]Personal Tab[/b]
+
+Enable tab to display only matrix posts that you've interacted with in some way, as an author or a contributor to the conversation.
+
+[b]New Tab[/b]
+
+Enables a tab to display all new matrix activity as a firehose or timeline.
+
+[b]Affinity Tool[/b]
+
+Filter matrix stream activity by the depth of your relationships
+
+[b]Edit Sent Posts[/b]
+
+Edit and correct posts and comments after sending
+
+[b]Tagging[/b]
+
+Ability to tag existing posts, including those written by others.
+
+[b]Post Categories[/b]
+
+Add categories to your channel posts
+
+[b]Saved Folders[/b]
+
+Ability to file posts under folders or tags for later recall
+
+[b]Dislike Posts[/b]
+
+Ability to dislike posts/comments
+
+[b]Star Posts[/b]
+
+Ability to mark special posts with a star indicator
+
+[b]Tag Cloud[/b]
+
+Provide a personal tag cloud on your channel page
\ No newline at end of file
diff --git a/doc/features.bb b/doc/features.bb
new file mode 100644
index 000000000..388f9bc91
--- /dev/null
+++ b/doc/features.bb
@@ -0,0 +1,111 @@
+[b]Features[/b]
+
+[b][color= grey][size=24]Red Matrix Features[/size][/color][/b]
+
+
+The Red Matrix is a general-purpose communication network, with several unique features. It is designed to be used by the widest range of users on the web, from non-technical bloggers, to expert PHP programmers and seasoned systems administrators.
+
+This page lists some of the core features of Red that are bundled with the official. As with any free and open source software, there may be many other extensions, additions, plugins, themes and configurations that are limited only by the needs and imagination of Red's users.
+
+[b][color= grey][size=20]Built for Privacy and Freedom[/size][/color][/b]
+
+One of the design goals of Red is to enable easy communication on the web, while preserving privacy, if so desired by users. To achieve this goal, Red includes a number of features allowing arbitrary levels of privacy:
+
+[b][color= grey]Affinity Slider[/color][/b]
+
+When adding contacts in the Red Matrix, users have the option of assigning affinity levels to the new member in their contact list. For example, when adding someone who happens to be a person who's blog you follow, you could assign their channel an affinity level of "Acquaintances".
+
+[img]https://friendicared.net/photo/b07b0262e3146325508b81a9d1ae4a1e-0.png[/img]
+
+On the other hand, when adding a friend's channel, they could be placed under the affinity level of "Friends".
+
+At this point, Red's [i]Affinity Slider[/i] tool, which usually appears at the top of your "Matrix" page, allows content on your Red account to be displayed by desired affinity levels. By moving the slider to cover all contacts with affinity levels of "Me" to "Friends", only contacts (or channels) that are marked as "Me", "Best Friends", and "Friends" will be displayed on your page. All other channels and contacts, such as the contact added under affinity level "Acquaintances", will not be displayed.
+
+The Affinity Slider allows instantaneous filtering of large amounts of content, grouped by levels of closeness.
+
+[b][color= grey]Access Control Lists[/color][/b]
+
+When sharing content with someone in their contact list, users have the option of restricting who sees the content. By clicking on the padlock underneath the sharing box, one could choose desired recipients of the post, by clicking on their names.
+
+Once sent, the message will be viewable only by the sender and the selected recipients. In other words, the message will not appear on any public walls.
+
+
+[b][color=grey]Private Message Encryption and Privacy Concerns[/color][/b]
+
+In the Red Matrix, public messages are not encrypted prior to leaving the originating server, they are also stored in the database in clear text.
+
+Messages marked [b][color=white]private[/color][/b], however, are encrypted with AES-CBC 256-bit symmetric cipher, which is then protected (encrypted in turn) by public key cryptography, based on 4096-bit RSA keys, associated with the channel that is sending the message.
+
+Each Red channel has it's own unique set of private and associated public RSA 4096-bit keys, generated when the channels is first created.
+
+[b][color= grey]TLS/SSL[/color][/b]
+
+For Red hubs that use TLS/SSL, client to server communications are encrypted via TLS/SSL. Given recent disclosures in the media regarding widespread, global surveillance and encryption circumvention by the NSA and GCHQ, it is reasonable to assume that HTTPS-protected communications may be compromised in various ways.
+
+[b][color= grey]Channel Settings[/color][/b]
+
+In Red, each channel allows fine-grained permissions to be set for various aspects of communication. For example, under the "Security and Privacy Settings" heading, each aspect on the left side of the page, has six (6) possible viewing/access options, that can be selected by clicking on the dropdown menu.
+
+[img]https://friendicared.net/photo/0f5be8da282858edd645b0a1a6626491.png[/img]
+
+The six options are:
+
+ - Nobody except yourself.
+ - Only those you specifically allow.
+ - Anybody in your address book.
+ - Anybody on this website.
+ - Anybody in this network.
+ - Anybody on the Internet.
+
+
+[b][color= grey]Account Cloning[/color][/b]
+
+Accounts in the Red Matrix are called to as [i]nomadic identities[/]. Nomadic, because a user's identity (see What is Zot? for the full explanation) is stuck to the hub where the identity was originally created. For example, when you created your Facebook, or Gmail account, it is tied to those services. They cannot function without Facebook.com or Gmail.com.
+
+By contrast, say you've created a Red identity called [b][color=white]tina@redhub.com[/color][/b]. You can clone it to another Red hub by choosing the same, or a different name: [b][color=white]liveForever@SomeRedMatrixHub.info[/color][/b]
+
+Both channels are now synchronized, which means all your contacts and preferences will be duplicated on your clone. It doesn't matter whether you send a post from your original hub, or the new hub. Posts will be mirrored on both accounts.
+
+This is a rather revolutionary feature, if we consider some scenarios:
+
+ - What happens if the hub where an identity is based, suddenly goes offline? Without cloning, a user will not be able to communicate until that hub comes back online. With cloning, you just log into your cloned account, and life goes on happily ever after.
+
+ - The administrator of your hub can no longer afford to pay for his free and public Red Matrix hub. He announces that the hub will be shutting down in two weeks. This gives you ample time to clone your identity(ies) and preserve your Red relationships, friends and content.
+
+ - What if your identity is subject to government censorship? Your hub provider is compelled to delete your account, along with any identities and associated data. With cloning, the Red Matrix offers [b][color=white]censorship resistance [/color][/b]. You can have hundreds of clones, if you wanted to, all named different, and existing on many different hubs, strewn around the internet.
+
+Red offers interesting new possibilities for privacy. You can read more at the <<Private Communications Best Practices>> page.
+
+Some caveats apply. For a full explanation of identity cloning, read the <HOW TO CLONE MY IDENTITY>.
+
+
+[b][color= grey]Account Backup[/color][/b]
+
+Red offers a simple, one-click account backup, where you can download a complete backup of your profile(s).
+
+Backups can then be used to clone or restore a profile.
+
+[b][color= grey]Account Deletion[/color][/b]
+
+Accounts can be immediately deleted by clicking on a link. That's it. All associated content is immediately deleted from the matrix (this includes posts and any other content produced by the deleted profile).
+
+[b][color=grey][size=20]Content Creation[/size][/color][/b]
+
+[b][color=white]Writing Posts[/color][/b]
+
+Red supports a number of different ways of adding content, from a graphical text editor, to various types of markup and pure HTML.
+
+Red bundles the TinyMCE rich text editor, which can be turned on under "Settings."
+For user who prefer not to use TinyMCE, content can be entered by typing BBCode markup.
+Furthermore, when creating "Websites" or using "Comanche" and its PCL[FINISH], content can be entered in HTML, Markdown and plain text.
+
+[b][color=white]Deletion of content[/color][/b]
+Any content created in the Red Matrix remains under the control of the user (or channel) that originally created. At any time, a user can delete a message, or a range of messages. The deletion process ensures that the content is deleted, regardless of whether it was posted on a channel's primary (home) hub, or on another hub, where the channel was remotely authenticated via Zot.
+
+[b][color=white]Media[/color][/b]
+Similar to any other modern blogging system, social network, or a micro-blogging service, Red supports the uploading of files, embedding of videos, linking web pages.
+
+[b][color=white]Previewing[/color][/b]
+Post can be previewed prior to sending.
+
+Return to the [url=[baseurl]/help/main]Main documentation page[/url]
\ No newline at end of file
diff --git a/doc/git_for_non_developers.bb b/doc/git_for_non_developers.bb
new file mode 100644
index 000000000..e68634da1
--- /dev/null
+++ b/doc/git_for_non_developers.bb
@@ -0,0 +1,46 @@
+[b]Git For Non-Developers[/b]
+
+So you're handling a translation, or you're contributing to a theme, and every time you make a pull request you have to talk to one of the developers before your changes can be merged in?
+
+Chances are, you just haven't found a quick how-to explaining how to keep things in sync on your end. It's really very easy.
+
+After you've created a fork of the repo (just click "fork" at github), you need to clone your own copy.
+
+For the sake of examples, we'll assume you're working on a theme called redexample (which does not exist).
+
+[code]git clone https://github.com/username/red.git[/code]
+
+Once you've done that, cd into the directory, and add an upstream.
+
+[code]
+cd red
+git remote add upstream https://github.com/friendica/red
+[/code]
+
+From now on, you can pull upstream changes with the command
+[code]git fetch upstream[/code]
+
+Before your changes can be merged automatically, you will often need to merge upstream changes.
+
+[code]
+git merge upstream/master
+[/code]
+
+You should always merge upstream before pushing any changes, and [i]must[/i] merge upstream with any pull requests to make them automatically mergeable.
+
+99% of the time, this will all go well. The only time it won't is if somebody else has been editing the same files as you - and often, only if they have been editing the same lines of the same files. If that happens, that would be a good time to request help until you get the hang of handling your own merge conflicts.
+
+Then you just need to add your changes [code]git add view/theme/redexample/[/code]
+
+This will add all the files in view/theme/redexample and any subdirectories. If your particular files are mixed throughout the code, you should add one at a time. Try not to do git add -a, as this will add everything, including temporary files (we mostly, but not always catch those with a .gitignore) and any local changes you have, but did not intend to commit.
+
+Once you have added all the files you have changed, you need to commit them. [code]git commit[/code]
+
+This will open up an editor where you can describe the changes you have made. Save this file, and exit the editor.
+
+Finally, push the changes to your own git
+[code]git push[/code]
+
+And that's it!
+
+Return to the [url=[baseurl]/help/main]Main documentation page[/url]
\ No newline at end of file
diff --git a/doc/html/BS-Default_8php.html b/doc/html/BS-Default_8php.html
new file mode 100644
index 000000000..34f709684
--- /dev/null
+++ b/doc/html/BS-Default_8php.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+The Red Matrix: view/theme/redbasic/schema/BS-Default.php File Reference
+
+
+
+
+
+
+
+
+
+
+
+
+
+
downgrade_accounts() Checks for accounts that have past their expiration date. If the account has a service class which is not the site default, the service class is reset to the site default and expiration reset to never. If the account has no service class it is expired and subsequently disabled. called from include/poller.php as a scheduled task.
+
Reclaiming resources which are no longer within the service class limits is not the job of this function, but this can be implemented by plugin if desired. Default behaviour is to stop allowing additional resources to be consumed.
'zid' string url - url to accept zid string zid - urlencoded zid string result - the return string we calculated, change it if you want to return something else
Returns extended information of a given user, specified by ID or screen name as per the required id parameter. The author's most recent status will be returned inline. http://developer.twitter.com/doc/get/users/show
File/attach API with the potential for revision control.
+
TODO: a filesystem storage abstraction which maintains security (and 'data' contains a system filename which is inaccessible from the web). This could get around PHP storage limits and store videos and larger items, using fread or OS methods or native code to read/write or chunk it through. Also an 'append' option to the storage function might be a useful addition.
+
Function Documentation
@@ -162,6 +177,17 @@ Functions
+
Find an attachment by hash and revision.
+
Returns the entire attach structure including data.
+
This could exhaust memory so most useful only when immediately sending the data.
If $flags is present, check that all the bits in $flags are set so that MENU_SYSTEM|MENU_BOOKMARK will return entries with both bits set. We will use this to find system generated bookmarks.
This is the POST destination for most all locally posted text stuff. This function handles status, wall-to-wall status, local comments, and remote coments that are posted on this site (as opposed to being delivered in a feed). Also processed here are posts and comments coming through the statusnet/twitter API. All of these become an "item" which is our basic unit of information. Posts that originate externally or do not fall into the above posting categories go through item_store() instead of this function.
Is this a reply to something?
-
fix naked links by passing through a callback to see if this is a red site (already known to us) which will get a zrl, otherwise link with url, add bookmark tag to both. First wrap any url which is part of link anchor text already in quotes so we don't double link it. e.g. [url=http://foobar.com]something with http://elsewhere.com in it[/url] becomes [url=http://foobar.com]something with "http://elsewhere.com" in it[/url] otherwise http://elsewhere.com becomes #^[url=http://elsewhere.com]http://elsewhere.com[/url]
+
fix naked links by passing through a callback to see if this is a red site (already known to us) which will get a zrl, otherwise link with url, add bookmark tag to both. First protect any url inside certain bbcode tags so we don't double link it.
When a photo was uploaded into the message using the (profile wall) ajax uploader, The permissions are initially set to disallow anybody but the owner from seeing it. This is because the permissions may not yet have been set for the post. If it's private, the photo permissions should be set appropriately. But we didn't know the final permissions on the post until now. So now we'll look for links of uploaded photos and attachments that are in the post and set them to the same permissions as the post itself.
If the post was end-to-end encrypted we can't find images and attachments in the body, use our media_str input instead which only contains these elements - but only do this when encrypted content exists because the photo/attachment may have been removed from the post and we should keep it private. If it's encrypted we have no way of knowing so we'll set the permissions regardless and realise that the media may not be referenced in the post.
+
What is preventing us from being able to upload photos into comments is dealing with the photo and attachment permissions, since we don't always know who was in the distribution for the top level post.
+
We might be able to provide this functionality with a lot of fiddling:
+
+
if the top level post is public (make the photo public)
+
if the top level post was written by us or a wall post that belongs to us (match the top level post)
+
if the top level post has privacy mentions, add those to the permissions.
+
otherwise disallow the photo or make the photo public. This is the part that gets messy.
red_zrl_callback preg_match function when fixing 'naked' links in mod item.php Check if we've got a hubloc for the site and use a zrl if we do, a url if we don't.
+
red_zrl_callback preg_match function when fixing 'naked' links in mod item.php Check if we've got a hubloc for the site and use a zrl if we do, a url if we don't. Remove any existing zid= param which may have been pasted by mistake - and will have the author's credentials. zid's are dynamic and can't really be passed around like that.
Returns the display name of a given language code. More...
+
-
Function Documentation
+
Detailed Description
+
translation support
+
This file contains functions to work with translations and other language related tasks.
+
Function Documentation
@@ -146,6 +159,18 @@ Functions
+
Takes a string and tries to identify the language.
+
It uses the pear library Text_LanguageDetect and it can identify 52 human languages. It returns the identified languges and a confidence score for each.
+
Strings need to have a min length config['system']['language_detect_min_length'] and you can influence the confidence that must be met before a result will get returned through config['system']['language_detect_min_confidence'].
Returns the best language for which also a translation exists.
+
This function takes the results from get_browser_language() and compares it with the available translations and returns the best fitting language for which there exists a translation.
+
If there is no match fall back to config['system']['language']
Our network is distributed, and as you visit friends some of the sites look exactly the same - it isn't always easy to know where you are. Display the current site location as a navigation aid.
+
Provide a banner/logo/whatever
Display login or logout
"Home" should also take you home from an authenticated remote profile connection
The following nav links are only show to logged in users
if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body ><?php if(x($page
-
+
if (x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
+
Variable Documentation
-
+
-
if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body ><?php if(x($page
+
if(x($page,'htmlhead')) echo $page['htmlhead']?></head >< body >< header ><?php if(x($page
diff --git a/doc/html/php_2default_8php.js b/doc/html/php_2default_8php.js
index 2504be66e..07c9212f9 100644
--- a/doc/html/php_2default_8php.js
+++ b/doc/html/php_2default_8php.js
@@ -1,4 +1,4 @@
var php_2default_8php =
[
- [ "if", "php_2default_8php.html#a23bc1996b18e69c1a3ab44536613a762", null ]
+ [ "if", "php_2default_8php.html#a3987f5547ceb7e36a210a66a06241a5a", null ]
];
\ No newline at end of file
diff --git a/doc/html/php_2theme__init_8php.html b/doc/html/php_2theme__init_8php.html
index 2842fa0b7..70f6bc098 100644
--- a/doc/html/php_2theme__init_8php.html
+++ b/doc/html/php_2theme__init_8php.html
@@ -127,7 +127,7 @@ Variables
Those who require this feature will know what to do with it. Those who don't, won't. Eventually this functionality needs to be provided by a module such that permissions can be enforced. At the moment it's more of a proof of concept; but sufficient for our immediate needs.
This can be called via either GET or POST, use POST for long body content as suhosin often limits GET parameter length
+
f= placeholder, often required title= link text url= URL to bookmark ischat=1 if this bookmark is a chatroom private= Don't share this link remote_return= absolute URL to return after posting is finished
+
+
+
+
+
+
diff --git a/doc/html/rbmark_8php.js b/doc/html/rbmark_8php.js
new file mode 100644
index 000000000..6e2671ea5
--- /dev/null
+++ b/doc/html/rbmark_8php.js
@@ -0,0 +1,5 @@
+var rbmark_8php =
+[
+ [ "rbmark_content", "rbmark_8php.html#a43fec4960b50926251574762cc491f76", null ],
+ [ "rbmark_post", "rbmark_8php.html#ac5a66aa8599fa5dc702bae396d8d1f8c", null ]
+];
\ No newline at end of file
diff --git a/doc/html/redbasic_2php_2style_8php.html b/doc/html/redbasic_2php_2style_8php.html
index 7233c03f7..69bdd895d 100644
--- a/doc/html/redbasic_2php_2style_8php.html
+++ b/doc/html/redbasic_2php_2style_8php.html
@@ -120,7 +120,7 @@ Variables
Authenticated visitor. Unless pre-verified, check that the contact belongs to this $owner_id and load the groups the visitor belongs to. If pre-verified, the caller is expected to have already done this and passed the groups into this function.
Those who require this feature will know what to do with it. Those who don't, won't. Eventually this functionality needs to be provided by a module such that permissions can be enforced. At the moment it's more of a proof of concept; but sufficient for our immediate needs.
+
+
+
+
+
+
diff --git a/doc/html/theme_2apw_2php_2theme__init_8php.js b/doc/html/theme_2apw_2php_2theme__init_8php.js
new file mode 100644
index 000000000..b15dd05db
--- /dev/null
+++ b/doc/html/theme_2apw_2php_2theme__init_8php.js
@@ -0,0 +1,4 @@
+var theme_2apw_2php_2theme__init_8php =
+[
+ [ "$channel", "theme_2apw_2php_2theme__init_8php.html#a54f32c086fe209c99769a4c4047dd864", null ]
+];
\ No newline at end of file
diff --git a/doc/html/theme_2blogga_2php_2default_8php.html b/doc/html/theme_2blogga_2php_2default_8php.html
index 20528d9fe..6dd8dc59f 100644
--- a/doc/html/theme_2blogga_2php_2default_8php.html
+++ b/doc/html/theme_2blogga_2php_2default_8php.html
@@ -116,7 +116,7 @@ Variables
import_xchan($arr,$ud_flags = 1) Takes an associative array of a fetched discovery packet and updates all internal data structures which need to be updated as a result.
+
import_xchan($arr,$ud_flags = UPDATE_FLAGS_UPDATED) Takes an associative array of a fetched discovery packet and updates all internal data structures which need to be updated as a result.
Parameters
array
$arr
=> json_decoded discovery packet
-
int
$ud_flags
Determines whether to create a directory update record if any changes occur, default 1 or true $ud_flags = (-1) indicates a forced refresh where we unconditionally create a directory update record this typically occurs once a month for each channel as part of a scheduled ping to notify the directory that the channel still exists
+
int
$ud_flags
Determines whether to create a directory update record if any changes occur, default is UPDATE_FLAGS_UPDATED (true) $ud_flags = UPDATE_FLAGS_FORCED indicates a forced refresh where we unconditionally create a directory update record this typically occurs once a month for each channel as part of a scheduled ping to notify the directory that the channel still exists
diff --git a/doc/html/zot_8php.js b/doc/html/zot_8php.js
index 00d9e0322..ceb74db4e 100644
--- a/doc/html/zot_8php.js
+++ b/doc/html/zot_8php.js
@@ -6,9 +6,9 @@ var zot_8php =
[ "get_rpost_path", "zot_8php.html#a8e22dbc6f884be3644a892a876cbd972", null ],
[ "import_author_zot", "zot_8php.html#ad149f1e98c0c5b88ff9147e6ee3f330d", null ],
[ "import_directory_keywords", "zot_8php.html#a3bf11286c2619b4ca28e49d5b5ab374a", null ],
- [ "import_directory_profile", "zot_8php.html#aeec89da5b6ff090c63a79de4de884a35", null ],
+ [ "import_directory_profile", "zot_8php.html#a20750dd2c36961013fd382fb34e1366c", null ],
[ "import_site", "zot_8php.html#a2657e141d62d5f67ad3c87651b585299", null ],
- [ "import_xchan", "zot_8php.html#a56f3f65514e4e7f0cd117d01735aebd1", null ],
+ [ "import_xchan", "zot_8php.html#a71d82d0bec204cdf2bd56e4fd0e0ef8a", null ],
[ "process_channel_sync_delivery", "zot_8php.html#ac301c67864917c35922257950ae0f95c", null ],
[ "process_delivery", "zot_8php.html#a37ec13b18057634eadb071f05297f5e1", null ],
[ "process_mail_delivery", "zot_8php.html#aa6ae96db8cbbdbb10e6876d206bbf7cc", null ],
diff --git a/doc/install.bb b/doc/install.bb
new file mode 100644
index 000000000..ef9ed2ca6
--- /dev/null
+++ b/doc/install.bb
@@ -0,0 +1,103 @@
+[b]Red Installation[/b]
+
+Red should run on commodity hosting platforms - such as those used to host Wordpress blogs and Drupal websites. But be aware that Red is more than a simple web application. The kind of functionality offered by Red requires a bit more of the host system than the typical blog. Not every PHP/MySQL hosting provider will be able to support Red. Many will. But **please** review the requirements and confirm these with your hosting provider prior to installation.
+
+Also if you encounter installation issues, please let us know via the Github issue tracker (#^[url=https://github.com/friendica/red/issues]https://github.com/friendica/red/issues[/url]). Please be as clear as you can about your operating environment and provide as much detail as possible about any error messages you may see, so that we can prevent it from happening in the future. Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues.
+
+Before you begin: Choose a domain name or subdomain name for your server.
+
+1. Requirements
+ - Apache with mod-rewrite enabled and "AllowOverride All" so you can use a
+local .htaccess file
+
+ - PHP 5.3 or later
+ - PHP *command line* access with register_argc_argv set to true in the
+php.ini file
+ - curl, gd, mysql, and openssl extensions
+ - some form of email server or email gateway such that PHP mail() works
+ - mcrypt (optional; used for server-to-server message encryption)
+
+ - Mysql 5.x
+
+ - ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks
+(Windows) [Note: other options are presented in Section 7 of this document]
+
+ - Installation into a top-level domain or sub-domain (without a
+directory/path component in the URL) is preferred. Directory paths will
+not be as convenient to use and have not been thoroughly tested.
+
+
+ [Dreamhost.com offers all of the necessary hosting features at a
+reasonable price. If your hosting provider doesn't allow Unix shell access,
+you might have trouble getting everything to work.]
+
+2. Unpack the Red files into the root of your web server document area.
+
+ - If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file. This makes the software much easier to update. The Linux command to clone the repository into a directory "mywebsite" would be
+
+ `git clone #^[url=https://github.com/friendica/red.git]https://github.com/friendica/red.git[/url] mywebsite`
+
+ - and then you can pick up the latest changes at any time with
+
+ `git pull`
+
+ - make sure folder *view/tpl/smarty3* exists and is writable by webserver
+
+ `mkdir view/tpl/smarty3`
+
+ `chmod 777 view/smarty3`
+
+ - For installing addons
+
+ - First you should be **on** your website folder
+
+ `cd mywebsite`
+
+ - Then you should clone the addon repository (separtely)
+
+ `git clone #^[url=https://github.com/friendica/red-addons.git]https://github.com/friendica/red-addons.git[/url] addon`
+
+ - For keeping the addon tree updated, you should be on you addon tree and issue a git pull
+
+ `cd mywebsite/addon`
+
+ `git pull`
+
+ - If you copy the directory tree to your webserver, make sure
+ that you also copy .htaccess - as "dot" files are often hidden
+ and aren't normally copied.
+
+
+3. Create an empty database and note the access details (hostname, username, password, database name).
+
+4. Visit your website with a web browser and follow the instructions. Please note any error messages and correct these before continuing.
+
+5. *If* the automated installation fails for any reason, check the following:
+
+ - ".htconfig.php" exists ... If not, edit htconfig.php and change system settings. Rename
+to .htconfig.php
+ - Database is populated. ... If not, import the contents of "database.sql" with phpmyadmin
+or mysql command line
+
+6. At this point visit your website again, and register your personal account.
+Registration errors should all be recoverable automatically.
+If you get any *critical* failure at this point, it generally indicates the
+database was not installed correctly. You might wish to move/rename
+.htconfig.php to another name and empty (called 'dropping') the database
+tables, so that you can start fresh.
+
+7. Set up a cron job or scheduled task to run the poller once every 15
+minutes in order to perform background processing. Example:
+
+ `cd /base/directory; /path/to/php include/poller.php`
+
+Change "/base/directory", and "/path/to/php" as appropriate for your situation.
+
+If you are using a Linux server, run "crontab -e" and add a line like the
+one shown, substituting for your unique paths and settings:
+
+`*/15 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php`
+
+You can generally find the location of PHP by executing "which php". If you
+have troubles with this section please contact your hosting provider for
+assistance. Red will not work correctly if you cannot perform this step.
\ No newline at end of file
diff --git a/doc/intro_for_developers.bb b/doc/intro_for_developers.bb
new file mode 100644
index 000000000..002088be3
--- /dev/null
+++ b/doc/intro_for_developers.bb
@@ -0,0 +1,99 @@
+[b]Red Developer Guide[/b]
+
+[b]File system layout:[/b]
+
+[addon] optional addons/plugins
+
+[boot.php] Every process uses this to bootstrap the application structure
+
+[doc] Help Files
+
+[images] core required images
+
+[include] The "model" in MVC - (back-end functions), also contains PHP "executables" for background processing
+
+[index.php] The front-end controller for web access
+
+[install] Installation and upgrade files and DB schema
+
+[js] core required javascript
+
+[library] Third party modules (must be license compatible)
+
+[mod] Controller modules based on URL pathname (e.g. #^[url=http://sitename/foo]http://sitename/foo[/url] loads mod/foo.php)
+
+[spec] protocol specifications
+
+[util] translation tools, main English string database and other miscellaneous utilities
+
+[version.inc] contains current version (auto-updated via cron for the master repository and distributed via git)
+
+[view] theming and language files
+
+[view/(css,js,img,php,tpl)] default theme files
+
+[view/(en,it,es ...)] language strings and resources
+
+[view/theme/] individual named themes containing (css,js,img,php,tpl) over-rides
+
+[b]The Database:[/b]
+
+ [li]abook - contact table, replaces Friendica 'contact'[/li]
+ [li]account - service provider account[/li]
+ [li]addon - registered plugins[/li]
+ [li]attach - file attachments[/li]
+ [li]auth_codes - OAuth usage[/li]
+ [li]cache - TBD[/li]
+ [li]challenge - old DFRN structure, may re-use or may deprecate[/li]
+ [li]channel - replaces Friendica 'user'[/li]
+ [li]clients - OAuth usage[/li]
+ [li]config - main configuration storage[/li]
+ [li]event - Events[/li]
+ [li]fcontact - friend suggestion stuff[/li]
+ [li]ffinder - friend suggestion stuff[/li]
+ [li]fserver - obsolete[/li]
+ [li]fsuggest - friend suggestion stuff[/li]
+ [li]gcign - ignored friend suggestions[/li]
+ [li]gcontact - social graph storage, obsolete[/li]
+ [li]glink - social graph storage - obsolete[/li]
+ [li]group - privacy groups[/li]
+ [li]group_member - privacy groups[/li]
+ [li]hook - plugin hook registry[/li]
+ [li]hubloc - Red location storage, ties a location to an xchan[/li]
+ [li]intro - DFRN introductions, may be obsolete[/li]
+ [li]item - posts[/li]
+ [li]item_id - other identifiers on other services for posts[/li]
+ [li]mail - private messages[/li]
+ [li]manage - may be unused in Red, table of accounts that can "su" each other[/li]
+ [li]notify - notifications[/li]
+ [li]notify-threads - need to factor this out and use item thread info on notifications[/li]
+ [li]outq - Red output queue[/li]
+ [li]pconfig - personal (per channel) configuration storage[/li]
+ [li]photo - photo storage[/li]
+ [li]profile - channel profiles[/li]
+ [li]profile_check - DFRN remote auth use, may be obsolete[/li]
+ [li]queue - old Friendica queue, obsolete[/li]
+ [li]register - registrations requiring admin approval[/li]
+ [li]session - web session storage[/li]
+ [li]site - site table to find directory peers[/li]
+ [li]spam - unfinished[/li]
+ [li]term - item taxonomy (categories, tags, etc.) table[/li]
+ [li]tokens - OAuth usage[/li]
+ [li]verify - general purpose verification structure[/li]
+ [li]xchan - replaces 'gcontact', list of known channels in the universe[/li]
+ [li]xlink - "friends of friends" linkages derived from poco[/li]
+ [li]xprof - if this hub is a directory server, contains basic public profile info of everybody in the network[/li]
+ [li]xtag - if this hub is a directory server, contains tags or interests of everybody in the network[/li]
+
+
+[b]How to theme Red - by Olivier Migeot[/b]
+
+This is a short documentation on what I found while trying to modify Red's appearance.
+
+First, you'll need to create a new theme. This is in /view/theme, and I chose to copy 'redbasic' since it's the only available for now. Let's assume I named it .
+
+Oh, and don't forget to rename the _init function in /php/theme.php to be _init() instead of redbasic_init().
+
+At that point, if you need to add javascript or css files, add them to /js or /css, and then "register" them in _init() through head_add_js('file.js') and head_add_css('file.css').
+
+Now you'll probably want to alter a template. These can be found in in /view/tpl OR view//tpl. All you should have to do is copy whatever you want to tweak from the first place to your theme's own tpl directory.
\ No newline at end of file
diff --git a/doc/main.bb b/doc/main.bb
new file mode 100644
index 000000000..634bb524c
--- /dev/null
+++ b/doc/main.bb
@@ -0,0 +1,63 @@
+[b]Red Matrix Documentation and Resources[/b]
+
+[b]Contents[/b]
+
+[zrl=[baseurl]/help/about]What is the Red Matrix?[/zrl]
+[zrl=[baseurl]/help/features]Red Matrix Features[/zrl]
+[zrl=[baseurl]/help/what_is_zot] What is Zot?[/zrl]
+
+[b]Using the Red Matrix[/b]
+
+[zrl=[baseurl]/help/account_basics]Account Basics[/zrl]
+[zrl=[baseurl]/help/profiles]Profiles[/zrl]
+[zrl=[baseurl]/help/channels]Channels[/zrl]
+[zrl=[baseurl]/help/connecting_to_channels]Connecting to Channels[/zrl]
+[zrl=[baseurl]/help/permissions]Permissions[/zrl]
+[zrl=[baseurl]/help/cloud]Cloud Storage[/zrl]
+
+[b]But Wait - There's More. MUCH More...[/b]
+
+[zrl=[baseurl]/help/tags_and_mentions]Tags and Mentions[/zrl]
+[zrl=[baseurl]/help/webpages]Web Pages[/zrl]
+[zrl=[baseurl]/help/remove_account]Remove Account[/zrl]
+[zrl=[baseurl]/help/bbcode]BBcode reference for posts and comments[/zrl]
+[zrl=[baseurl]/help/checking_account_quota_usage]Checking Account Quota Usage[/zrl]
+[zrl=[baseurl]/help/cloud_desktop_clients]Cloud Desktop Clients[/zrl]
+[zrl=[baseurl]/help/AdvancedSearch]Advanced Directory Search[/zrl]
+
+[b]For Hub Administrators[/b]
+
+[zrl=[baseurl]/help/debian_install]Easy Install on Debian via script[/zrl]
+[zrl=[baseurl]/help/red2pi]Installing Red on the Raspberry Pi[/zrl]
+[zrl=[baseurl]/help/problems-following-an-update]Problems Following A Software Update[/zrl]
+[zrl=[baseurl]/help/troubleshooting]Troubleshooting Tips[/zrl]
+
+
+[b]Technical Documentation[/b]
+
+[zrl=[baseurl]/help/install]Install[/zrl]
+[zrl=[baseurl]/help/comanche]Comanche Page Descriptions[/zrl]
+[zrl=[baseurl]/help/Creating-Templates]Creating Comanche Templates[/zrl]
+[zrl=[baseurl]/help/Widgets]Core Widgets[/zrl]
+[zrl=[baseurl]/help/plugins]Plugins[/zrl]
+[zrl=[baseurl]/help/DerivedTheme1]Creating Derivative Themes[/zrl]
+[zrl=[baseurl]/help/schema_development]Schemas[/zrl]
+[zrl=[baseurl]/help/developers]Developers[/zrl]
+[zrl=[baseurl]/help/intro_for_developers]Intro for Developers[/zrl]
+[zrl=[baseurl]/help/api_functions]API functions[/zrl]
+[zrl=[baseurl]/help/developer_function_primer]Red Functions 101[/zrl]
+[zrl=[baseurl]/doc/html/]Code Reference (doxygen generated - sets cookies)[/zrl]
+[zrl=[baseurl]/help/to_do_doco]To-Do list for the Red Documentation Project[/zrl]
+[zrl=[baseurl]/help/to_do_code]To-Do list for Developers[/zrl]
+[zrl=[baseurl]/help/git_for_non_developers]Git for Non-Developers[/zrl]
+
+[b]External Resources[/b]
+
+[zrl=[baseurl]/help/external-resource-links]External Resource Links[/zrl]
+[url=https://github.com/friendica/red]Main Website[/url]
+[url=https://github.com/friendica/red-addons]Addon Website[/url]
+[url=https://zothub.com/channel/one]Development Channel[/url]
+
+[b]About[/b]
+
+[zrl=[baseurl]/siteinfo] Site/Version Info[/zrl]
diff --git a/doc/permissions.bb b/doc/permissions.bb
new file mode 100644
index 000000000..69ee62139
--- /dev/null
+++ b/doc/permissions.bb
@@ -0,0 +1,97 @@
+[b]Permissions[/b]
+
+Permissions in the Red Matrix are more complete than you may be used to. This allows us to define more fine graded relationships than the black and white "this person is my friend, so they can do everything" or "this person is not my friend, so they can't do anything" permissions you may find elsewhere.
+
+[b]Default Permissions[/b]
+
+On your settings page, you will find a list of default permissions. These permissions are automatically applied to everybody unless you specify otherwise. The scope of these permissions varies from "Only me" to "Everybody" - though some scopes may not be available for some permissions. For example, you can't allow "anybody on the internet" to send you private messages, because we'd have no way to identify the sender, therefore no way to reply to them.
+
+The scopes of permissions are:
+
+[li]Nobody Except Yourself. This is self explanatory. Only you will be allowed to use this permission.[/li]
+
+[li]Only those you specifically allow. By default, people you are not connected to, and all new contacts will have this permission denied. You will be able to make exceptions for individual channels on their contact edit screen.[/li]
+
+[li]Anybody in your address book. Anybody you do not know will have this permission denied, but anybody you accept as a contact will have this permission approved. This is the way most legacy platforms handle permissions.[/li]
+
+[li]Anybody On This Website. Anybody using the same website as you will have permission approved. Anybody who registered at a different site will have this permission denied.[/li]
+
+[li]Anybody in this network. Anybody in the Red Matrix will have this permission approved. Even complete strangers. However, anybody not logged in/authenticated will have this permission denied.
+Anybody on the internet. Completely public. This permission will be approved for anybody at all.[/li]
+
+The individual permissions are:
+
+[i]Can view my "public" stream and posts.[/i]
+
+This permision determines who can view your channel "stream" that is, the non-private posts that appear on the "home" tab when you're logged in.
+
+[i]Can view my "public" channel profile.[/i]
+
+This permission determines who can view your channel's profile. This refers to the "about" tab
+
+[i]Can view my "public" photo albums.[/i]
+
+ This permission determines who can view your photo albums. Individual photographs may still be posted to a more private audience.
+
+[i]Can view my "public" address book.[/i]
+
+This permission determines who can view your contacts. These are the connections displayed in the "View connections" section.
+
+[i]Can view my "public" file storage.[/i]
+
+This permission determines who can view your public files. This isn't done yet, so this is placeholder text.
+
+[i]Can view my "public" pages.[/i]
+
+This permission determines who can view your public web pages. This isn't done yet, so this is placeholder text.
+
+[i]Can send me their channel stream and posts.[/i]
+
+This permission determines whose posts you will view. If your channel is a personal channel (ie, you as a person), you would probably want to set this to "anyone in my address book" at a minimum. A personal notes channel would probably want to choose "nobody except myself". Setting this to "Anybody in the network" will show you posts from complete strangers, which is a good form of discovery.
+
+[i]Can post on my channel page ("wall").[/i]
+
+This permission determines who can write to your wall when clicking through to your channel.
+
+[i]Can comment on my posts.[/i]
+
+This permission determines who can comment on posts you create. Normally, you would want this to match your "can view my public pages" permission
+
+[i]Can send me private mail messages.[/i]
+
+This determines who can send you private messages (zotmail).
+
+[i]Can post photos to my photo albums.[/i]
+
+This determines who can post photographs in your albums. This is very useful for forum-like channels where connections may not be connected to each other.
+
+[i]Can forward to all my channel contacts via post tags.[/i]
+
+Using @- mentions will reproduce a copy of your post on the profile specified, as though you posted on the channel wall. This determines if people can post to your channel in this way.
+
+[i]Can chat with me (when available).[/i]
+
+This determines who can join the public chat rooms created by your channel.
+
+[i]Can write to my "public" file storage.[/i]
+
+This determines who can upload files to your public file storage. This isn't done yet, so this is placeholder text.
+
+[i]Can edit my "public" pages.[/i]
+
+This determines who can edit your webpages. This is useful for wikis or sites with multiple editors.
+
+[i]Can administer my channel resources.[/i]
+
+This determines who can have full control of your channel. This should normally be set to "nobody except myself".
+
+[i]Note:[/i]
+Plugins/addons may provide special permission settings, so you may be offered additional permission settings beyond what is described here.
+
+If you have set any of these permissions to "only those I specifically allow", you may specify indivudal permissions on the connnection edit screen.
+
+[b]Affinity[/b]
+
+The connection edit screen offers a slider to select a degree of friendship with the connnection (this tool is enabled through the "Extra Features" tab of your Settings page). Think of this as a measure of how much you like or dislike them. 1 is for people you like, whose posts you want to see all the time. 99 is for people you don't care for, and whose posts you might only wish to look at occasionally. Once you've assigned a value here, you can use the affinity tool on the matrix page to filter content based on this number.
+
+The slider on the matrix page has both a minimum and maximum value. Posts will only be shown from people who fall between this range. Affinity has no relation to permissions, and is only useful in conjunction with the affinity tool feature.
\ No newline at end of file
diff --git a/doc/plugins.bb b/doc/plugins.bb
new file mode 100644
index 000000000..2440de762
--- /dev/null
+++ b/doc/plugins.bb
@@ -0,0 +1,257 @@
+[b]Plugins[/b]
+
+So you want to make the Red Matrix do something it doesn't already do. There are lots of ways. But let's learn how to write a plugin or addon.
+
+
+In your Red Matrix folder/directory, you will probably see a sub-directory called 'addon'. If you don't have one already, go ahead and create it.
+[code]
+ mkdir addon
+[/code]
+Then figure out a name for your addon. You probably have at least a vague idea of what you want it to do. For our example I'm going to create a plugin called 'randplace' that provides a somewhat random location for each of your posts. The name of your plugin is used to find the functions we need to access and is part of the function names, so to be safe, use only simple text characters.
+
+Once you've chosen a name, create a directory beneath 'addon' to hold your working file or files.
+[code]
+ mkdir addon/randplace
+[/code]
+Now create your plugin file. It needs to have the same name, and it's a PHP script, so using your favourite editor, create the file
+[code]
+ addon/randplace/randplace.php
+[/code]
+The very first line of this file needs to be
+[code]
+ <?php
+[/code]
+Then we're going to create a comment block to describe the plugin. There's a special format for this. We use /* ... */ comment-style and some tagged lines consisting of
+[code]
+ /**
+ *
+ * Name: Random Place (here you can use better descriptions than you could in the filename)
+ * Description: Sample Red Matrix plugin, Sets a random place when posting.
+ * Version: 1.0
+ * Author: Mike Macgirvin <mike@zothub.com>
+ *
+ */
+[/code]
+These tags will be seen by the site administrator when he/she installs or manages plugins from the admin panel. There can be more than one author. Just add another line starting with 'Author:'.
+
+The typical plugin will have at least the following functions:
+[code]
+ pluginname_load()
+ pluginname_unload()
+[/code]
+In our case, we'll call them randplace_load() and randplace_unload(), as that is the name of our plugin. These functions are called whenever we wish to either initialise the plugin or remove it from the current webpage. Also if your plugin requires things like altering the database schema before it can run for the very first time, you would likely place these instructions in the functions named
+[code]
+ pluginname_install()
+ pluginname_uninstall()
+[/code]
+
+Next we'll talk about **hooks**. Hooks are places in the Red Matrix code where we allow plugins to do stuff. There are a [lot of these](help/Hooks), and they each have a name. What we normally do is use the pluginname_load() function to register a "handler function" for any hooks you are interested in. Then when any of these hooks are triggered, your code will be called.
+
+We register hook handlers with the 'register_hook()' function. It takes 3 arguments. The first is the hook we wish to catch, the second is the filename of the file to find our handler function (relative to the base of your Red Matrix installation), and the third is the function name of your handler function. So let's create our randplace_load() function right now.
+
+[code]
+ function randplace_load() {
+ register_hook('post_local', 'addon/randplace/randplace.php', 'randplace_post_hook');
+
+ register_hook('feature_settings', 'addon/randplace/randplace.php', 'randplace_settings');
+ register_hook('feature_settings_post', 'addon/randplace/randplace.php', 'randplace_settings_post');
+
+ }
+[/code]
+
+So we're going to catch three events, 'post_local' which is triggered when a post is made on the local system, 'feature_settings' to set some preferences for our plugin, and 'feature_settings_post' to store those settings.
+
+Next we'll create an unload function. This is easy, as it just unregisters our hooks. It takes exactly the same arguments.
+[code]
+ function randplace_unload() {
+ unregister_hook('post_local', 'addon/randplace/randplace.php', 'randplace_post_hook');
+
+ unregister_hook('feature_settings', 'addon/randplace/randplace.php', 'randplace_settings');
+ unregister_hook('feature_settings_post', 'addon/randplace/randplace.php', 'randplace_settings_post');
+
+ }
+[/code]
+
+Hooks are called with two arguments. The first is always $a, which is our global App structure and contains a huge amount of information about the state of the web request we are processing; as well as who the viewer is, and what our login state is, and the current contents of the web page we're probably constructing.
+
+The second argument is specific to the hook you're calling. It contains information relevant to that particular place in the program, and often allows you to look at, and even change it. In order to change it, you need to add '&' to the variable name so it is passed to your function by reference. Otherwise it will create a copy and any changes you make will be lost when the hook process returns. Usually (but not always) the second argument is a named array of data structures. Please see the "hook reference" (not yet written as of this date) for details on any specific hook. Occasionally you may need to view the program source to see precisely how a given hook is called and how the results are processed.
+
+Let's go ahead and add some code to implement our post_local hook handler.
+[code]
+ function randplace_post_hook($a, &$item) {
+
+ /**
+ *
+ * An item was posted on the local system.
+ * We are going to look for specific items:
+ * - A status post by a profile owner
+ * - The profile owner must have allowed our plugin
+ *
+ */
+
+ logger('randplace invoked');
+
+ if(! local_user()) /* non-zero if this is a logged in user of this system */
+ return;
+
+ if(local_user() != $item['uid']) /* Does this person own the post? */
+ return;
+
+ if(($item['parent']) || ($item['item_restrict'])) {
+ /* If the item has a parent, or item_restrict is non-zero, this is a comment or something else, not a status post. */
+ return;
+ }
+
+ /* Retrieve our personal config setting */
+
+ $active = get_pconfig(local_user(), 'randplace', 'enable');
+
+ if(! $active)
+ return;
+ /**
+ *
+ * OK, we're allowed to do our stuff.
+ * Here's what we are going to do:
+ * load the list of timezone names, and use that to generate a list of world cities.
+ * Then we'll pick one of those at random and put it in the "location" field for the post.
+ *
+ */
+
+ $cities = array();
+ $zones = timezone_identifiers_list();
+ foreach($zones as $zone) {
+ if((strpos($zone,'/')) && (! stristr($zone,'US/')) && (! stristr($zone,'Etc/')))
+ $cities[] = str_replace('_', ' ',substr($zone,strpos($zone,'/') + 1));
+ }
+
+ if(! count($cities))
+ return;
+ $city = array_rand($cities,1);
+ $item['location'] = $cities[$city];
+
+ return;
+ }
+[/code]
+
+Now let's add our functions to create and store preference settings.
+[code]
+ /**
+ *
+ * Callback from the settings post function.
+ * $post contains the global $_POST array.
+ * We will make sure we've got a valid user account
+ * and that only our own submit button was clicked
+ * and if so set our configuration setting for this person.
+ *
+ */
+
+ function randplace_settings_post($a,$post) {
+ if(! local_user())
+ return;
+ if($_POST['randplace-submit'])
+ set_pconfig(local_user(),'randplace','enable',intval($_POST['randplace']));
+ }
+
+
+
+ /**
+ *
+ * Called from the Feature Setting form.
+ * The second argument is a string in this case, the HTML content region of the page.
+ * Add our own settings info to the string.
+ *
+ * For uniformity of settings pages, we use the following convention
+ * <div class="settings-block">
+ * <h3>title</h3>
+ * .... settings html - many elements will be floated...
+ * <div class="clear"></div> <!-- generic class which clears all floats -->
+ * <input type="submit" name="pluginnname-submit" class="settings-submit" ..... />
+ * </div>
+ */
+
+
+
+ function randplace_settings(&$a,&$s) {
+
+ if(! local_user())
+ return;
+
+ /* Add our stylesheet to the page so we can make our settings look nice */
+
+ head_add_css(/addon/randplace/randplace.css');
+
+ /* Get the current state of our config variable */
+
+ $enabled = get_pconfig(local_user(),'randplace','enable');
+
+ $checked = (($enabled) ? ' checked="checked" ' : '');
+
+ /* Add some HTML to the existing form */
+
+ $s .= '<div class="settings-block">';
+ $s .= '<h3>' . t('Randplace Settings') . '</h3>';
+ $s .= '<div id="randplace-enable-wrapper">';
+ $s .= '<label id="randplace-enable-label" for="randplace-checkbox">' . t('Enable Randplace Plugin') . '</label>';
+ $s .= '<input id="randplace-checkbox" type="checkbox" name="randplace" value="1" ' . $checked . '/>';
+ $s .= '</div><div class="clear"></div>';
+
+ /* provide a submit button */
+
+ $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="randplace-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
+
+ }
+
+[/code]
+
+
+
+***Advanced Plugins***
+
+Sometimes your plugins want to provide a range of new functionality which isn't provided at all or is clumsy to provide using hooks. In this case your plugin can also act as a 'module'. A module in our case refers to a structured webpage handler which responds to a given URL. Then anything which accesses that URL will be handled completely by your plugin.
+
+The key to this is to create a simple function named pluginname_module() which does nothing.
+[code]
+ function randplace_module() { return; }
+[/code]
+Once this function exists, the URL #^[url=https://yoursite/randplace]https://yoursite/randplace[/url] will access your plugin as a module. Then you can define functions which are called at various points to build a webpage just like the modules in the mod/ directory. The typical functions and the order which they are called is
+[code]
+ modulename_init($a) // (e.g. randplace_init($a);) called first - if you wish to emit json or xml,
+ // you should do it here, followed by killme() which will avoid the default action of building a webpage
+ modulename_aside($a) // Often used to create sidebar content
+ modulename_post($a) // Called whenever the page is accessed via the "post" method
+ modulename_content($a) // called to generate the central page content. This function should return a string
+ // consisting of the central page content.
+[/code]
+Your module functions have access to the URL path as if they were standalone programs in the Unix operating system. For instance if you visit the page
+[code]
+ https://yoursite/randplace/something/somewhere/whatever
+[/code]
+we will create an argc/argv list for use by your module functions
+[code]
+ $x = argc(); $x will be 4, the number of path arguments after the sitename
+
+ for($x = 0; $x < argc(); $x ++)
+ echo $x . ' ' . argv($x);
+
+
+ 0 randplace
+ 1 something
+ 2 somewhere
+ 3 whatever
+[/code]
+
+***Porting Friendica Plugins***
+
+The Red Matrix uses a similar plugin architecture to the Friendica project. The authentication, identity, and permissions systems are completely different. Many Friendica can be ported reasonably easily by renaming a few functions - and then ensuring that the permissions model is adhered to. The functions which need to be renamed are:
+
+[li] Friendica's pluginname_install() is pluginname_load()[/li]
+
+[li] Friendica's pluginname_uninstall() is pluginname_unload()[/li]
+
+The Red Matrix has _install and _uninstall functions but these are used differently.
+
+[li] Friendica's "plugin_settings" hook is called "feature_settings"[/li]
+
+[li] Friendica's "plugin_settings_post" hook is called "feature_settings_post"[/li]
+
+Changing these will often allow your plugin to function, but please double check all your permission and identity code because the concepts behind it are completely different in the Red Matrix. Many structured data names (especially DB schema columns) are also quite different.
\ No newline at end of file
diff --git a/doc/problems-following-an-update.bb b/doc/problems-following-an-update.bb
new file mode 100644
index 000000000..bb2e07a07
--- /dev/null
+++ b/doc/problems-following-an-update.bb
@@ -0,0 +1,37 @@
+[b]Problems Following An Update[/b]
+
+A good 90% of all bugs encountered immediately after updating the code to the latest version are simple cache errors of one sort or another. If you update and find something very obvious is broken - like your matrix page doesn't load, notifications are missing, or comment boxes are missing - the chances are it's not a bug at all. Breaking basic functionality is the kind of thing developers tend to notice.
+
+If this happens to you, there are a few simple steps to take before resorting to the support forums:
+
+[b]Browser Cache[/b]
+
+Symptoms: Menus do not expand, ACL selector does not open, progress indicator does not display (or loops forever), Matrix and channel pages do not load.
+
+Force reload the page. Shift reload, or ctrl+f5. Occasionally, but very, very rarely, you will also need to clear the session data - which is achieved by restarting the browser.
+
+[b]FastCGI[/b]
+
+Symptoms: Incorrect variables. The basic UI mostly works, but displays incorrect content or is missing content entirely.
+
+If you're using php5-fpm, this problem is usually resolved with [code]service php5-fpm restart[/code]
+
+[b]Smarty Cache[/b]
+
+Symptoms:
+
+1) [zrl=https://beardyunixer.com/page/jargon/wsod]White Screen Of Death[/zrl]. This is most prevalent on the settings and admin pages.
+
+2) Missing icons, tabs, menus or features.
+
+We use the Smarty3 template engine to generate pages. These templates are compiled before they are displayed. Occasionally, a new or modified template will fail to overwrite the old compiled version. To clear the Smarty cache, delete all the files in view/tpl/smarty3/compiled [b]but do not delete the directory itself[/b]. Templates will then be recompiled on their next access.
+
+[b]Theme Issues[/b]
+
+There are many themes for The Red Matrix. Only Redbasic is officialy supported by the core developers. This applies [i]even if a core developer happens to support an additional theme[/i]. This means new features are only guaranteed to work in Redbasic.
+
+Redbasic uses a few javascript libraries that are done differently, or entirely absent in other themes. This means new features may only work properly in Redbasic. Before reporting an issue, therefore, you should switch to Redbasic to see if it exists there. If the issue goes away, this is not a bug - it's a theme that isn't up to date.
+
+Should you report an issue with the theme developers then? No. Theme developers use their themes. Chances are, they know. Give them two or three days to catch up and [i]then[/i] report the issue if it's still not fixed. There are two workarounds for this situation. Firstly, you can temporarily use Redbasic. Secondly, most themes are open source too - open a pull request and make yourself a friend.
+
+Return to the [url=[baseurl]/help/troubleshooting]Troubleshooting documentation page[/url]
\ No newline at end of file
diff --git a/doc/profiles.bb b/doc/profiles.bb
new file mode 100644
index 000000000..e45c25ccb
--- /dev/null
+++ b/doc/profiles.bb
@@ -0,0 +1,33 @@
+[b]Profiles[/b]
+
+Red has unlimited profiles. You may use different profiles to show different "sides of yourself" to different audiences. This is different to having different channels. Different channels allow for completely different sets of information. You may have a channel for yourself, a channel for your sports team, a channel for your website, or whatever else. A profile allows for finely graded "sides" of each channel. For example, your default public profile might say "Hello, I'm Fred, and I like laughing". You may show your close friends a profile that adds "and I also enjoy dwarf tossing".
+
+You always have a profile known as your "default" or "public" profile. This profile is always available to the general public and cannot be hidden (there may be rare exceptions on privately run or disconnected sites). You may, and probably should restrict the information you make available on your public profile.
+
+That said, if you want other friends to be able to find you, it helps to have the following information in your public profile...
+
+[ul][*]Your real name or at least a nickname everybody knows
+[*]A photo of you
+[*]Your location on the planet, at least to a country level.[/ul]
+
+Without this basic information, you could get very lonely here. Most people (even your best friends) will not try and connect with somebody that has a fake name or doesn't contain a real photo.
+
+In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some "Keywords" to your profile. Such as "music, linux, photography" or whatever. You can add as many keywords as you like.
+
+To create an alternate profile, first go to [zrl=[baseurl]/settings/features]Settings > Additional Features[/zrl] and enable "Multiple Profiles" there, otherwise you won't have the ability to use more than just your default profile.
+
+Then select "Edit Profiles" from the menu of your Red Matrix site. You may edit an existing profile, change the profile photo, add things to a profile or create a new profile. You may also create a "clone" of an existing profile if you only wish to change a few items but don't wish to enter all the information again. To do that, click on the profile you want to clone and choose "Clone this profile" there.
+
+In the list of your profiles, you can also choose the contacts who can see a specific profile. Just click on "Edit visibility" next to the profile in question (only available for the profiles that are not your default profile) and then click on user images to add them to or remove them from the group of people who can see this profile.
+
+Once a profile has been selected, when the person views your profile, they will see the private profile you have assigned. If they are not authenticated, they will see your public profile.
+
+There is a setting which allows you to publish your profile to a directory and ensure that it can be found by others. You can change this setting on the "Settings" page.
+
+If you do not wish to be found be people unless you give them your channel address, you may leave your profile unpublished.
+
+[b]Keywords and Directory Search[/b]
+
+On the directory page, you may search for people with published profiles. Currently, only the name field and the keywords are searched. You may also include such keywords in your default profile - which may be used to search for common interests with other members. Keywords are used in the channel suggestion tool and although they aren't visible in the directory, they are shown if people visit your profile page.
+
+On your Connnections page and in the directory there is a link to "Suggestions" or "Channel Suggestions", respectively. This will find channels who have matching and/or similar keywords. The more keywords you provide, the more relevant the search results that are returned. These are sorted by relevance.
\ No newline at end of file
diff --git a/doc/red2pi.bb b/doc/red2pi.bb
new file mode 100644
index 000000000..2abba8ec5
--- /dev/null
+++ b/doc/red2pi.bb
@@ -0,0 +1,349 @@
+[b]How to install the Red Matrix on a Raspberry Pi[/b]
+
+[zrl=[baseurl]/help/main] Back to the main page[/zrl]
+Last update 2014-02-22
+[hr]
+
+You just bought a Raspberry Pi and want to run the RED Matrix with your own domain name?
+
+Then this page is for you! You will:
+[list=1]
+[*] Install Raspberry OS (Debian Linux) on a Raspberry
+[*] Install Apache Web Server, PHP, MaySQL, phpMyAdmin
+[*] Register a free domain (dynamic DNS) and use it for your RED hub
+[*] Install the RED Matrix
+[*] Keep your Raspberry Pi and your Redmatrix up-to-date
+[*] TODO Running Friendica with SSL
+[*] TODO Make the webserver less vulnarable to attacks
+[/list]
+
+[size=large]1. Install Raspberry OS (Debian Linux)[/size]
+
+instructions under #^[url=http://www.raspberrypi.org/downloads]http://www.raspberrypi.org/downloads[/url]
+This page links to the quick start containing detailed instruction.
+
+[b]Format SD card[/b]
+
+using the programm gparted under Linux Mint 15
+
+format as FAT32
+
+[b]Download NOOBS (offline and network install)[/b]
+
+#^[url=http://downloads.raspberrypi.org/noobs]http://downloads.raspberrypi.org/noobs[/url]
+
+unzip
+
+copy unzipped files to SD card
+
+[b]Install Raspbian as OS on the Rasperry Pi[/b]
+
+connect with keyboard via USB
+
+connect with monitor via HDMI
+
+Insert SD card into Rasperry Pi
+
+Connect with power supply to switch on the Rasperry
+
+choose Raspbian as OS (> installs Raspbian....)
+
+wait for the coniguration program raspi-config (you can later start it by sudo raspi-config)
+
+[b]Configure Raspbian[/b]
+
+in raspi-config > advanced > choose to use ssh (!! You need this to connect to administrate your Pi from your PC !!)
+
+in raspi-config > change the password (of default user "pi" from "raspberry" to your password)
+
+in raspi-config (optional) > Internationalisation options > Change Locale > to de_DE.utf-8 utf-8 (for example)
+
+in raspi-config (optional) > Internationalisation options > Change Timezoe > set your timezone
+
+in raspi-config (optional) > Overlock > medium
+
+(Source #^[url=http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#]http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#[/url])
+
+
+[b]More[/b]
+
+[code]sudo reboot[/code]
+
+Now its time to connect the Pi to the network.
+[ul]
+[*] pull out keyboard
+[*] pull out monitor
+[*] you even can pull out the power supply (USB)
+[*] plug-in the network cable to the router
+[*] plug-in the power supply again
+[*] wait for a minute or to give the Pi time to boot and start ssh...
+[/ul]
+
+On your PC connect to the Pi to administrate (here update it).
+Open the console on the PC (Window: Start > cmd, Linux: Shell)
+
+Hint: use the router admin tool to find out the IP of your PI[code]ssh pi@192.168.178.37
+sudo apt-get update
+sudo apt-get dist-upgrade[/code]
+
+(Source #^[url=http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#]http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#[/url])
+
+
+
+[size=large]2. Install Apache Web Server, PHP, MaySQL, phpMyAdmin[/size]
+
+[b]Install Apache Webserver[/b]
+
+[code]sudo bash
+sudo groupadd www-data[/code] might exist already
+
+[code]sudo usermod -a -G www-data www-data
+sudo apt-get update
+sudo reboot[/code]
+
+wait...
+reconnect via ssh, example: [code]ssh pi@192.168.178.37
+sudo apt-get install apache2 apache2-doc apache2-utils[/code]
+
+Open webbrowser on PC and check #^[url=http://192.168.178.37]http://192.168.178.37[/url]
+Should show you a page like "It works"
+
+(Source #^[url=http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#]http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#[/url])
+
+
+[b]Install PHP, MaySQL, phpMyAdmin[/b]
+
+[code]sudo bash
+apt-get install libapache2-mod-php5 php5 php-pear php5-xcache php5-curl
+apt-get install php5-mysql
+apt-get install mysql-server mysql-client[/code] enter and note the mysql passwort
+
+[code]apt-get install phpmyadmin[/code]
+
+Configuring phpmyadmin
+- Select apache2
+- Configure database for phpmyadmin with dbconfig-common?: Choose Yes
+
+(Source #^[url=http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#]http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#[/url])
+
+
+[b]Test installation[/b]
+
+[code]cd /var/www[/code]
+
+create a php file to test the php installation[code]sudo nano phpinfo.php[/code]
+
+Insert into the file:[code]
+<?php
+ phpinfo();
+?>
+[/code]
+(save CTRL+0, ENTER, CTRL+X)
+
+open webbrowser on PC and try #^[url=http://192.168.178.37/phpinfo.php]http://192.168.178.37/phpinfo.php[/url] (page shows infos on php)
+
+connect phpMyAdmin with MySQL database [code]nano /etc/apache2/apache2.conf[/code]
+- CTRL+V... to the end of the file
+- Insert at the end of the file: (save CTRL+0, ENTER, CTRL+X)[code]Include /etc/phpmyadmin/apache.conf[/code]
+
+restart apache[code]/etc/init.d/apache2 restart
+sudo apt-get update
+sudo apt-get upgrade
+sudo reboot[/code]
+
+(Source #^[url=http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#]http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#[/url])
+
+
+[b]phpMyAdmin[/b]
+
+open webbrowser on PC and try #^[url=http://192.168.178.37/phpmyadmin]http://192.168.178.37/phpmyadmin[/url]
+
+(Source #^[url=http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#]http://www.manfred-steger.de/tuts/20-der-eigene-webserver-mit-dem-raspberry-pi#[/url])
+
+
+[b]Create an empty database... that is later used by RED[/b]
+
+open webbrowser on PC and try #^[url=http://192.168.178.37/phpmyadmin]http://192.168.178.37/phpmyadmin[/url]
+
+Create an empty database
+
+Note the access details (hostname, username, password, database name).
+
+
+[size=large]3. Selfhost[/size]
+
+(Source: #^[url=http://www.techjawab.com/2013/06/setup-dynamic-dns-dyndns-for-free-on.html]http://www.techjawab.com/2013/06/setup-dynamic-dns-dyndns-for-free-on.html[/url])
+
+#^[url=http://freedns.afraid.org/signup/]http://freedns.afraid.org/signup/[/url]
+
+[b]Step 1[/b]
+Register for a Free domain at #^[url=http://freedns.afraid.org/signup/]http://freedns.afraid.org/signup/[/url]
+(We will take techhome.homenet.org in this guide)
+
+[b]Step 2[/b]
+
+Logon to FreeDNS (where you just registered) and goto #^[url=http://freedns.afraid.org/dynamic/]http://freedns.afraid.org/dynamic/[/url]
+Right click on "Direct Link" and copy the URL and paste it somewhere.
+You should notice a large and unique alpha-numeric key in the URL, make a note of it as shown below:
+[code]http://freedns.afraid.org/dynamic/update.php?alphanumeric-key[/code]
+
+
+[b]Step 3[/b]
+Install inadyn using the following command:[code]sudo apt-get install inadyn[/code]
+
+[b]Step 4[/b]
+Configure inadyn using the below steps:[code]sudo nano /etc/inadyn.conf[/code]
+And add the following contains in it replacing the actual values:
+[code]
+--username [color=red]techhome[/color]
+--password [color=red]mypassword[/color]
+--update_period 3600
+--forced_update_period 14400
+--alias [color=red]techhome.homenet.org</b>,[color=red]alphanumeric key[/color]
+--background
+--dyndns_system default@freedns.afraid.org
+--syslog
+[/code]
+
+
+[b]Step 5[/b]
+
+Now, we need to ensure that the DNS updater (Inadyn) runs automatically after every re-boot[code]export EDITOR=gedit && sudo crontab -e[/code]
+Add the following line:[code]@reboot /usr/sbin/inadyn[/code]
+
+
+[b]Step 6[/b]
+
+Reboot system and then run the following command to ensure inadyn is running:[code]
+sudo reboot
+ps -A | grep inadyn
+[/code]
+Now your host is ready and up for accessing from internet...
+You can trying ssh-ing from another computer over the internet
+[code]ssh username@techhome.homenet.org[/code]
+Or, if any web server is running, then simply browse to #^[url=http://techhome.homenet.org]http://techhome.homenet.org[/url]
+Or, you can just ping it to test ping techhome.homenet.org
+To check the logs you can use this:
+[code]more /var/log/messages |grep INADYN[/code]
+
+
+[size=large]4. Install RED [/size]
+
+(Source: #^[zrl=https://friendicared.net/help/Install]https://friendicared.net/help/Install[/zrl])
+
+Linux Appache document root is /var/www/
+Two files exist there (created by the steps above): index.html, phpinfo.php
+
+
+[b]Install RED and its Addons[/b]
+
+Cleanup: Remove the directory www/ (Git will not create files and folders in directories that are not empty.) Make sure you are in directory var[code]pi@pi /var $ cd /var[/code]
+
+Remove directory[code]pi@pi /var $ sudo rm -rf www/[/code]
+
+Download the sources of RED from GIT
+[code]pi@pi /var $ sudo git clone https://github.com/friendica/red.git www[/code]
+
+Download the sources of the addons from GIT
+[code]pi@pi /var/www $ sudo git clone https://github.com/friendica/red-addons.git addon[/code]
+
+Make user www-data the owner of the whole red directory (including subdirectories and files)
+(TODO: This step has to be proofed by the next installation.)
+[code]pi@pi /var $ chown -R www-data:www-data /var/www/[/code]
+
+Check if you can update the sources from git[code]
+pi@pi /var $ cd www
+pi@pi /var/www $ git pull
+[/code]
+
+Check if you can update the addons
+[code]pi@pi /var/www $ cd addon/
+pi@pi /var/www/addon $ sudo git pull[/code]
+
+Make sure folder view/tpl/smarty3 exists and is writable by the webserver
+[code]pi@pi /var/www $ sudo chmod ou+w view/tpl/smarty3/[/code]
+
+Create .htconfig.php and is writable by the webserver
+[code]pi@pi /var/www $ sudo touch .htconfig.php
+pi@pi /var/www $ sudo chmod ou+w .htconfig.php[/code]
+
+Prevent search engines from indexing your site. Why? This can fill up your database.
+(Source: [url=http://wiki.pixelbits.de/redmatrix]Pixelbits[/url] )
+[code]pi@pi /var/www $ sudo touch robots.txt[/code]
+Open the file.
+[code]pi@pi /var/www $ sudo nano robots.txt[/code]
+Paste this text and save.
+[code]
+# Prevent search engines to index this site
+ User-agent: *
+ Disallow: /search
+[/code]
+
+
+[b]First start and initial configuration of your RED Matrix hub[/b]
+
+In browser open #^[zrl=http://einervonvielen.mooo.com/]http://einervonvielen.mooo.com/[/zrl]
+(Replace einervonvielen.mooo.com by your domain, see chapter selfhost. Be patient. It takes time.)
+(#^[zrl=http://einervonvielen.mooo.com/index.php?q=setup]http://einervonvielen.mooo.com/index.php?q=setup[/zrl])
+
+There might be errors like the following.
+
+Error: libCURL PHP module required but not installed.
+Solution:
+apt-get install php5-curl
+
+Error: Apache webserver mod-rewrite module is required but not installed.
+Solution
+(Source: #^[url=http://xmodulo.com/2013/01/how-to-enable-mod_rewrite-in-apache2-on-debian-ubuntu.html]http://xmodulo.com/2013/01/how-to-enable-mod_rewrite-in-apache2-on-debian-ubuntu.html[/url])
+The default installation of Apache2 comes with mod_rewrite installed. To check whether this is the case, verify the existence of /etc/apache2/mods-available/rewrite.load
+- pi@pi /var/www $ nano /etc/apache2/mods-available/rewrite.load
+ (You should find the contendt: LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so)
+To enable and load mod_rewrite, do the rest of steps.
+Create a symbolic link in /etc/apache2/mods-enabled
+- pi@pi /var/www $ sudo a2enmod rewrite
+Then open up the following file, and replace every occurrence of "AllowOverride None" with "AllowOverride all".
+- pi@pi /var/www $ sudo nano /etc/apache2/sites-available/default
+Finally, restart Apache2.
+- pi@pi /var/www $ sudo service apache2 restart
+
+Error store is writable (not checked)
+Solution:
+(TODO: Make writeable to group www-data only?)
+pi@pi /var/www $ sudo mkdir store
+pi@pi /var/www $ chown -R www-data:www-data /var/www/red/
+pi@pi /var/www $ sudo chmod ou+w view
+
+[b]More[/b]
+
+Set up a cron job to run the poller once every 15 minutes in order to perform background processing.
+- pi@pi /var/www $ which php
+Make sure you are in the document root directory of the webserver
+- pi@pi /var/www $ cd /var/www/
+Try to execute the poller in oder to make sure it works
+- pi@pi /var/www $ /usr/bin/php include/poller.php
+Create the cronjob
+- pi@pi /var/www $ crontab -e
+Enter
+- */15 * * * * cd /var/www/; /usr/bin/php include/poller.php
+- Save and exit.
+
+
+[size=large]5. Keep your Raspberry Pi and your Redmatrix up-to-date[/size]
+
+Git update of RED every day at 4 am and addons at 5 am every day
+Try if the command is working
+- pi@pi /var/www $ sudo git pull
+Create the cronjob
+- pi@pi /var/www $ crontab -e
+Enter the following to update RED at 4:01 am every day
+- 01 04 * * * cd /var/www/; sudo git pull
+Enter the following to update the addons at 5:01 am every day
+- 01 05 * * * cd /var/www/addon/; sudo git pull
+Enter the following to update the Raspberry Pi (Raspbian OS = Debian) at 6:01 am every day
+- 01 06 * * * sudo aptitude -y update && sudo aptitude -y safe-upgrade
+Save and exit.
+
+[size=large]6. Running Friendica with SSL[/size]
+
+Follow the instructions here:
+#^[url=https://github.com/friendica/friendica/wiki/Running-Friendica-with-SSL]https://github.com/friendica/friendica/wiki/Running-Friendica-with-SSL[/url]
\ No newline at end of file
diff --git a/doc/remove_account.bb b/doc/remove_account.bb
new file mode 100644
index 000000000..90ef1d7df
--- /dev/null
+++ b/doc/remove_account.bb
@@ -0,0 +1,17 @@
+[b]Remove Account[/b]
+
+[b]Remove Account[/b]
+
+It is presently not possible to remove an account without asking your site administrator for assistance.
+
+[b]Remove Channel[/b]
+
+Visit the URL
+
+ [baseurl]/removeme
+
+You will need to confirm your password and the channel you are currently logged into will be removed.
+
+This is irreversible.
+
+If you have identity clones on other sites this only removes the channel instance which exists on this site.
\ No newline at end of file
diff --git a/doc/schema_development.bb b/doc/schema_development.bb
new file mode 100644
index 000000000..6b2c3d315
--- /dev/null
+++ b/doc/schema_development.bb
@@ -0,0 +1,74 @@
+[b]Red Development - A Guide To The Schema System[/b]
+
+A schema, in a nutshell, is a collection of settings for a bunch of variables to define
+certain elements of a theme. A schema is loaded as though it were part of config.php
+and has access to all the same information. Importantly, this means it is identity aware,
+and can be used to do some interesting things. One could, for example, restrict options
+by service class, or present different options to different members.
+
+By default, we filter only by whether or not expert mode is enabled. If expert mode is
+enabled, all options are presented to the member. If it is not, only scheme, background
+image, font face, and iconset are available as choices.
+
+A schema is loaded *after* the member's personal settings. Therefore, to allow a member
+to overwrite a particular aspect of a schema you would use the following syntax:
+[code]
+ if (! $foo)
+ $foo = 'bar';
+[/code]
+However, there are circumstances - particularly with positional elements - where it
+may be desirable (or necessary) to override a member's settings. In this case, the syntax
+is even simpler:
+[code]
+ $foo = 'bar';
+[/code]
+Members will not thank you for this, however, so only use it when it is required.
+
+If no personal options are set, and no schema is selected, we will first try to load a schema
+with the file name "default.php". This file should never be included with a theme. If it
+is, merge conflicts will occur as people update their code. Rather, this should be defined
+by administrators on a site by site basis.
+
+You schema does not need to - and should not - contain all of these values. Only the values
+that differ from the defaults should be listed. This gives you some very powerful options
+with very few lines of code.
+
+Note the options available differ with each theme. The options available with the Redbasic
+theme are as follows:
+
+[li] nav_colour
+ The colour of the navigation bar. Options are red, black and silver. Alternatively,
+ one can set $nav_bg_1, $nav_bg_2, $nav_bg_3 and $nav_bg_4 to provide gradient and
+ hover effects.[/li]
+[li] banner_colour
+ The font colour of the banner element. Accepts an RGB or Hex value.[/li]
+[li] bgcolour
+ Set the body background colour. Accepts an RGB or Hex value.[/li]
+[li] background_image
+ Sets a background image. Accepts a URL or path.[/li]
+[li] item_colour
+ Set the background colour of items. Accepts an RGB or Hex value.[/li]
+[li] item_opacity
+ Set the opacity of items. Accepts a value from 0.01 to 1[/li]
+[li] toolicon_colour
+ Set the colour of tool icons. Accepts an RGB or Hex value.[/li]
+[li] toolicon_activecolour
+ Set the colour of active or hovered icon tools.[/li]
+[li] font_size
+ Set the size of fonts in items and posts. Accepts px or em.[/li]
+[li] body_font_size
+ Sets the size of fonts at the body level. Accepts px or em.[/li]
+[li] font_colour
+ Sets the font colour. Accepts an RGB or Hex value.[/li]
+[li] radius
+ Set the radius of corners. Accepts a numeral, and is always in px.[/li]
+[li] shadow
+ Set the size of shadows shown with inline images. Accepts a numerical
+ value. Note shadows are not applied to smileys.[/li]
+[li] converse_width
+ Set the maximum width of conversations. Accepts px, or %.[/li]
+[li] nav_min_opacity[/li]
+[li] top_photo[/li]
+[li] reply_photo[/li]
+[li] sloppy_photos
+ Determins whether photos are "sloppy" or aligned. Set or unset (1 or '')[/li]
\ No newline at end of file
diff --git a/doc/tags_and_mentions.bb b/doc/tags_and_mentions.bb
new file mode 100644
index 000000000..0614a1e47
--- /dev/null
+++ b/doc/tags_and_mentions.bb
@@ -0,0 +1,23 @@
+[b]Tags And Mentions[/b]
+
+Like many other platforms, Red uses a special notation inside messages to indicate "tags" or contextual links to other entities.
+
+[b]Mentions[/b]
+
+Channels are tagged by simply preceding their name with the @ character. Unless their system blocks unsolicited "mentions", the person tagged will likely receive a "Mention" post/activity or become a direct participant in the conversation in the case of public posts.
+
+When you start to mention somebody, it will create an auto-complete box to select from your immediate connections. Select one as appropriate. Some connections will be displayed in different colours. A light blue entry (using the default theme) indicates a channel which will redeliver to others if tagged. This is generally a conversation group or forum. But be aware that when tagged, the message will also go to anybody they choose, in addition to anybody you choose.
+
+[b]Private Mentions[/b]
+
+If you wish to restrict a post to a single person or a number of people, you can do this by selecting channels or collections from the privacy tool. You can also just tag them with a privacy tag. A privacy tag is a name preceded by the two characters @! - and in addition to tagging these channels, will also change the privacy permissions of the post to include them (and perhaps restrict the post from "everybody" if this was the default). You can have more than one privacy tag, for instance @!bob and @!linda will send the post only to Bob and Linda (in addition to any recipients you selected with the privacy selector - if any).
+
+You may also tag public collections. When you create or edit a collection, there is a checkbox to allow the group members to be seen by others. If this box is checked for a collection and you tag (for instance) @!Friends - the post will be restricted to the Friends collection. Check that the collection is public before doing this - as there is no way to take back a post except to delete it. The collection name will appear in the post and will alert members of that collection that they are members of it.
+
+
+
+[b]Topical Tags[/b]
+
+Topical tags are indicated by preceding the tag name with the # character. This will create a link in the post to a generalised site search for the term provided. For example, #[zrl=https://friendicared.net/search?tag=cars]cars[/zrl] will provide a search link for all posts mentioning 'cars' on your site. Topical tags are generally a minimum of three characters in length. Shorter search terms are not likely to yield any search results, although this depends on the database configuration. The same rules apply as with names that spaces within tags are represented by the underscore character. It is therefore not possible to create a tag whose target contains an underscore.
+
+Topical tags are also not linked if they are purely numeric, e.g. #1. If you wish to use a numeric hashtag, please add some descriptive text such as #[zrl=https://friendicared.net/search?tag=2012-elections]2012-elections[/zrl].
\ No newline at end of file
diff --git a/doc/to_do_code.bb b/doc/to_do_code.bb
new file mode 100644
index 000000000..ac337e5d8
--- /dev/null
+++ b/doc/to_do_code.bb
@@ -0,0 +1,59 @@
+[b]Project Code To-Do List[/b]
+
+We need much more than this, but here are areas where developers can help. Please edit this page when items are finished. Another place for developers to start is with the issues list.
+
+[li]Turn top-level Apps menu into an Apps page - which will probably require App plugins to have icons. Add documentation specifically to the plugin/addon documentation for creating apps. Add links to the App Store (which doesn't currently exist).[/li]
+
+[li]Documentation - see Red Documentation Project To-Do List[/li]
+
+[li]Infinite scroll to the directory pages[/li]
+
+[li]Finish the anti-spam bayesian engine[/li]
+
+[li]If DAV folders exist, add an option to the Settings page to set a default folder for attachment uploads.[/li]
+
+[li]Integrate the "open site" list with the register page[/li]
+
+[li]implement oembed provider interface[/li]
+
+[li]implement openid server interface[/li]
+
+[li]Write more webpage layouts[/li]
+
+[li]Write more webpage widgets[/li]
+
+[li](Advanced) create a UI for building Comanche pages[/li]
+
+[li]templatise and translate the Web interface to webDAV[/li]
+
+[li]Extend WebDAV to provide desktop access to photo albums]/li]
+
+[li]Create a module PDL editor (separate from but integrated with the page layout editor) as a separate module. This will allow folks to view and alter the pre-defined layouts for any module in the system. If the custom module is removed or empty, revert to the system layout.
+
+[li]service classes - provide a pluggable subscription payment gateway for premium accounts[/li]
+
+[li]service classes - account overview page showing resources consumed by channel. With special consideration this page can also be accessed at a meta level by the site admin to drill down on problematic accounts/channels.[/li]
+
+[li]Events module - bring back birthday reminders for friends, fix permissions on events, and provide JS translation support for the calendar overview; integrate with calDAV[/li]
+
+[li]Events module - event followups and RSVP[/li]
+
+[li]Uploads - integrate #^[url=https://github.com/blueimp/jQuery-File-Upload]https://github.com/blueimp/jQuery-File-Upload[/url][/li]
+
+[li]replace the tinymce visual editor and/or make the visual editor pluggable and responsive to different output formats. We probably want library/bbedit for bbcode. This needs a fair bit of work to catch up with our "enhanced bbcode", but start with images, links, bold and highlight and work from there.[/li]
+
+[li]Photos module - turn photos into normal conversations and fix tagging[/li]
+
+[li]Provide RSS feed support which look like channels (in matrix only - copyright issues)[/li]
+
+[li]Create mobile clients for the top platforms - which involves extending the API so that we can do stuff far beyond the current crop of Twitter/Statusnet clients. Ditto for mobile themes. We can probably use something like the Friendica Android app as a base to start from.[/li]
+
+[li]Activity Stream generation for liking things, liking channels and other combinations.[/li]
+
+[li]Implement owned and exchangeable "things".[/li]
+
+[li]Family Account creation - using service classes (an account holder can create a certain number of sub-accounts which are all tied to their subscription - if the subscription lapses they all go away).[/li]
+
+[li]Put mod_admin under Comanche[/li]
+
+In many cases some of the work has already been started and code exists so that you needn't start from scratch. Please contact one of the developer channels like Channel One (one@zothub.com) before embarking and we can tell you what we already have and provide some insights on how we envision these features fitting together.
\ No newline at end of file
diff --git a/doc/to_do_doco.bb b/doc/to_do_doco.bb
new file mode 100644
index 000000000..4505de31a
--- /dev/null
+++ b/doc/to_do_doco.bb
@@ -0,0 +1,21 @@
+[b]Documentation To-Do List[/b]
+
+[b]Documentation we need to write[/b]
+
+ Database schema detailed descriptions
+
+ Complete plugin hook documentation
+
+ API documentation
+
+ Function and code documentation (doxygen)
+
+ New Member guide
+
+ "Extra Feature" reference, description of each
+
+ Detailed Personal Settings Documentation
+
+ Administration Guide (post-install)
+
+ Administration Guide (pre-install)
\ No newline at end of file
diff --git a/doc/troubleshooting.bb b/doc/troubleshooting.bb
new file mode 100644
index 000000000..ea7dbb11a
--- /dev/null
+++ b/doc/troubleshooting.bb
@@ -0,0 +1,5 @@
+[b]Troubleshooting[/b]
+
+[li][zrl=[baseurl]/help/problems-following-an-update]Problems following an update[/zrl][/li]
+
+Return to the [url=[baseurl]/help/main]Main documentation page[/url]
\ No newline at end of file
diff --git a/doc/webpages.bb b/doc/webpages.bb
new file mode 100644
index 000000000..74760c8bf
--- /dev/null
+++ b/doc/webpages.bb
@@ -0,0 +1,13 @@
+[b]Creating Web Pages[/b]
+
+Red enables users to create static webpages. To activate this feature, enable the web pages feature in your Additional Features section.
+
+Once enabled, a new tab will appear on your channel page labelled "Webpages". Clicking this link will take you to the webpage editor. Here you can create a post using either BBCode or the rich text editor.
+
+Pages will be accessible at mydomain/page/username/pagelinktitle
+
+The "page link title" box allows a user to specify the "pagelinktitle" of this URL. If no page link title is set, we will set one for you automatically, using the message ID of the item.
+
+Beneath the page creation box, a list of existing pages will appear with an "edit" link. Clicking this will take you to an editor, similar to that of the post editor, where you can make changes to your webpages.
+
+If you are the admin of a site, you can specify a channel whose webpages we will use at key points around the site. Presently, the only place this is implemented is the home page. If you specify the channel "admin" and then the channel called "admin" creates a webpage called "home", we will display it's content on your websites home page. We expect this functionality to be extended to other areas in future.
\ No newline at end of file
diff --git a/doc/what_is_zot.bb b/doc/what_is_zot.bb
new file mode 100644
index 000000000..0e59d2d4c
--- /dev/null
+++ b/doc/what_is_zot.bb
@@ -0,0 +1,61 @@
+[b]What is Zot?[/b]
+
+Zot is the protocol that powers the Red Matrix, providing three core capabilities: Communications, Identity, and Access Control.
+
+The functionality it provides can also be described as follows:
+
+ - a relationship online is just a bunch of permissions
+ - the internet is just another folder
+
+[b][size=20]Communications[/size][/b]
+
+Zot is a revolutionary protocol which provides [i]decentralised communications[/i] and [i]identity management[/i] across the matrix. The resulting platform can provide web services comparable to those offered by large corporate providers, but without the large corporate provider and their associated privacy issues, insatiable profit drive, and walled-garden mentality.
+
+Communications and social networking are an integral part of the matrix. Any channel (and any services provided by that channel) can make full use of feature-rich social communications on a global scale. These communications may be public or private - and private communications comprise not only fully encrypted transport, but also encrypted storage to help protect against accidental snooping and disclosure by rogue system administrators and internet service providers.
+
+Zot allows a wide array of background services in the matrix, from offering friend suggestions, to directory services. You can also perform other things which would typically only be possibly on a centralized provider - such as "Wall to Wall" posts. Priivate/multiple profiles can be easily created, and web content can be tailored to the viewer via the [i]Affinity Slider[/i].
+
+You won't find these features at all on other decentralized communication services. In addition to providing hub (server) decentralization, perhaps the most innovative and interesting Zot feature is its provision of [i]decentralized identity[/i] services.
+
+[b][size=20]Identity[/size][/b]
+
+Zot's identity layer is unique. It provides [i]invisible single sign-on[/i] across all sites in the matrix.
+
+It also provides [i]nomadic identity[/i], so that your communications with friends, family, and or anyone else you're communicating with won't be affected by the loss of your primary communication node - either temporarily or permanently.
+
+The important bits of your identity and relationships can be backed up to a thumb drive, or your laptop, and may appear at any node in the matrix at any time - with all your friends and preferences intact.
+
+Crucially, these nomadic instances are kept in sync so any instance can take over if another one is compromised or damaged. This protects you against not only major system failure, but also temporary site overloads and governmental manipulation or censorship.
+
+Nomadic identity, single sign-on, and Red's decentralization of hubs, we believe, introduce a high degree of degree of [i]resiliency[/i] and [i]persistence[/i] in internet communications, that are sorely needed amidst global trends towards corporate centralization, as well as mass and indiscriminate government surveillance and censorship.
+
+As you browse the matrix, viewing channels and their unique content, you are seamlessly authenticated as you go, even across completely different server hubs. No passwords to enter. Nothing to type. You're just greeted by name on every new site you visit.
+
+How does Zot do that? We call it [i]magic-auth[/i], because Red hides the details of the complexities that go into single sign-on logins, and nomadic identities, from the experience of browsing on the matrix. This is one of the design goals of Red: to increase privacy, and freedom on the web, while reducing the complexity and tedium brought by the need to enter new passwords and user names for every different sight that someone might visit online.
+
+You login only once on your home hub (or any nomadic backup hub you have chosen). This allows you to access any authenticated services provided anywhere in the matrix - such as shopping, blogs, forums, and access to private information. This is just like the services offered by large corporate providers with huge user databases; however you can be a member of this community, as well as a server on this network using a $35 Rasberry Pi. Your password isn't stored on a thousand different sites, or even worse, only on a few sites like Google and Facebook, beyond your direct control.
+
+You cannot be silenced. You cannot be removed from the matrix, unless you yourself choose to exit it.
+
+[b][size=20]Access Control[/size][/b]
+
+Zot's identity layer allows you to provide fine-grained permissions to any content you wish to publish - and these permissions extend across the Red Matrix. This is like having one super huge website made up of an army of small individual websites - and where each channel in the matrix can completely control their privacy and sharing preferences for any web resources they create.
+
+Currently, the matrix supports communications, photo albums, events, and files. This will be extended in the future to provide content management services (web pages) and cloud storage facilities, such as WebDAV and multi-media libraries. Every object and how it is shared and with whom is completely under your control.
+
+This type of control is available on large corporate providers such as Facebook and Google, because they own the user database. Within the matrix, there is no need for a huge user databaseon your machine - because the matrix [i]is[/i] your user database. It has what is essentially infinite capacity (limited by the total number of hubs online across the internet), and is spread amongst hundreds, and potentially millions of computers.
+
+Access can be granted or denied for any resource, to any channel, or any group of channels; anywhere within the matrix. Others can access your content if you permit them to do so, and they do not even need to have an account on your hub. Your private photos cannot be viewed, because permission really work; they are not an addon that was added as an afterthought. If you aren't on the list of allowed viewers for a particular photo, you aren't going to look at it.
+
+[b][size=18]Additional Resources and Links[/size][/b]
+
+For more detailed, technical information about Zot, check out the following links:
+
+ - [url=https://github.com/friendica/red/wiki/Zot---A-High-Level-Overview]A high level overview[/url]
+
+ - [url=https://github.com/friendica/red/wiki/zot]Zot development specification[/url]
+
+ - [url=https://github.com/friendica/red/blob/master/include/zot.php]Zot reference implementation in PHP[/url]
+
+
+Return to the [url=[baseurl]/help/main]Main documentation page[/url]
\ No newline at end of file
diff --git a/include/Contact.php b/include/Contact.php
index 09f7925cb..9883c598d 100644
--- a/include/Contact.php
+++ b/include/Contact.php
@@ -52,24 +52,27 @@ function abook_self($channel_id) {
}
function channelx_by_nick($nick) {
- return q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_address = '%s' and not ( channel_pageflags & %d ) LIMIT 1",
+ $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_address = '%s' and not ( channel_pageflags & %d ) LIMIT 1",
dbesc($nick),
intval(PAGE_REMOVED)
);
+ return(($r) ? $r[0] : false);
}
function channelx_by_hash($hash) {
- return q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_hash = '%s' and not ( channel_pageflags & %d ) LIMIT 1",
+ $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_hash = '%s' and not ( channel_pageflags & %d ) LIMIT 1",
dbesc($hash),
intval(PAGE_REMOVED)
);
+ return(($r) ? $r[0] : false);
}
function channelx_by_n($id) {
- return q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_id = %d and not ( channel_pageflags & %d ) LIMIT 1",
+ $r = q("SELECT * FROM channel left join xchan on channel_hash = xchan_hash WHERE channel_id = %d and not ( channel_pageflags & %d ) LIMIT 1",
dbesc($id),
intval(PAGE_REMOVED)
);
+ return(($r) ? $r[0] : false);
}
diff --git a/include/api.php b/include/api.php
index dc270167b..47c78113a 100644
--- a/include/api.php
+++ b/include/api.php
@@ -533,6 +533,12 @@ require_once('include/items.php');
api_register_func('api/red/channel/export/basic','api_export_basic', true);
+
+
+
+
+
+
function api_channel_stream(&$a, $type) {
if(api_user() === false) {
logger('api_channel_stream: no user');
@@ -691,6 +697,48 @@ require_once('include/items.php');
api_register_func('api/statuses/update','api_statuses_update', true);
+ function red_item_new(&$a, $type) {
+
+ if (api_user() === false) {
+ logger('api_statuses_update: no user');
+ return false;
+ }
+
+ logger('api_statuses_update: REQUEST ' . print_r($_REQUEST,true));
+ logger('api_statuses_update: FILES ' . print_r($_FILES,true));
+
+
+ // set this so that the item_post() function is quiet and doesn't redirect or emit json
+
+ $_REQUEST['api_source'] = true;
+ $_REQUEST['profile_uid'] = api_user();
+
+ if(x($_FILES,'media')) {
+ $_FILES['userfile'] = $_FILES['media'];
+ // upload the image if we have one
+ $_REQUEST['silent']='1'; //tell wall_upload function to return img info instead of echo
+ require_once('mod/wall_upload.php');
+ $media = wall_upload_post($a);
+ if(strlen($media)>0)
+ $_REQUEST['body'] .= "\n\n".$media;
+ }
+
+ require_once('mod/item.php');
+ $x = item_post($a);
+ json_return_and_die($x);
+ }
+
+ api_register_func('api/red/item/new','red_item_new', true);
+
+
+
+
+
+
+
+
+
+
function api_status_show(&$a, $type){
$user_info = api_get_user($a);
diff --git a/include/auth.php b/include/auth.php
index a3b028c73..c21705c99 100644
--- a/include/auth.php
+++ b/include/auth.php
@@ -58,15 +58,18 @@ function account_verify_password($email,$pass) {
}
-// login/logout
-
-
-
-
+/**
+ * Inline - not a function
+ * look for auth parameters or re-validate an existing session
+ * also handles logout
+ */
if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-params'))) || ($_POST['auth-params'] !== 'login'))) {
+
+ // process a logout request
+
if(((x($_POST,'auth-params')) && ($_POST['auth-params'] === 'logout')) || ($a->module === 'logout')) {
// process logout request
@@ -77,6 +80,8 @@ if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-p
goaway(z_root());
}
+ // re-validate a visitor, optionally invoke "su" if permitted to do so
+
if(x($_SESSION,'visitor_id') && (! x($_SESSION,'uid'))) {
// if our authenticated guest is allowed to take control of the admin channel, make it so.
$admins = get_config('system','remote_admin');
@@ -106,9 +111,11 @@ if((isset($_SESSION)) && (x($_SESSION,'authenticated')) && ((! (x($_POST,'auth-p
$a->set_groups(init_groups_visitor($_SESSION['visitor_id']));
}
+ // already logged in user returning
+
if(x($_SESSION,'uid') || x($_SESSION,'account_id')) {
- // already logged in user returning
+ // first check if we're enforcing that sessions can't change IP address
$check = get_config('system','paranoia');
// extra paranoia - if the IP changed, log them out
@@ -150,6 +157,8 @@ else {
nuke_session();
}
+ // handle a fresh login request
+
if((x($_POST,'password')) && strlen($_POST['password']))
$encrypted = hash('whirlpool',trim($_POST['password']));
@@ -188,7 +197,7 @@ else {
notice( t('Failed authentication') . EOL);
}
- logger('authenticate: ' . print_r(get_app()->account,true));
+ logger('authenticate: ' . print_r(get_app()->account,true), LOGGER_DEBUG);
}
diff --git a/include/bookmarks.php b/include/bookmarks.php
index 99cb60e64..21a775f9a 100644
--- a/include/bookmarks.php
+++ b/include/bookmarks.php
@@ -2,7 +2,17 @@
require_once('include/menu.php');
-function bookmark_add($channel,$sender,$taxonomy,$private) {
+function bookmark_add($channel,$sender,$taxonomy,$private,$opts = null) {
+
+ $menu_id = 0;
+ $menu_name = '';
+ $ischat = false;
+
+ if(is_array($opts)) {
+ $menu_id = ((x($opts,'menu_id')) ? intval($opt['menu_id']) : 0);
+ $menu_name = ((x($opts,'menu_name')) ? escape_tags($opts['menu_name']) : '');
+ $ischat = ((x($opts,'ischat')) ? intval($opts['ischat']) : 0);
+ }
$iarr = array();
$channel_id = $channel['channel_id'];
@@ -11,7 +21,7 @@ function bookmark_add($channel,$sender,$taxonomy,$private) {
$iarr['contact_allow'] = array($channel['channel_hash']);
$iarr['mitem_link'] = $taxonomy['url'];
$iarr['mitem_desc'] = $taxonomy['term'];
- $iarr['mitem_flags'] = 0;
+ $iarr['mitem_flags'] = (($ischat) ? MENU_ITEM_CHATROOM : 0);
$m = @parse_url($taxonomy['url']);
$zrl = false;
@@ -27,16 +37,24 @@ function bookmark_add($channel,$sender,$taxonomy,$private) {
$iarr['mitem_flags'] |= MENU_ITEM_ZID;
$arr = array();
- $arr['menu_name'] = substr($sender['xchan_hash'],0,16) . ' ' . $sender['xchan_name'];
- $arr['menu_desc'] = sprintf( t('%1$s\'s bookmarks'), $sender['xchan_name']);
+ if(! $menu_name) {
+ $arr['menu_name'] = substr($sender['xchan_hash'],0,16) . ' ' . $sender['xchan_name'];
+ $arr['menu_desc'] = sprintf( t('%1$s\'s bookmarks'), $sender['xchan_name']);
+ }
+ else {
+ $arr['menu_name'] = $arr['menu_desc'] = $menu_name;
+ }
$arr['menu_flags'] = (($sender['xchan_hash'] === $channel['channel_hash']) ? MENU_BOOKMARK : MENU_SYSTEM|MENU_BOOKMARK);
$arr['menu_channel_id'] = $channel_id;
- $x = menu_list($arr['menu_channel_id'],$arr['menu_name'],$arr['menu_flags']);
- if($x)
- $menu_id = $x[0]['menu_id'];
- else
- $menu_id = menu_create($arr);
+ if(! $menu_id) {
+ $x = menu_list($arr['menu_channel_id'],$arr['menu_name'],$arr['menu_flags']);
+ if($x)
+ $menu_id = $x[0]['menu_id'];
+ else
+ $menu_id = menu_create($arr);
+ }
+
if(! $menu_id) {
logger('bookmark_add: unable to create menu ' . $arr['menu_name']);
return;
@@ -51,5 +69,17 @@ function bookmark_add($channel,$sender,$taxonomy,$private) {
logger('add_bookmark: duplicate menu entry', LOGGER_DEBUG);
if(! $r)
$r = menu_add_item($menu_id,$channel_id,$iarr);
+
return $r;
-}
\ No newline at end of file
+}
+
+function get_bookmark_link($observer) {
+
+ if((! $observer) || ($observer['xchan_network'] !== 'zot'))
+ return '';
+
+ $h = @parse_url($observer['xchan_url']);
+ if($h)
+ return $h['scheme'] . '://' . $h['host'] . (($h['port']) ? ':' . $h['port'] : '') . '/rbmark?f=';
+ return '';
+}
diff --git a/include/comanche.php b/include/comanche.php
index 7d7e0e70c..13146ded4 100644
--- a/include/comanche.php
+++ b/include/comanche.php
@@ -57,6 +57,23 @@ function comanche_parser(&$a,$s) {
if($cnt)
$a->page['template'] = trim($matches[1]);
+ $cnt = preg_match("/\[template=(.*?)\](.*?)\[\/template\]/ism", $s, $matches);
+ if($cnt) {
+ $a->page['template'] = trim($matches[2]);
+ $a->page['template_style'] = trim($matches[2]) . '_' . $matches[1];
+ }
+
+ $cnt = preg_match("/\[template\](.*?)\[\/template\]/ism", $s, $matches);
+ if($cnt) {
+ $a->page['template'] = trim($matches[1]);
+ }
+
+ $cnt = preg_match("/\[theme=(.*?)\](.*?)\[\/theme\]/ism", $s, $matches);
+ if($cnt) {
+ $a->layout['schema'] = trim($matches[1]);
+ $a->layout['theme'] = trim($matches[2]);
+ }
+
$cnt = preg_match("/\[theme\](.*?)\[\/theme\]/ism", $s, $matches);
if($cnt)
$a->layout['theme'] = trim($matches[1]);
@@ -79,10 +96,12 @@ function comanche_parser(&$a,$s) {
}
-function comanche_menu($name) {
- $a = get_app();
- $m = menu_fetch($name,$a->profile['profile_uid'],get_observer_hash());
- return menu_render($m);
+function comanche_menu($name,$class = '') {
+ $channel_id = comanche_get_channel_id();
+ if($channel_id) {
+ $m = menu_fetch($name,$channel_id,get_observer_hash());
+ return menu_render($m,$class);
+ }
}
function comanche_replace_region($match) {
@@ -92,20 +111,37 @@ function comanche_replace_region($match) {
}
}
-function comanche_block($name) {
-
- $o = '';
- $r = q("select * from item inner join item_id on iid = item.id and item_id.uid = item.uid and item.uid = %d and service = 'BUILDBLOCK' and sid = '%s' limit 1",
- intval(get_app()->profile['profile_uid']),
- dbesc($name)
- );
- if($r) {
- $o = '
The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better, freer, and privacy respecting web. Select the following option for a one-time donation of your choosing
The Red Matrix is provided for you by volunteers working in their spare "
-"time. Your support will help us to build a better web. Select the following "
-"option for a one-time donation of your choosing
"
-msgstr ""
-
-#: ../../mod/siteinfo.php:96
-msgid "Recurring Donation Options"
-msgstr ""
-
-#: ../../mod/siteinfo.php:115
+#: ../../mod/siteinfo.php:97
msgid "Red"
msgstr ""
-#: ../../mod/siteinfo.php:116
+#: ../../mod/siteinfo.php:98
msgid ""
"This is a hub of the Red Matrix - a global cooperative network of "
"decentralised privacy enhanced websites."
msgstr ""
-#: ../../mod/siteinfo.php:119
+#: ../../mod/siteinfo.php:101
msgid "Running at web location"
msgstr ""
-#: ../../mod/siteinfo.php:120
+#: ../../mod/siteinfo.php:102
msgid ""
"Please visit GetZot.com to learn more "
"about the Red Matrix."
msgstr ""
-#: ../../mod/siteinfo.php:121
+#: ../../mod/siteinfo.php:103
msgid "Bug reports and issues: please visit"
msgstr ""
-#: ../../mod/siteinfo.php:124
+#: ../../mod/siteinfo.php:106
msgid ""
"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"
msgstr ""
-#: ../../mod/siteinfo.php:126
+#: ../../mod/siteinfo.php:108
msgid "Site Administrators"
msgstr ""
@@ -5735,7 +6194,7 @@ msgid ""
"Password reset failed."
msgstr ""
-#: ../../mod/lostpass.php:85 ../../boot.php:1434
+#: ../../mod/lostpass.php:85 ../../boot.php:1438
msgid "Password Reset"
msgstr ""
@@ -5784,404 +6243,24 @@ msgstr ""
msgid "Reset"
msgstr ""
-#: ../../mod/settings.php:71
-msgid "Name is required"
+#: ../../mod/rbmark.php:88
+msgid "Select a bookmark folder"
msgstr ""
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
+#: ../../mod/rbmark.php:93
+msgid "Save Bookmark"
msgstr ""
-#: ../../mod/settings.php:79 ../../mod/settings.php:542
-msgid "Update"
+#: ../../mod/rbmark.php:94
+msgid "URL of bookmark"
msgstr ""
-#: ../../mod/settings.php:195
-msgid "Passwords do not match. Password unchanged."
+#: ../../mod/rbmark.php:95
+msgid "Description"
msgstr ""
-#: ../../mod/settings.php:199
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr ""
-
-#: ../../mod/settings.php:212
-msgid "Password changed."
-msgstr ""
-
-#: ../../mod/settings.php:214
-msgid "Password update failed. Please try again."
-msgstr ""
-
-#: ../../mod/settings.php:228
-msgid "Not valid email."
-msgstr ""
-
-#: ../../mod/settings.php:231
-msgid "Protected email address. Cannot change to that email."
-msgstr ""
-
-#: ../../mod/settings.php:240
-msgid "System failure storing new email. Please try again."
-msgstr ""
-
-#: ../../mod/settings.php:444
-msgid "Settings updated."
-msgstr ""
-
-#: ../../mod/settings.php:515 ../../mod/settings.php:541
-#: ../../mod/settings.php:577
-msgid "Add application"
-msgstr ""
-
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
-msgid "Name"
-msgstr ""
-
-#: ../../mod/settings.php:518
-msgid "Name of application"
-msgstr ""
-
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
-msgid "Consumer Key"
-msgstr ""
-
-#: ../../mod/settings.php:519 ../../mod/settings.php:520
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr ""
-
-#: ../../mod/settings.php:520 ../../mod/settings.php:546
-msgid "Consumer Secret"
-msgstr ""
-
-#: ../../mod/settings.php:521 ../../mod/settings.php:547
-msgid "Redirect"
-msgstr ""
-
-#: ../../mod/settings.php:521
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires this"
-msgstr ""
-
-#: ../../mod/settings.php:522 ../../mod/settings.php:548
-msgid "Icon url"
-msgstr ""
-
-#: ../../mod/settings.php:522
-msgid "Optional"
-msgstr ""
-
-#: ../../mod/settings.php:533
-msgid "You can't edit this application."
-msgstr ""
-
-#: ../../mod/settings.php:576
-msgid "Connected Apps"
-msgstr ""
-
-#: ../../mod/settings.php:580
-msgid "Client key starts with"
-msgstr ""
-
-#: ../../mod/settings.php:581
-msgid "No name"
-msgstr ""
-
-#: ../../mod/settings.php:582
-msgid "Remove authorization"
-msgstr ""
-
-#: ../../mod/settings.php:593
-msgid "No feature settings configured"
-msgstr ""
-
-#: ../../mod/settings.php:601
-msgid "Feature Settings"
-msgstr ""
-
-#: ../../mod/settings.php:624
-msgid "Account Settings"
-msgstr ""
-
-#: ../../mod/settings.php:625
-msgid "Password Settings"
-msgstr ""
-
-#: ../../mod/settings.php:626
-msgid "New Password:"
-msgstr ""
-
-#: ../../mod/settings.php:627
-msgid "Confirm:"
-msgstr ""
-
-#: ../../mod/settings.php:627
-msgid "Leave password fields blank unless changing"
-msgstr ""
-
-#: ../../mod/settings.php:629 ../../mod/settings.php:925
-msgid "Email Address:"
-msgstr ""
-
-#: ../../mod/settings.php:630
-msgid "Remove Account"
-msgstr ""
-
-#: ../../mod/settings.php:631
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr ""
-
-#: ../../mod/settings.php:647
-msgid "Off"
-msgstr ""
-
-#: ../../mod/settings.php:647
-msgid "On"
-msgstr ""
-
-#: ../../mod/settings.php:654
-msgid "Additional Features"
-msgstr ""
-
-#: ../../mod/settings.php:679
-msgid "Connector Settings"
-msgstr ""
-
-#: ../../mod/settings.php:750
-msgid "Display Settings"
-msgstr ""
-
-#: ../../mod/settings.php:756
-msgid "Display Theme:"
-msgstr ""
-
-#: ../../mod/settings.php:757
-msgid "Mobile Theme:"
-msgstr ""
-
-#: ../../mod/settings.php:758
-msgid "Update browser every xx seconds"
-msgstr ""
-
-#: ../../mod/settings.php:758
-msgid "Minimum of 10 seconds, no maximum"
-msgstr ""
-
-#: ../../mod/settings.php:759
-msgid "Maximum number of conversations to load at any time:"
-msgstr ""
-
-#: ../../mod/settings.php:759
-msgid "Maximum of 100 items"
-msgstr ""
-
-#: ../../mod/settings.php:760
-msgid "Don't show emoticons"
-msgstr ""
-
-#: ../../mod/settings.php:761
-msgid "Do not view remote profiles in frames"
-msgstr ""
-
-#: ../../mod/settings.php:761
-msgid "By default open in a sub-window of your own site"
-msgstr ""
-
-#: ../../mod/settings.php:796
-msgid "Nobody except yourself"
-msgstr ""
-
-#: ../../mod/settings.php:797
-msgid "Only those you specifically allow"
-msgstr ""
-
-#: ../../mod/settings.php:798
-msgid "Anybody in your address book"
-msgstr ""
-
-#: ../../mod/settings.php:799
-msgid "Anybody on this website"
-msgstr ""
-
-#: ../../mod/settings.php:800
-msgid "Anybody in this network"
-msgstr ""
-
-#: ../../mod/settings.php:801
-msgid "Anybody on the internet"
-msgstr ""
-
-#: ../../mod/settings.php:878
-msgid "Publish your default profile in the network directory"
-msgstr ""
-
-#: ../../mod/settings.php:883
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr ""
-
-#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr ""
-
-#: ../../mod/settings.php:892
-msgid "Your channel address is"
-msgstr ""
-
-#: ../../mod/settings.php:914
-msgid "Channel Settings"
-msgstr ""
-
-#: ../../mod/settings.php:923
-msgid "Basic Settings"
-msgstr ""
-
-#: ../../mod/settings.php:926
-msgid "Your Timezone:"
-msgstr ""
-
-#: ../../mod/settings.php:927
-msgid "Default Post Location:"
-msgstr ""
-
-#: ../../mod/settings.php:928
-msgid "Use Browser Location:"
-msgstr ""
-
-#: ../../mod/settings.php:930
-msgid "Adult Content"
-msgstr ""
-
-#: ../../mod/settings.php:930
-msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
-msgstr ""
-
-#: ../../mod/settings.php:932
-msgid "Security and Privacy Settings"
-msgstr ""
-
-#: ../../mod/settings.php:934
-msgid "Hide my online presence"
-msgstr ""
-
-#: ../../mod/settings.php:934
-msgid "Prevents displaying in your profile that you are online"
-msgstr ""
-
-#: ../../mod/settings.php:936
-msgid "Simple Privacy Settings:"
-msgstr ""
-
-#: ../../mod/settings.php:937
-msgid ""
-"Very Public - extremely permissive (should be used with caution)"
-msgstr ""
-
-#: ../../mod/settings.php:938
-msgid ""
-"Typical - default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)"
-msgstr ""
-
-#: ../../mod/settings.php:939
-msgid "Private - default private, never open or public"
-msgstr ""
-
-#: ../../mod/settings.php:940
-msgid "Blocked - default blocked to/from everybody"
-msgstr ""
-
-#: ../../mod/settings.php:943
-msgid "Advanced Privacy Settings"
-msgstr ""
-
-#: ../../mod/settings.php:945
-msgid "Maximum Friend Requests/Day:"
-msgstr ""
-
-#: ../../mod/settings.php:945
-msgid "May reduce spam activity"
-msgstr ""
-
-#: ../../mod/settings.php:946
-msgid "Default Post Permissions"
-msgstr ""
-
-#: ../../mod/settings.php:958
-msgid "Maximum private messages per day from unknown people:"
-msgstr ""
-
-#: ../../mod/settings.php:958
-msgid "Useful to reduce spamming"
-msgstr ""
-
-#: ../../mod/settings.php:961
-msgid "Notification Settings"
-msgstr ""
-
-#: ../../mod/settings.php:962
-msgid "By default post a status message when:"
-msgstr ""
-
-#: ../../mod/settings.php:963
-msgid "accepting a friend request"
-msgstr ""
-
-#: ../../mod/settings.php:964
-msgid "joining a forum/community"
-msgstr ""
-
-#: ../../mod/settings.php:965
-msgid "making an interesting profile change"
-msgstr ""
-
-#: ../../mod/settings.php:966
-msgid "Send a notification email when:"
-msgstr ""
-
-#: ../../mod/settings.php:967
-msgid "You receive an introduction"
-msgstr ""
-
-#: ../../mod/settings.php:968
-msgid "Your introductions are confirmed"
-msgstr ""
-
-#: ../../mod/settings.php:969
-msgid "Someone writes on your profile wall"
-msgstr ""
-
-#: ../../mod/settings.php:970
-msgid "Someone writes a followup comment"
-msgstr ""
-
-#: ../../mod/settings.php:971
-msgid "You receive a private message"
-msgstr ""
-
-#: ../../mod/settings.php:972
-msgid "You receive a friend suggestion"
-msgstr ""
-
-#: ../../mod/settings.php:973
-msgid "You are tagged in a post"
-msgstr ""
-
-#: ../../mod/settings.php:974
-msgid "You are poked/prodded/etc. in a post"
-msgstr ""
-
-#: ../../mod/settings.php:977
-msgid "Advanced Account/Page Type Settings"
-msgstr ""
-
-#: ../../mod/settings.php:978
-msgid "Change the behaviour of this account for special situations"
-msgstr ""
-
-#: ../../mod/settings.php:981
-msgid ""
-"Please enable expert mode (in Settings > Additional features) to adjust!"
+#: ../../mod/rbmark.php:99
+msgid "Or enter new bookmark folder name"
msgstr ""
#: ../../mod/import.php:36
@@ -6261,32 +6340,32 @@ msgstr ""
msgid "Make this hub my primary location"
msgstr ""
-#: ../../mod/manage.php:63
+#: ../../mod/manage.php:64
#, php-format
msgid "You have created %1$.0f of %2$.0f allowed channels."
msgstr ""
-#: ../../mod/manage.php:71
+#: ../../mod/manage.php:72
msgid "Create a new channel"
msgstr ""
-#: ../../mod/manage.php:76
+#: ../../mod/manage.php:77
msgid "Channel Manager"
msgstr ""
-#: ../../mod/manage.php:77
+#: ../../mod/manage.php:78
msgid "Current Channel"
msgstr ""
-#: ../../mod/manage.php:79
+#: ../../mod/manage.php:80
msgid "Attach to one of your channels by selecting it."
msgstr ""
-#: ../../mod/manage.php:80
+#: ../../mod/manage.php:81
msgid "Default Channel"
msgstr ""
-#: ../../mod/manage.php:81
+#: ../../mod/manage.php:82
msgid "Make Default"
msgstr ""
@@ -6318,6 +6397,14 @@ msgstr ""
msgid "invalid target signature"
msgstr ""
+#: ../../mod/chatsvc.php:102
+msgid "Away"
+msgstr ""
+
+#: ../../mod/chatsvc.php:106
+msgid "Online"
+msgstr ""
+
#: ../../mod/mail.php:33
msgid "Unable to lookup recipient."
msgstr ""
@@ -6392,6 +6479,10 @@ msgstr ""
msgid "Send Reply"
msgstr ""
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr ""
+
#: ../../mod/editlayout.php:72
msgid "Edit Layout"
msgstr ""
@@ -6480,76 +6571,84 @@ msgstr ""
msgid "Image size reduction [%s] failed."
msgstr ""
-#: ../../mod/connections.php:191 ../../mod/connections.php:263
+#: ../../mod/connections.php:191 ../../mod/connections.php:269
msgid "Blocked"
msgstr ""
-#: ../../mod/connections.php:196 ../../mod/connections.php:270
+#: ../../mod/connections.php:196 ../../mod/connections.php:276
msgid "Ignored"
msgstr ""
-#: ../../mod/connections.php:201 ../../mod/connections.php:284
+#: ../../mod/connections.php:201 ../../mod/connections.php:290
msgid "Hidden"
msgstr ""
-#: ../../mod/connections.php:206 ../../mod/connections.php:277
+#: ../../mod/connections.php:206 ../../mod/connections.php:283
msgid "Archived"
msgstr ""
-#: ../../mod/connections.php:217
+#: ../../mod/connections.php:217 ../../mod/connections.php:297
+msgid "Unconnected"
+msgstr ""
+
+#: ../../mod/connections.php:222
msgid "All"
msgstr ""
-#: ../../mod/connections.php:241
+#: ../../mod/connections.php:247
msgid "Suggest new connections"
msgstr ""
-#: ../../mod/connections.php:247
+#: ../../mod/connections.php:253
msgid "Show pending (new) connections"
msgstr ""
-#: ../../mod/connections.php:253
+#: ../../mod/connections.php:259
msgid "Show all connections"
msgstr ""
-#: ../../mod/connections.php:256
+#: ../../mod/connections.php:262
msgid "Unblocked"
msgstr ""
-#: ../../mod/connections.php:259
+#: ../../mod/connections.php:265
msgid "Only show unblocked connections"
msgstr ""
-#: ../../mod/connections.php:266
+#: ../../mod/connections.php:272
msgid "Only show blocked connections"
msgstr ""
-#: ../../mod/connections.php:273
+#: ../../mod/connections.php:279
msgid "Only show ignored connections"
msgstr ""
-#: ../../mod/connections.php:280
+#: ../../mod/connections.php:286
msgid "Only show archived connections"
msgstr ""
-#: ../../mod/connections.php:287
+#: ../../mod/connections.php:293
msgid "Only show hidden connections"
msgstr ""
-#: ../../mod/connections.php:331
+#: ../../mod/connections.php:300
+msgid "Only show one-way connections"
+msgstr ""
+
+#: ../../mod/connections.php:345
#, php-format
msgid "%1$s [%2$s]"
msgstr ""
-#: ../../mod/connections.php:332
+#: ../../mod/connections.php:346
msgid "Edit contact"
msgstr ""
-#: ../../mod/connections.php:355
+#: ../../mod/connections.php:369
msgid "Search your connections"
msgstr ""
-#: ../../mod/connections.php:356
+#: ../../mod/connections.php:370
msgid "Finding: "
msgstr ""
@@ -6650,15 +6749,15 @@ msgstr ""
msgid "Suggest a friend for %s"
msgstr ""
-#: ../../mod/editblock.php:86
+#: ../../mod/editblock.php:77
msgid "Edit Block"
msgstr ""
-#: ../../mod/editblock.php:96
+#: ../../mod/editblock.php:87
msgid "Delete block?"
msgstr ""
-#: ../../mod/editblock.php:163
+#: ../../mod/editblock.php:154
msgid "Delete Block"
msgstr ""
@@ -7031,229 +7130,257 @@ msgstr ""
msgid "posted an event"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:76
-msgid "Scheme Default"
-msgstr ""
-
-#: ../../view/theme/redbasic/php/config.php:87
-msgid "silver"
-msgstr ""
-
-#: ../../view/theme/redbasic/php/config.php:98
-#: ../../view/theme/apw/php/config.php:234
+#: ../../view/theme/redbasic/php/config.php:96
+#: ../../view/theme/apw/php/config.php:259
#: ../../view/theme/blogga/view/theme/blog/config.php:69
#: ../../view/theme/blogga/php/config.php:69
msgid "Theme settings"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:99
-#: ../../view/theme/apw/php/config.php:235
+#: ../../view/theme/redbasic/php/config.php:97
+#: ../../view/theme/apw/php/config.php:260
msgid "Set scheme"
msgstr ""
+#: ../../view/theme/redbasic/php/config.php:98
+msgid "Narrow navbar"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:99
+msgid "Navigation bar background colour"
+msgstr ""
+
#: ../../view/theme/redbasic/php/config.php:100
-msgid "Navigation bar colour"
+msgid "Navigation bar gradient top colour"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:101
-msgid "link colour"
+msgid "Navigation bar gradient bottom colour"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:102
-msgid "Set font-colour for banner"
+msgid "Navigation active button gradient top colour"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:103
-msgid "Set the background colour"
+msgid "Navigation active button gradient bottom colour"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:104
-msgid "Set the background image"
+msgid "Navigation bar border colour "
msgstr ""
#: ../../view/theme/redbasic/php/config.php:105
-msgid "Set the background colour of items"
+msgid "Navigation bar icon colour "
msgstr ""
#: ../../view/theme/redbasic/php/config.php:106
-msgid "Set the opacity of items"
+msgid "Navigation bar active icon colour "
msgstr ""
#: ../../view/theme/redbasic/php/config.php:107
-msgid "Set the basic colour for item icons"
+msgid "link colour"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:108
-msgid "Set the hover colour for item icons"
+msgid "Set font-colour for banner"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:109
-msgid "Set font-size for the entire application"
+msgid "Set the background colour"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:110
-#: ../../view/theme/apw/php/config.php:236
-msgid "Set font-size for posts and comments"
+msgid "Set the background image"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:111
-msgid "Set font-colour for posts and comments"
+msgid "Set the background colour of items"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:112
-msgid "Set radius of corners"
+msgid "Set the opacity of items"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:113
-msgid "Set shadow depth of photos"
+msgid "Set the basic colour for item icons"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:114
-msgid "Set maximum width of conversation regions"
+msgid "Set the hover colour for item icons"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:115
-msgid "Set minimum opacity of nav bar - to hide it"
+msgid "Set font-size for the entire application"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:116
-msgid "Set size of conversation author photo"
+#: ../../view/theme/apw/php/config.php:261
+msgid "Set font-size for posts and comments"
msgstr ""
#: ../../view/theme/redbasic/php/config.php:117
+msgid "Set font-colour for posts and comments"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:118
+msgid "Set radius of corners"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:119
+msgid "Set shadow depth of photos"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:120
+msgid "Set maximum width of conversation regions"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:121
+msgid "Set minimum opacity of nav bar - to hide it"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:122
+msgid "Set size of conversation author photo"
+msgstr ""
+
+#: ../../view/theme/redbasic/php/config.php:123
msgid "Set size of followup author photos"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:118
+#: ../../view/theme/redbasic/php/config.php:124
msgid "Sloppy photo albums"
msgstr ""
-#: ../../view/theme/redbasic/php/config.php:118
+#: ../../view/theme/redbasic/php/config.php:124
msgid "Are you a clean desk or a messy desk person?"
msgstr ""
-#: ../../view/theme/apw/php/config.php:193
-#: ../../view/theme/apw/php/config.php:211
+#: ../../view/theme/apw/php/config.php:202
+#: ../../view/theme/apw/php/config.php:236
msgid "Schema Default"
msgstr ""
-#: ../../view/theme/apw/php/config.php:194
+#: ../../view/theme/apw/php/config.php:203
msgid "Sans-Serif"
msgstr ""
-#: ../../view/theme/apw/php/config.php:195
+#: ../../view/theme/apw/php/config.php:204
msgid "Monospace"
msgstr ""
-#: ../../view/theme/apw/php/config.php:237
+#: ../../view/theme/apw/php/config.php:262
msgid "Set font face"
msgstr ""
-#: ../../view/theme/apw/php/config.php:238
+#: ../../view/theme/apw/php/config.php:263
msgid "Set iconset"
msgstr ""
-#: ../../view/theme/apw/php/config.php:239
+#: ../../view/theme/apw/php/config.php:264
msgid "Set big shadow size, default 15px 15px 15px"
msgstr ""
-#: ../../view/theme/apw/php/config.php:240
+#: ../../view/theme/apw/php/config.php:265
msgid "Set small shadow size, default 5px 5px 5px"
msgstr ""
-#: ../../view/theme/apw/php/config.php:241
+#: ../../view/theme/apw/php/config.php:266
msgid "Set shadow colour, default #000"
msgstr ""
-#: ../../view/theme/apw/php/config.php:242
+#: ../../view/theme/apw/php/config.php:267
msgid "Set radius size, default 5px"
msgstr ""
-#: ../../view/theme/apw/php/config.php:243
+#: ../../view/theme/apw/php/config.php:268
msgid "Set line-height for posts and comments"
msgstr ""
-#: ../../view/theme/apw/php/config.php:244
+#: ../../view/theme/apw/php/config.php:269
msgid "Set background image"
msgstr ""
-#: ../../view/theme/apw/php/config.php:245
+#: ../../view/theme/apw/php/config.php:270
+msgid "Set background attachment"
+msgstr ""
+
+#: ../../view/theme/apw/php/config.php:271
msgid "Set background colour"
msgstr ""
-#: ../../view/theme/apw/php/config.php:246
+#: ../../view/theme/apw/php/config.php:272
msgid "Set section background image"
msgstr ""
-#: ../../view/theme/apw/php/config.php:247
+#: ../../view/theme/apw/php/config.php:273
msgid "Set section background colour"
msgstr ""
-#: ../../view/theme/apw/php/config.php:248
+#: ../../view/theme/apw/php/config.php:274
msgid "Set colour of items - use hex"
msgstr ""
-#: ../../view/theme/apw/php/config.php:249
+#: ../../view/theme/apw/php/config.php:275
msgid "Set colour of links - use hex"
msgstr ""
-#: ../../view/theme/apw/php/config.php:250
+#: ../../view/theme/apw/php/config.php:276
msgid "Set max-width for items. Default 400px"
msgstr ""
-#: ../../view/theme/apw/php/config.php:251
+#: ../../view/theme/apw/php/config.php:277
msgid "Set min-width for items. Default 240px"
msgstr ""
-#: ../../view/theme/apw/php/config.php:252
+#: ../../view/theme/apw/php/config.php:278
msgid "Set the generic content wrapper width. Default 48%"
msgstr ""
-#: ../../view/theme/apw/php/config.php:253
+#: ../../view/theme/apw/php/config.php:279
msgid "Set colour of fonts - use hex"
msgstr ""
-#: ../../view/theme/apw/php/config.php:254
+#: ../../view/theme/apw/php/config.php:280
msgid "Set background-size element"
msgstr ""
-#: ../../view/theme/apw/php/config.php:255
+#: ../../view/theme/apw/php/config.php:281
msgid "Item opacity"
msgstr ""
-#: ../../view/theme/apw/php/config.php:256
+#: ../../view/theme/apw/php/config.php:282
msgid "Display post previews only"
msgstr ""
-#: ../../view/theme/apw/php/config.php:257
+#: ../../view/theme/apw/php/config.php:283
msgid "Display side bar on channel page"
msgstr ""
-#: ../../view/theme/apw/php/config.php:258
+#: ../../view/theme/apw/php/config.php:284
msgid "Colour of the navigation bar"
msgstr ""
-#: ../../view/theme/apw/php/config.php:259
+#: ../../view/theme/apw/php/config.php:285
msgid "Item float"
msgstr ""
-#: ../../view/theme/apw/php/config.php:260
+#: ../../view/theme/apw/php/config.php:286
msgid "Left offset of the section element"
msgstr ""
-#: ../../view/theme/apw/php/config.php:261
+#: ../../view/theme/apw/php/config.php:287
msgid "Right offset of the section element"
msgstr ""
-#: ../../view/theme/apw/php/config.php:262
+#: ../../view/theme/apw/php/config.php:288
msgid "Section width"
msgstr ""
-#: ../../view/theme/apw/php/config.php:263
+#: ../../view/theme/apw/php/config.php:289
msgid "Left offset of the aside"
msgstr ""
-#: ../../view/theme/apw/php/config.php:264
+#: ../../view/theme/apw/php/config.php:290
msgid "Right offset of the aside element"
msgstr ""
@@ -7272,41 +7399,41 @@ msgstr ""
msgid "Header image only on profile pages"
msgstr ""
-#: ../../boot.php:1232
+#: ../../boot.php:1236
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
-#: ../../boot.php:1235
+#: ../../boot.php:1239
#, php-format
msgid "Update Error at %s"
msgstr ""
-#: ../../boot.php:1399
+#: ../../boot.php:1403
msgid ""
"Create an account to access services and applications within the Red Matrix"
msgstr ""
-#: ../../boot.php:1427
+#: ../../boot.php:1431
msgid "Password"
msgstr ""
-#: ../../boot.php:1428
+#: ../../boot.php:1432
msgid "Remember me"
msgstr ""
-#: ../../boot.php:1433
+#: ../../boot.php:1437
msgid "Forgot your password?"
msgstr ""
-#: ../../boot.php:1498
+#: ../../boot.php:1502
msgid "permission denied"
msgstr ""
-#: ../../boot.php:1499
+#: ../../boot.php:1503
msgid "Got Zot?"
msgstr ""
-#: ../../boot.php:1899
+#: ../../boot.php:1924
msgid "toggle mobile"
msgstr ""
diff --git a/version.inc b/version.inc
index 12484d724..44e90f8eb 100644
--- a/version.inc
+++ b/version.inc
@@ -1 +1 @@
-2014-02-20.594
+2014-03-09.611
diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css
index b180bea61..00e2f30b7 100644
--- a/view/css/bootstrap-red.css
+++ b/view/css/bootstrap-red.css
@@ -105,11 +105,18 @@ nav .dropdown-menu li a {
padding: 5px 10px;
}
-nav .navbar-collapse {
- max-height: 450px;
+nav .navbar-collapse .navbar-left {
+ float: left;
}
-nav .navbar-right li:last-child {
- padding-right: 20px;
+nav .navbar-collapse .navbar-right {
+ float: right;
}
+
/* nav overrides end */
+
+.dropdown-menu img {
+ width: 32px;
+ height: 32px;
+ margin-right: 5px;
+}
diff --git a/view/css/choklet.css b/view/css/choklet.css
new file mode 100644
index 000000000..e5e0240f5
--- /dev/null
+++ b/view/css/choklet.css
@@ -0,0 +1,53 @@
+header #banner {
+ position: fixed;
+ top: 0;
+ width: 250px;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+#blog-banner {
+ position: relative;
+ margin-top: 75px;
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+nav.navbar {
+ width: 100%;
+ margin-left: 0;
+ margin-right: 0;
+}
+
+aside#region_1 {
+ display: block;
+ min-width: 210px;
+ max-width: 220px;
+ width: 20%;
+ float: left;
+ margin-left: 10px;
+}
+
+aside input[type='text'] {
+ width: 174px;
+}
+
+
+section {
+ margin-left: 15px;
+ margin-right: 15px;
+ float: left;
+ min-width: 400px;
+ width: 70%;
+ display: block;
+ padding-bottom: 350px;
+}
+
+#region_3 {
+ display: none;
+}
+
+#blog-margin {
+ margin-right: 0;
+ margin-left: 0;
+}
diff --git a/view/css/choklet_edgesthree.css b/view/css/choklet_edgesthree.css
new file mode 100644
index 000000000..ad4b4e29c
--- /dev/null
+++ b/view/css/choklet_edgesthree.css
@@ -0,0 +1,55 @@
+header #banner {
+ position: fixed;
+ top: 0;
+ width: 250px;
+ margin-left: auto;
+ margin-right: auto;
+}
+#blog-banner {
+ position: relative;
+ margin-top: 75px;
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+nav.navbar {
+ width: 90%;
+ margin-left: 5%;
+ margin-right: 5%;
+}
+
+aside#region_1 {
+ display: block;
+ min-width: 210px;
+ max-width: 220px;
+ width: 20%;
+ float: left;
+ margin-left: 10px;
+}
+
+aside input[type='text'] {
+ width: 174px;
+}
+
+
+section {
+ margin-left: 15px;
+ margin-right: 15px;
+ float: left;
+ min-width: 650px;
+ width: 60%;
+ display: block;
+ padding-bottom: 350px;
+}
+
+#region_3 {
+ float: right;
+ min-width: 210px;
+ max-width: 220px;
+ width: 20%;
+}
+
+#blog-margin {
+ margin-right: 5%;
+ margin-left: 5%;
+}
\ No newline at end of file
diff --git a/view/css/choklet_edgestwo.css b/view/css/choklet_edgestwo.css
new file mode 100644
index 000000000..57d02679e
--- /dev/null
+++ b/view/css/choklet_edgestwo.css
@@ -0,0 +1,53 @@
+header #banner {
+ position: fixed;
+ top: 0;
+ width: 250px;
+ margin-left: auto;
+ margin-right: auto;
+}
+#blog-banner {
+ position: relative;
+ margin-top: 75px;
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+nav.navbar {
+ width: 90%;
+ margin-left: 5%;
+ margin-right: 5%;
+}
+
+aside#region_1 {
+ display: block;
+ min-width: 210px;
+ max-width: 220px;
+ width: 20%;
+ float: left;
+ margin-left: 10px;
+}
+
+aside input[type='text'] {
+ width: 174px;
+}
+
+
+section {
+ margin-left: 15px;
+ margin-right: 15px;
+ float: left;
+ min-width: 400px;
+ width: 70%;
+ display: block;
+ padding-bottom: 350px;
+}
+
+#region_3 {
+ display: none;
+}
+
+
+#blog-margin {
+ margin-right: 5%;
+ margin-left: 5%;
+}
\ No newline at end of file
diff --git a/view/css/choklet_full.css b/view/css/choklet_full.css
new file mode 100644
index 000000000..883bb1ed3
--- /dev/null
+++ b/view/css/choklet_full.css
@@ -0,0 +1,49 @@
+#blog-banner {
+ position: relative;
+ margin-top: 45px;
+ width: 100%;
+ height: 100px;
+ margin-bottom: 20px;
+}
+
+nav.navbar {
+ width: 90%;
+ margin-left: 5%;
+ margin-right: 5%;
+}
+
+aside#region_1 {
+ display: block;
+ min-width: 210px;
+ max-width: 220px;
+ width: 20%;
+ float: left;
+ margin-left: 10px;
+}
+
+aside input[type='text'] {
+ width: 174px;
+}
+
+
+section {
+ margin-left: 15px;
+ margin-right: 15px;
+ float: left;
+ min-width: 650px;
+ width: 60%;
+ display: block;
+ padding-bottom: 350px;
+}
+
+#region_3 {
+ float: right;
+ min-width: 210px;
+ max-width: 220px;
+ width: 20%;
+}
+
+#blog-margin {
+ margin-right: 5%;
+ margin-left: 5%;
+}
\ No newline at end of file
diff --git a/view/css/choklet_three.css b/view/css/choklet_three.css
new file mode 100644
index 000000000..5bbff0e3b
--- /dev/null
+++ b/view/css/choklet_three.css
@@ -0,0 +1,51 @@
+header #banner {
+ position: fixed;
+ top: 0;
+ width: 250px;
+ margin-left: auto;
+ margin-right: auto;
+}
+#blog-banner {
+ position: relative;
+ margin-top: 75px;
+ width: 100%;
+ margin-bottom: 20px;
+}
+
+nav.navbar {
+ width: 100%;
+ margin-left: 0;
+ margin-right: 0;
+}
+
+aside#region_1 {
+ display: block;
+ min-width: 210px;
+ max-width: 220px;
+ width: 20%;
+ float: left;
+ margin-left: 10px;
+}
+
+aside input[type='text'] {
+ width: 174px;
+}
+
+
+section {
+ margin-left: 15px;
+ margin-right: 15px;
+ float: left;
+ min-width: 650px;
+ width: 60%;
+ display: block;
+ padding-bottom: 350px;
+}
+
+#region_3 {
+ float: right;
+ min-width: 210px;
+ max-width: 220px;
+ width: 20%;
+}
+
diff --git a/view/css/conversation.css b/view/css/conversation.css
index 3396863e7..3de9a1ec9 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -113,7 +113,7 @@
/* conversation */
.thread-wrapper.toplevel_item {
- width: 92%;
+ width: 90%;
}
/* conv_item */
@@ -306,7 +306,6 @@
.like-rotator {
float: left;
margin: 8px;
- color: $toolicon_colour;
}
.wall-item-delete-wrapper {
diff --git a/view/css/default.css b/view/css/default.css
index 4afcbf1d5..a98374960 100644
--- a/view/css/default.css
+++ b/view/css/default.css
@@ -1,22 +1,25 @@
+header #banner {
+ position: fixed;
+ top: 0;
+ width: 250px;
+ margin-left: auto;
+ margin-right: auto;
+}
+
aside#region_1 {
- display: block;
- width: 210px;
- position: absolute;
- top: 65px;
- left: 0;
- margin-left: 10px;
+ min-width: 210px;
+ display: table-cell;
+ vertical-align: top;
+ padding: 65px 10px 10px 10px;
}
aside input[type='text'] {
width: 174px;
}
-
section {
- position: absolute;
- top: 65px;
- left: 250px;
- display: block;
- right: 15px;
- padding-bottom: 350px;
+ width: 100%;
+ display: table-cell;
+ vertical-align: top;
+ padding: 65px 15px 200px 10px;
}
diff --git a/view/css/full.css b/view/css/full.css
index 2e710df1d..38864925f 100644
--- a/view/css/full.css
+++ b/view/css/full.css
@@ -1,3 +1,10 @@
+header #banner {
+ position: fixed;
+ top: 0;
+ width: 250px;
+ margin-left: auto;
+ margin-right: auto;
+}
nav {
height: 24px;
diff --git a/view/css/mod_connedit.css b/view/css/mod_connedit.css
index f6da96433..83f167915 100644
--- a/view/css/mod_connedit.css
+++ b/view/css/mod_connedit.css
@@ -14,7 +14,7 @@
margin-bottom: 5px !important;
}
-.abook-pending-contact {
+.abook-pending-contact, .abook-permschange {
background: orange;
font-weight: bold;
margin: 10px;
diff --git a/view/css/mod_viewconnections.css b/view/css/mod_viewconnections.css
new file mode 100644
index 000000000..56add4cac
--- /dev/null
+++ b/view/css/mod_viewconnections.css
@@ -0,0 +1,33 @@
+
+
+.contact-entry-wrapper {
+ float: left;
+ width: 120px;
+ height: 120px;
+ padding: 10px;
+}
+
+#contacts-search {
+ font-size: 1em;
+ width: 300px;
+}
+
+#contacts-search-end {
+ margin-bottom: 10px;
+}
+
+.contact-entry-photo-end {
+ clear: both;
+}
+
+.contact-entry-name {
+ float: left;
+ margin-left: 0px;
+ margin-right: 10px;
+ width: 120px;
+ overflow: hidden;
+}
+
+.contact-entry-end {
+ clear: both;
+}
diff --git a/view/de/messages.po b/view/de/messages.po
index f98726f4d..fe7074d5a 100644
--- a/view/de/messages.po
+++ b/view/de/messages.po
@@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Red Matrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-14 00:02-0800\n"
-"PO-Revision-Date: 2014-02-16 07:16+0000\n"
+"POT-Creation-Date: 2014-02-21 00:03-0800\n"
+"PO-Revision-Date: 2014-02-22 12:04+0000\n"
"Last-Translator: bavatar \n"
"Language-Team: German (http://www.transifex.com/projects/p/red-matrix/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -34,7 +34,7 @@ msgid "Categories"
msgstr "Kategorien"
#: ../../include/widgets.php:115 ../../include/widgets.php:155
-#: ../../include/Contact.php:104 ../../include/identity.php:628
+#: ../../include/Contact.php:107 ../../include/identity.php:632
#: ../../mod/directory.php:184 ../../mod/match.php:62
#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
msgid "Connect"
@@ -73,8 +73,8 @@ msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara"
msgid "Notes"
msgstr "Notizen"
-#: ../../include/widgets.php:173 ../../include/text.php:754
-#: ../../include/text.php:768 ../../mod/filer.php:36
+#: ../../include/widgets.php:173 ../../include/text.php:759
+#: ../../include/text.php:773 ../../mod/filer.php:36
msgid "Save"
msgstr "Speichern"
@@ -100,7 +100,7 @@ msgstr "Gesicherte Ordner"
msgid "Everything"
msgstr "Alles"
-#: ../../include/widgets.php:318 ../../include/items.php:3636
+#: ../../include/widgets.php:318
msgid "Archives"
msgstr "Archive"
@@ -116,7 +116,7 @@ msgstr "Ich"
msgid "Best Friends"
msgstr "Beste Freunde"
-#: ../../include/widgets.php:373 ../../include/identity.php:310
+#: ../../include/widgets.php:373 ../../include/identity.php:314
#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
msgid "Friends"
msgstr "Freunde"
@@ -179,7 +179,7 @@ msgid "Channel Sources"
msgstr "Kanal-Quellen"
#: ../../include/widgets.php:487 ../../include/nav.php:181
-#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+#: ../../mod/admin.php:838 ../../mod/admin.php:1043
msgid "Settings"
msgstr "Einstellungen"
@@ -230,7 +230,7 @@ msgstr "Besuche %1$s's %2$s"
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert."
-#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1423
+#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1425
msgid "Logout"
msgstr "Abmelden"
@@ -314,7 +314,7 @@ msgstr "Webseiten"
msgid "Your webpages"
msgstr "Deine Webseiten"
-#: ../../include/nav.php:89 ../../boot.php:1424
+#: ../../include/nav.php:89 ../../boot.php:1426
msgid "Login"
msgstr "Anmelden"
@@ -335,7 +335,7 @@ msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"
msgid "Home Page"
msgstr "Homepage"
-#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1400
+#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1402
msgid "Register"
msgstr "Registrieren"
@@ -359,8 +359,8 @@ msgstr "Apps"
msgid "Addon applications, utilities, games"
msgstr "Addon Programme, Helferlein, Spiele"
-#: ../../include/nav.php:139 ../../include/text.php:752
-#: ../../include/text.php:766 ../../mod/search.php:29
+#: ../../include/nav.php:139 ../../include/text.php:757
+#: ../../include/text.php:771 ../../mod/search.php:29
msgid "Search"
msgstr "Suche"
@@ -520,320 +520,320 @@ msgstr "älter"
msgid "newer"
msgstr "neuer"
-#: ../../include/text.php:670
+#: ../../include/text.php:675
msgid "No connections"
msgstr "Keine Verbindungen"
-#: ../../include/text.php:681
+#: ../../include/text.php:686
#, php-format
msgid "%d Connection"
msgid_plural "%d Connections"
msgstr[0] "%d Verbindung"
msgstr[1] "%d Verbindungen"
-#: ../../include/text.php:693
+#: ../../include/text.php:698
msgid "View Connections"
msgstr "Verbindungen anzeigen"
-#: ../../include/text.php:834
+#: ../../include/text.php:839
msgid "poke"
msgstr "anstupsen"
-#: ../../include/text.php:834 ../../include/conversation.php:240
+#: ../../include/text.php:839 ../../include/conversation.php:240
msgid "poked"
msgstr "stupste"
-#: ../../include/text.php:835
+#: ../../include/text.php:840
msgid "ping"
msgstr "anpingen"
-#: ../../include/text.php:835
+#: ../../include/text.php:840
msgid "pinged"
msgstr "pingte"
-#: ../../include/text.php:836
+#: ../../include/text.php:841
msgid "prod"
msgstr "knuffen"
-#: ../../include/text.php:836
+#: ../../include/text.php:841
msgid "prodded"
msgstr "knuffte"
-#: ../../include/text.php:837
+#: ../../include/text.php:842
msgid "slap"
msgstr "ohrfeigen"
-#: ../../include/text.php:837
+#: ../../include/text.php:842
msgid "slapped"
msgstr "ohrfeigte"
-#: ../../include/text.php:838
+#: ../../include/text.php:843
msgid "finger"
msgstr "befummeln"
-#: ../../include/text.php:838
+#: ../../include/text.php:843
msgid "fingered"
msgstr "befummelte"
-#: ../../include/text.php:839
+#: ../../include/text.php:844
msgid "rebuff"
msgstr "eine Abfuhr erteilen"
-#: ../../include/text.php:839
+#: ../../include/text.php:844
msgid "rebuffed"
msgstr "abfuhrerteilte"
-#: ../../include/text.php:851
+#: ../../include/text.php:856
msgid "happy"
msgstr "glücklich"
-#: ../../include/text.php:852
+#: ../../include/text.php:857
msgid "sad"
msgstr "traurig"
-#: ../../include/text.php:853
+#: ../../include/text.php:858
msgid "mellow"
msgstr "sanft"
-#: ../../include/text.php:854
+#: ../../include/text.php:859
msgid "tired"
msgstr "müde"
-#: ../../include/text.php:855
+#: ../../include/text.php:860
msgid "perky"
msgstr "frech"
-#: ../../include/text.php:856
+#: ../../include/text.php:861
msgid "angry"
msgstr "sauer"
-#: ../../include/text.php:857
+#: ../../include/text.php:862
msgid "stupified"
msgstr "verblüfft"
-#: ../../include/text.php:858
+#: ../../include/text.php:863
msgid "puzzled"
msgstr "verwirrt"
-#: ../../include/text.php:859
+#: ../../include/text.php:864
msgid "interested"
msgstr "interessiert"
-#: ../../include/text.php:860
+#: ../../include/text.php:865
msgid "bitter"
msgstr "verbittert"
-#: ../../include/text.php:861
+#: ../../include/text.php:866
msgid "cheerful"
msgstr "fröhlich"
-#: ../../include/text.php:862
+#: ../../include/text.php:867
msgid "alive"
msgstr "lebendig"
-#: ../../include/text.php:863
+#: ../../include/text.php:868
msgid "annoyed"
msgstr "verärgert"
-#: ../../include/text.php:864
+#: ../../include/text.php:869
msgid "anxious"
msgstr "unruhig"
-#: ../../include/text.php:865
+#: ../../include/text.php:870
msgid "cranky"
msgstr "schrullig"
-#: ../../include/text.php:866
+#: ../../include/text.php:871
msgid "disturbed"
msgstr "verstört"
-#: ../../include/text.php:867
+#: ../../include/text.php:872
msgid "frustrated"
msgstr "frustriert"
-#: ../../include/text.php:868
+#: ../../include/text.php:873
msgid "motivated"
msgstr "motiviert"
-#: ../../include/text.php:869
+#: ../../include/text.php:874
msgid "relaxed"
msgstr "entspannt"
-#: ../../include/text.php:870
+#: ../../include/text.php:875
msgid "surprised"
msgstr "überrascht"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Monday"
msgstr "Montag"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Tuesday"
msgstr "Dienstag"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Wednesday"
msgstr "Mittwoch"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Thursday"
msgstr "Donnerstag"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Friday"
msgstr "Freitag"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Saturday"
msgstr "Samstag"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Sunday"
msgstr "Sonntag"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "January"
msgstr "Januar"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "February"
msgstr "Februar"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "March"
msgstr "März"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "April"
msgstr "April"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "May"
msgstr "Mai"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "June"
msgstr "Juni"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "July"
msgstr "Juli"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "August"
msgstr "August"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "September"
msgstr "September"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "October"
msgstr "Oktober"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "November"
msgstr "November"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "December"
msgstr "Dezember"
-#: ../../include/text.php:1113
+#: ../../include/text.php:1118
msgid "unknown.???"
msgstr "unbekannt.???"
-#: ../../include/text.php:1114
+#: ../../include/text.php:1119
msgid "bytes"
msgstr "Bytes"
-#: ../../include/text.php:1149
+#: ../../include/text.php:1154
msgid "remove category"
msgstr "Kategorie entfernen"
-#: ../../include/text.php:1171
+#: ../../include/text.php:1176
msgid "remove from file"
msgstr "aus der Datei entfernen"
-#: ../../include/text.php:1229 ../../include/text.php:1241
+#: ../../include/text.php:1234 ../../include/text.php:1246
msgid "Click to open/close"
msgstr "Klicke zum Öffnen/Schließen"
-#: ../../include/text.php:1417 ../../mod/events.php:332
+#: ../../include/text.php:1401 ../../mod/events.php:332
msgid "link to source"
msgstr "Link zum Originalbeitrag"
-#: ../../include/text.php:1436
+#: ../../include/text.php:1420
msgid "Select a page layout: "
msgstr "Ein Seiten-Layout auswählen:"
-#: ../../include/text.php:1439 ../../include/text.php:1504
+#: ../../include/text.php:1423 ../../include/text.php:1488
msgid "default"
msgstr "Standard"
-#: ../../include/text.php:1475
+#: ../../include/text.php:1459
msgid "Page content type: "
msgstr "Content-Typ der Seite:"
-#: ../../include/text.php:1516
+#: ../../include/text.php:1500
msgid "Select an alternate language"
msgstr "Wähle eine alternative Sprache"
-#: ../../include/text.php:1637 ../../include/conversation.php:117
+#: ../../include/text.php:1621 ../../include/conversation.php:117
#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
msgid "photo"
msgstr "Foto"
-#: ../../include/text.php:1640 ../../include/conversation.php:120
+#: ../../include/text.php:1624 ../../include/conversation.php:120
#: ../../mod/tagger.php:49
msgid "event"
msgstr "Ereignis"
-#: ../../include/text.php:1643 ../../include/conversation.php:145
+#: ../../include/text.php:1627 ../../include/conversation.php:145
#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
msgid "status"
msgstr "Status"
-#: ../../include/text.php:1645 ../../include/conversation.php:147
+#: ../../include/text.php:1629 ../../include/conversation.php:147
#: ../../mod/tagger.php:55
msgid "comment"
msgstr "Kommentar"
-#: ../../include/text.php:1650
+#: ../../include/text.php:1634
msgid "activity"
msgstr "Aktivität"
-#: ../../include/text.php:1907
+#: ../../include/text.php:1891
msgid "Design"
msgstr "Design"
-#: ../../include/text.php:1909
+#: ../../include/text.php:1893
msgid "Blocks"
msgstr "Blöcke"
-#: ../../include/text.php:1910
+#: ../../include/text.php:1894
msgid "Menus"
msgstr "Menüs"
-#: ../../include/text.php:1911
+#: ../../include/text.php:1895
msgid "Layouts"
msgstr "Layouts"
-#: ../../include/text.php:1912
+#: ../../include/text.php:1896
msgid "Pages"
msgstr "Seiten"
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:594
-#: ../../include/bbcode.php:597 ../../include/bbcode.php:602
-#: ../../include/bbcode.php:605 ../../include/bbcode.php:608
-#: ../../include/bbcode.php:611 ../../include/bbcode.php:616
-#: ../../include/bbcode.php:619 ../../include/bbcode.php:624
-#: ../../include/bbcode.php:627 ../../include/bbcode.php:630
-#: ../../include/bbcode.php:633
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:601
+#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
+#: ../../include/bbcode.php:612 ../../include/bbcode.php:615
+#: ../../include/bbcode.php:618 ../../include/bbcode.php:623
+#: ../../include/bbcode.php:626 ../../include/bbcode.php:631
+#: ../../include/bbcode.php:634 ../../include/bbcode.php:637
+#: ../../include/bbcode.php:640
msgid "Image/photo"
msgstr "Bild/Foto"
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:644
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:651
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
@@ -850,15 +850,15 @@ msgstr "%1$s schrieb den folgenden %2$s %3$s"
msgid "post"
msgstr "Beitrag"
-#: ../../include/bbcode.php:562 ../../include/bbcode.php:582
+#: ../../include/bbcode.php:569 ../../include/bbcode.php:589
msgid "$1 wrote:"
msgstr "$1 schrieb:"
-#: ../../include/Contact.php:120
+#: ../../include/Contact.php:123
msgid "New window"
msgstr "Neues Fenster"
-#: ../../include/Contact.php:121
+#: ../../include/Contact.php:124
msgid "Open the selected location in a different window or browser tab"
msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab"
@@ -1131,8 +1131,8 @@ msgstr "OStatus"
msgid "RSS/Atom"
msgstr "RSS/Atom"
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:741
-#: ../../mod/admin.php:750 ../../boot.php:1426
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:742
+#: ../../mod/admin.php:751 ../../boot.php:1428
msgid "Email"
msgstr "E-Mail"
@@ -1250,7 +1250,7 @@ msgstr "Beginnt:"
msgid "Finishes:"
msgstr "Endet:"
-#: ../../include/event.php:40 ../../include/identity.php:679
+#: ../../include/event.php:40 ../../include/identity.php:683
#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
#: ../../mod/directory.php:157 ../../mod/dirprofile.php:111
msgid "Location:"
@@ -1267,7 +1267,7 @@ msgstr "Ein gelöschte Gruppe mit diesem Namen wurde gefunden. Existierende Zuga
msgid "Default privacy group for new contacts"
msgstr "Standard-Privatsphärengruppe für neue Kontakte"
-#: ../../include/group.php:242 ../../mod/admin.php:750
+#: ../../include/group.php:242 ../../mod/admin.php:751
msgid "All Channels"
msgstr "Alle Kanäle"
@@ -1418,39 +1418,40 @@ msgstr "Kann Absender nicht bestimmen."
msgid "Stored post could not be verified."
msgstr "Gespeicherter Beitrag konnten nicht überprüft werden."
-#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
+#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51
#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
#: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
#: ../../mod/photos.php:656 ../../mod/photos.php:678
msgid "Profile Photos"
msgstr "Profilfotos"
-#: ../../include/attach.php:98 ../../include/attach.php:129
-#: ../../include/attach.php:185 ../../include/attach.php:200
-#: ../../include/attach.php:233 ../../include/attach.php:247
-#: ../../include/attach.php:268 ../../include/attach.php:463
-#: ../../include/attach.php:541 ../../include/chat.php:113
-#: ../../include/photos.php:15 ../../include/items.php:3515
+#: ../../include/attach.php:119 ../../include/attach.php:166
+#: ../../include/attach.php:229 ../../include/attach.php:243
+#: ../../include/attach.php:283 ../../include/attach.php:297
+#: ../../include/attach.php:322 ../../include/attach.php:513
+#: ../../include/attach.php:585 ../../include/chat.php:113
+#: ../../include/photos.php:15 ../../include/items.php:3575
#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247
#: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13
-#: ../../mod/invite.php:104 ../../mod/item.php:182 ../../mod/item.php:190
-#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/chat.php:87
-#: ../../mod/chat.php:92 ../../mod/viewconnections.php:22
-#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
-#: ../../mod/mitem.php:73 ../../mod/group.php:9 ../../mod/viewsrc.php:12
-#: ../../mod/editpost.php:13 ../../mod/connedit.php:182
-#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/page.php:30
-#: ../../mod/page.php:80 ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/invite.php:104 ../../mod/settings.php:493 ../../mod/menu.php:44
+#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/bookmarks.php:46 ../../mod/item.php:182 ../../mod/item.php:190
+#: ../../mod/chat.php:87 ../../mod/chat.php:92
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
+#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
+#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
+#: ../../mod/layouts.php:42 ../../mod/page.php:30 ../../mod/page.php:80
+#: ../../mod/network.php:12 ../../mod/profiles.php:152
#: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/settings.php:493
-#: ../../mod/manage.php:6 ../../mod/mail.php:108 ../../mod/editlayout.php:48
-#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200
-#: ../../mod/connections.php:169 ../../mod/notifications.php:66
-#: ../../mod/blocks.php:29 ../../mod/blocks.php:44
-#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83
-#: ../../mod/poke.php:128 ../../mod/channel.php:88 ../../mod/channel.php:188
+#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
+#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
+#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
+#: ../../mod/notifications.php:66 ../../mod/blocks.php:29
+#: ../../mod/blocks.php:44 ../../mod/editwebpage.php:44
+#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128
+#: ../../mod/channel.php:88 ../../mod/channel.php:188
#: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
#: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
@@ -1461,61 +1462,61 @@ msgstr "Profilfotos"
msgid "Permission denied."
msgstr "Zugang verweigert"
-#: ../../include/attach.php:180 ../../include/attach.php:228
+#: ../../include/attach.php:224 ../../include/attach.php:278
msgid "Item was not found."
msgstr "Beitrag wurde nicht gefunden."
-#: ../../include/attach.php:281
+#: ../../include/attach.php:335
msgid "No source file."
msgstr "Keine Quelldatei."
-#: ../../include/attach.php:298
+#: ../../include/attach.php:352
msgid "Cannot locate file to replace"
msgstr "Kann Datei zum Ersetzen nicht finden"
-#: ../../include/attach.php:316
+#: ../../include/attach.php:370
msgid "Cannot locate file to revise/update"
msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden"
-#: ../../include/attach.php:327
+#: ../../include/attach.php:381
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Datei überschreitet das Größen-Limit von %d"
-#: ../../include/attach.php:339
+#: ../../include/attach.php:393
#, php-format
msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."
-#: ../../include/attach.php:423
+#: ../../include/attach.php:475
msgid "File upload failed. Possible system limit or action terminated."
msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."
-#: ../../include/attach.php:435
+#: ../../include/attach.php:487
msgid "Stored file could not be verified. Upload failed."
msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."
-#: ../../include/attach.php:479 ../../include/attach.php:496
+#: ../../include/attach.php:528 ../../include/attach.php:545
msgid "Path not available."
msgstr "Pfad nicht verfügbar."
-#: ../../include/attach.php:546
+#: ../../include/attach.php:590
msgid "Empty pathname"
msgstr "Leere Pfadangabe"
-#: ../../include/attach.php:564
+#: ../../include/attach.php:606
msgid "duplicate filename or path"
msgstr "doppelter Dateiname oder Pfad"
-#: ../../include/attach.php:589
+#: ../../include/attach.php:630
msgid "Path not found."
msgstr "Pfad nicht gefunden."
-#: ../../include/attach.php:634
+#: ../../include/attach.php:674
msgid "mkdir failed."
msgstr "mkdir fehlgeschlagen."
-#: ../../include/attach.php:638
+#: ../../include/attach.php:678
msgid "database storage failed."
msgstr "Speichern in der Datenbank fehlgeschlagen."
@@ -1558,8 +1559,8 @@ msgid "Select"
msgstr "Auswählen"
#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
-#: ../../mod/thing.php:236 ../../mod/group.php:176 ../../mod/admin.php:745
-#: ../../mod/connedit.php:359 ../../mod/settings.php:579
+#: ../../mod/thing.php:236 ../../mod/settings.php:579 ../../mod/group.php:176
+#: ../../mod/admin.php:746 ../../mod/connedit.php:359
#: ../../mod/filestorage.php:171 ../../mod/photos.php:1044
msgid "Delete"
msgstr "Löschen"
@@ -1601,7 +1602,7 @@ msgid "View in context"
msgstr "Im Zusammenhang anschauen"
#: ../../include/conversation.php:707 ../../include/conversation.php:1120
-#: ../../include/ItemObject.php:259 ../../mod/editpost.php:112
+#: ../../include/ItemObject.php:259 ../../mod/editpost.php:121
#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
#: ../../mod/photos.php:975
@@ -1732,7 +1733,7 @@ msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Verfällt YYYY-MM-DD HH;MM"
#: ../../include/conversation.php:1083 ../../include/ItemObject.php:557
-#: ../../mod/webpages.php:122 ../../mod/editpost.php:132
+#: ../../mod/webpages.php:122 ../../mod/editpost.php:141
#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
#: ../../mod/editblock.php:151 ../../mod/photos.php:995
msgid "Preview"
@@ -1746,7 +1747,7 @@ msgstr "Teilen"
msgid "Page link title"
msgstr "Seitentitel-Link"
-#: ../../include/conversation.php:1101 ../../mod/editpost.php:104
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:113
#: ../../mod/mail.php:219 ../../mod/mail.php:332 ../../mod/editlayout.php:107
#: ../../mod/editwebpage.php:145 ../../mod/editblock.php:121
msgid "Upload photo"
@@ -1756,7 +1757,7 @@ msgstr "Foto hochladen"
msgid "upload photo"
msgstr "Foto hochladen"
-#: ../../include/conversation.php:1103 ../../mod/editpost.php:105
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:114
#: ../../mod/mail.php:220 ../../mod/mail.php:333 ../../mod/editlayout.php:108
#: ../../mod/editwebpage.php:146 ../../mod/editblock.php:122
msgid "Attach file"
@@ -1766,7 +1767,7 @@ msgstr "Datei anhängen"
msgid "attach file"
msgstr "Datei anfügen"
-#: ../../include/conversation.php:1105 ../../mod/editpost.php:106
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:115
#: ../../mod/mail.php:221 ../../mod/mail.php:334 ../../mod/editlayout.php:109
#: ../../mod/editwebpage.php:147 ../../mod/editblock.php:123
msgid "Insert web link"
@@ -1792,7 +1793,7 @@ msgstr "Audio-Link einfügen"
msgid "audio link"
msgstr "Audio-Link"
-#: ../../include/conversation.php:1111 ../../mod/editpost.php:110
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:119
#: ../../mod/editlayout.php:113 ../../mod/editwebpage.php:151
#: ../../mod/editblock.php:127
msgid "Set your location"
@@ -1802,7 +1803,7 @@ msgstr "Standort"
msgid "set location"
msgstr "Standort"
-#: ../../include/conversation.php:1113 ../../mod/editpost.php:111
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:120
#: ../../mod/editlayout.php:114 ../../mod/editwebpage.php:152
#: ../../mod/editblock.php:128
msgid "Clear browser location"
@@ -1812,19 +1813,19 @@ msgstr "Browser-Standort löschen"
msgid "clear location"
msgstr "Standort löschen"
-#: ../../include/conversation.php:1116 ../../mod/editpost.php:124
+#: ../../include/conversation.php:1116 ../../mod/editpost.php:133
#: ../../mod/editlayout.php:127 ../../mod/editwebpage.php:169
#: ../../mod/editblock.php:142
msgid "Set title"
msgstr "Titel"
-#: ../../include/conversation.php:1119 ../../mod/editpost.php:126
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:135
#: ../../mod/editlayout.php:130 ../../mod/editwebpage.php:171
#: ../../mod/editblock.php:145
msgid "Categories (comma-separated list)"
msgstr "Kategorien (Kommagetrennte Liste)"
-#: ../../include/conversation.php:1121 ../../mod/editpost.php:113
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:122
#: ../../mod/editlayout.php:116 ../../mod/editwebpage.php:154
#: ../../mod/editblock.php:130
msgid "Permission settings"
@@ -1834,37 +1835,37 @@ msgstr "Berechtigungs-Einstellungen"
msgid "permissions"
msgstr "Berechtigungen"
-#: ../../include/conversation.php:1130 ../../mod/editpost.php:121
+#: ../../include/conversation.php:1130 ../../mod/editpost.php:130
#: ../../mod/editlayout.php:124 ../../mod/editwebpage.php:164
#: ../../mod/editblock.php:139
msgid "Public post"
msgstr "Öffentlicher Beitrag"
-#: ../../include/conversation.php:1132 ../../mod/editpost.php:127
+#: ../../include/conversation.php:1132 ../../mod/editpost.php:136
#: ../../mod/editlayout.php:131 ../../mod/editwebpage.php:172
#: ../../mod/editblock.php:146
msgid "Example: bob@example.com, mary@example.com"
msgstr "Beispiel: bob@example.com, mary@example.com"
-#: ../../include/conversation.php:1145 ../../mod/editpost.php:138
+#: ../../include/conversation.php:1145 ../../mod/editpost.php:147
#: ../../mod/mail.php:226 ../../mod/mail.php:339 ../../mod/editlayout.php:141
#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:156
msgid "Set expiration date"
msgstr "Verfallsdatum"
#: ../../include/conversation.php:1147 ../../include/ItemObject.php:560
-#: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
+#: ../../mod/editpost.php:149 ../../mod/mail.php:228 ../../mod/mail.php:341
msgid "Encrypt text"
msgstr "Text verschlüsseln"
-#: ../../include/conversation.php:1149 ../../mod/editpost.php:142
+#: ../../include/conversation.php:1149 ../../mod/editpost.php:151
msgid "OK"
msgstr "Ok"
-#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/editpost.php:143
-#: ../../mod/settings.php:517 ../../mod/settings.php:543
-#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
+#: ../../include/conversation.php:1150 ../../mod/settings.php:517
+#: ../../mod/settings.php:543 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:152 ../../mod/fbrowser.php:82
+#: ../../mod/fbrowser.php:117
msgid "Cancel"
msgstr "Abbrechen"
@@ -1957,238 +1958,238 @@ msgstr "Gespeicherte Lesezeichen"
msgid "Manage Webpages"
msgstr "Webseiten verwalten"
-#: ../../include/identity.php:29 ../../mod/item.php:1177
+#: ../../include/identity.php:30 ../../mod/item.php:1187
msgid "Unable to obtain identity information from database"
msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen"
-#: ../../include/identity.php:62
+#: ../../include/identity.php:63
msgid "Empty name"
msgstr "Namensfeld leer"
-#: ../../include/identity.php:64
+#: ../../include/identity.php:65
msgid "Name too long"
msgstr "Name ist zu lang"
-#: ../../include/identity.php:143
+#: ../../include/identity.php:147
msgid "No account identifier"
msgstr "Keine Account-Kennung"
-#: ../../include/identity.php:153
+#: ../../include/identity.php:157
msgid "Nickname is required."
msgstr "Spitzname ist erforderlich."
-#: ../../include/identity.php:167
+#: ../../include/identity.php:171
msgid ""
"Nickname has unsupported characters or is already being used on this site."
msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."
-#: ../../include/identity.php:226
+#: ../../include/identity.php:230
msgid "Unable to retrieve created identity"
msgstr "Kann die erstellte Identität nicht empfangen"
-#: ../../include/identity.php:285
+#: ../../include/identity.php:289
msgid "Default Profile"
msgstr "Standard-Profil"
-#: ../../include/identity.php:477
+#: ../../include/identity.php:481
msgid "Requested channel is not available."
msgstr "Angeforderte Kanal nicht verfügbar."
-#: ../../include/identity.php:489
+#: ../../include/identity.php:493
msgid " Sorry, you don't have the permission to view this profile. "
msgstr "Entschuldigung, Du besitzt nicht die nötigen Rechte, um dieses Profil zu betrachten."
-#: ../../include/identity.php:524 ../../mod/webpages.php:8
+#: ../../include/identity.php:528 ../../mod/webpages.php:8
#: ../../mod/connect.php:13 ../../mod/layouts.php:8
#: ../../mod/achievements.php:8 ../../mod/blocks.php:10
#: ../../mod/profile.php:16 ../../mod/filestorage.php:40
msgid "Requested profile is not available."
msgstr "Erwünschte Profil ist nicht verfügbar."
-#: ../../include/identity.php:642 ../../mod/profiles.php:603
+#: ../../include/identity.php:646 ../../mod/profiles.php:603
msgid "Change profile photo"
msgstr "Profilfoto ändern"
-#: ../../include/identity.php:648
+#: ../../include/identity.php:652
msgid "Profiles"
msgstr "Profile"
-#: ../../include/identity.php:648
+#: ../../include/identity.php:652
msgid "Manage/edit profiles"
msgstr "Verwalte/Bearbeite Profile"
-#: ../../include/identity.php:649 ../../mod/profiles.php:604
+#: ../../include/identity.php:653 ../../mod/profiles.php:604
msgid "Create New Profile"
msgstr "Neues Profil erstellen"
-#: ../../include/identity.php:652
+#: ../../include/identity.php:656
msgid "Edit Profile"
msgstr "Profile bearbeiten"
-#: ../../include/identity.php:663 ../../mod/profiles.php:615
+#: ../../include/identity.php:667 ../../mod/profiles.php:615
msgid "Profile Image"
msgstr "Profilfoto:"
-#: ../../include/identity.php:666 ../../mod/profiles.php:618
+#: ../../include/identity.php:670 ../../mod/profiles.php:618
msgid "visible to everybody"
msgstr "sichtbar für jeden"
-#: ../../include/identity.php:667 ../../mod/profiles.php:619
+#: ../../include/identity.php:671 ../../mod/profiles.php:619
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
-#: ../../include/identity.php:681 ../../include/identity.php:908
+#: ../../include/identity.php:685 ../../include/identity.php:912
#: ../../mod/directory.php:159
msgid "Gender:"
msgstr "Geschlecht:"
-#: ../../include/identity.php:682 ../../include/identity.php:928
+#: ../../include/identity.php:686 ../../include/identity.php:932
#: ../../mod/directory.php:161
msgid "Status:"
msgstr "Status:"
-#: ../../include/identity.php:683 ../../include/identity.php:939
+#: ../../include/identity.php:687 ../../include/identity.php:943
#: ../../mod/directory.php:163
msgid "Homepage:"
msgstr "Homepage:"
-#: ../../include/identity.php:684 ../../mod/dirprofile.php:157
+#: ../../include/identity.php:688 ../../mod/dirprofile.php:157
msgid "Online Now"
msgstr "gerade online"
-#: ../../include/identity.php:752 ../../include/identity.php:832
+#: ../../include/identity.php:756 ../../include/identity.php:836
#: ../../mod/ping.php:262
msgid "g A l F d"
msgstr "l, d. F G \\\\U\\\\h\\\\r"
-#: ../../include/identity.php:753 ../../include/identity.php:833
+#: ../../include/identity.php:757 ../../include/identity.php:837
msgid "F d"
msgstr "d. F"
-#: ../../include/identity.php:798 ../../include/identity.php:873
+#: ../../include/identity.php:802 ../../include/identity.php:877
#: ../../mod/ping.php:284
msgid "[today]"
msgstr "[Heute]"
-#: ../../include/identity.php:810
+#: ../../include/identity.php:814
msgid "Birthday Reminders"
msgstr "Geburtstags Erinnerungen"
-#: ../../include/identity.php:811
+#: ../../include/identity.php:815
msgid "Birthdays this week:"
msgstr "Geburtstage in dieser Woche:"
-#: ../../include/identity.php:866
+#: ../../include/identity.php:870
msgid "[No description]"
msgstr "[Keine Beschreibung]"
-#: ../../include/identity.php:884
+#: ../../include/identity.php:888
msgid "Event Reminders"
msgstr "Veranstaltungs- Erinnerungen"
-#: ../../include/identity.php:885
+#: ../../include/identity.php:889
msgid "Events this week:"
msgstr "Veranstaltungen in dieser Woche:"
-#: ../../include/identity.php:898 ../../include/identity.php:982
+#: ../../include/identity.php:902 ../../include/identity.php:986
#: ../../mod/profperm.php:107
msgid "Profile"
msgstr "Profil"
-#: ../../include/identity.php:906 ../../mod/settings.php:924
+#: ../../include/identity.php:910 ../../mod/settings.php:937
msgid "Full Name:"
msgstr "Voller Name:"
-#: ../../include/identity.php:913
+#: ../../include/identity.php:917
msgid "j F, Y"
msgstr "j F, Y"
-#: ../../include/identity.php:914
+#: ../../include/identity.php:918
msgid "j F"
msgstr "j F"
-#: ../../include/identity.php:921
+#: ../../include/identity.php:925
msgid "Birthday:"
msgstr "Geburtstag:"
-#: ../../include/identity.php:925
+#: ../../include/identity.php:929
msgid "Age:"
msgstr "Alter:"
-#: ../../include/identity.php:934
+#: ../../include/identity.php:938
#, php-format
msgid "for %1$d %2$s"
msgstr "seit %1$d %2$s"
-#: ../../include/identity.php:937 ../../mod/profiles.php:526
+#: ../../include/identity.php:941 ../../mod/profiles.php:526
msgid "Sexual Preference:"
msgstr "Sexuelle Orientierung:"
-#: ../../include/identity.php:941 ../../mod/profiles.php:528
+#: ../../include/identity.php:945 ../../mod/profiles.php:528
msgid "Hometown:"
msgstr "Heimatstadt:"
-#: ../../include/identity.php:943
+#: ../../include/identity.php:947
msgid "Tags:"
msgstr "Schlagworte:"
-#: ../../include/identity.php:945 ../../mod/profiles.php:529
+#: ../../include/identity.php:949 ../../mod/profiles.php:529
msgid "Political Views:"
msgstr "Politische Ansichten:"
-#: ../../include/identity.php:947
+#: ../../include/identity.php:951
msgid "Religion:"
msgstr "Religion:"
-#: ../../include/identity.php:949 ../../mod/directory.php:165
+#: ../../include/identity.php:953 ../../mod/directory.php:165
msgid "About:"
msgstr "Über:"
-#: ../../include/identity.php:951
+#: ../../include/identity.php:955
msgid "Hobbies/Interests:"
msgstr "Hobbys/Interessen:"
-#: ../../include/identity.php:953 ../../mod/profiles.php:532
+#: ../../include/identity.php:957 ../../mod/profiles.php:532
msgid "Likes:"
msgstr "Gefällt:"
-#: ../../include/identity.php:955 ../../mod/profiles.php:533
+#: ../../include/identity.php:959 ../../mod/profiles.php:533
msgid "Dislikes:"
msgstr "Gefällt nicht:"
-#: ../../include/identity.php:958
+#: ../../include/identity.php:962
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformation und soziale Netzwerke:"
-#: ../../include/identity.php:960
+#: ../../include/identity.php:964
msgid "My other channels:"
msgstr "Meine anderen Kanäle:"
-#: ../../include/identity.php:962
+#: ../../include/identity.php:966
msgid "Musical interests:"
msgstr "Musikalische Interessen:"
-#: ../../include/identity.php:964
+#: ../../include/identity.php:968
msgid "Books, literature:"
msgstr "Bücher, Literatur:"
-#: ../../include/identity.php:966
+#: ../../include/identity.php:970
msgid "Television:"
msgstr "Fernsehen:"
-#: ../../include/identity.php:968
+#: ../../include/identity.php:972
msgid "Film/dance/culture/entertainment:"
msgstr "Film/Tanz/Kultur/Unterhaltung:"
-#: ../../include/identity.php:970
+#: ../../include/identity.php:974
msgid "Love/Romance:"
msgstr "Liebe/Romantik:"
-#: ../../include/identity.php:972
+#: ../../include/identity.php:976
msgid "Work/employment:"
msgstr "Arbeit/Anstellung:"
-#: ../../include/identity.php:974
+#: ../../include/identity.php:978
msgid "School/education:"
msgstr "Schule/Ausbildung:"
@@ -2197,11 +2198,12 @@ msgid "Private Message"
msgstr "Private Nachricht"
#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
-#: ../../mod/thing.php:235 ../../mod/menu.php:59 ../../mod/webpages.php:118
-#: ../../mod/editpost.php:103 ../../mod/layouts.php:102
-#: ../../mod/settings.php:578 ../../mod/editlayout.php:106
-#: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
-#: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
+#: ../../include/menu.php:41 ../../mod/thing.php:235
+#: ../../mod/settings.php:578 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/editpost.php:112 ../../mod/layouts.php:102
+#: ../../mod/editlayout.php:106 ../../mod/blocks.php:93
+#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120
+#: ../../mod/filestorage.php:170
msgid "Edit"
msgstr "Bearbeiten"
@@ -2292,15 +2294,15 @@ msgstr "Das bist Du"
#: ../../include/ItemObject.php:548 ../../mod/events.php:469
#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156
+#: ../../mod/settings.php:516 ../../mod/settings.php:628
+#: ../../mod/settings.php:656 ../../mod/settings.php:680
+#: ../../mod/settings.php:752 ../../mod/settings.php:929
#: ../../mod/chat.php:162 ../../mod/chat.php:192 ../../mod/connect.php:92
-#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
-#: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
+#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:739
+#: ../../mod/admin.php:879 ../../mod/admin.php:1078 ../../mod/admin.php:1165
#: ../../mod/connedit.php:437 ../../mod/profiles.php:506
#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
-#: ../../mod/setup.php:347 ../../mod/settings.php:516
-#: ../../mod/settings.php:628 ../../mod/settings.php:656
-#: ../../mod/settings.php:680 ../../mod/settings.php:752
-#: ../../mod/settings.php:916 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
#: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
#: ../../mod/filestorage.php:131 ../../mod/photos.php:566
#: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994
@@ -2649,7 +2651,7 @@ msgstr "Ausgeloggt."
msgid "Failed authentication"
msgstr "Authentifizierung fehlgeschlagen"
-#: ../../include/auth.php:203
+#: ../../include/auth.php:203 ../../mod/openid.php:185
msgid "Login failed."
msgstr "Login fehlgeschlagen."
@@ -3017,35 +3019,31 @@ msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements."
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."
-#: ../../include/follow.php:21
+#: ../../include/follow.php:23
msgid "Channel is blocked on this site."
msgstr "Der Kanal ist auf dieser Seite blockiert "
-#: ../../include/follow.php:26
+#: ../../include/follow.php:28
msgid "Channel location missing."
msgstr "Adresse des Kanals fehlt."
-#: ../../include/follow.php:43
-msgid "Channel discovery failed. Website may be down or misconfigured."
-msgstr "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein."
-
-#: ../../include/follow.php:51
-msgid "Response from remote channel was not understood."
-msgstr "Antwort des entfernten Kanals war unverständlich."
-
-#: ../../include/follow.php:58
+#: ../../include/follow.php:54
msgid "Response from remote channel was incomplete."
msgstr "Antwort des entfernten Kanals war unvollständig."
-#: ../../include/follow.php:129
+#: ../../include/follow.php:126
+msgid "Channel discovery failed."
+msgstr ""
+
+#: ../../include/follow.php:143
msgid "local account not found."
msgstr "Lokales Konto nicht gefunden."
-#: ../../include/follow.php:138
+#: ../../include/follow.php:152
msgid "Cannot connect to yourself."
msgstr "Du kannst Dich nicht mit Dir selbst verbinden."
-#: ../../include/security.php:280
+#: ../../include/security.php:291
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."
@@ -3149,36 +3147,40 @@ msgid ""
"Extremely advanced. Leave this alone unless you know what you are doing"
msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"
-#: ../../include/items.php:231 ../../mod/like.php:55 ../../mod/profperm.php:23
+#: ../../include/items.php:240 ../../mod/like.php:55 ../../mod/profperm.php:23
#: ../../mod/group.php:68 ../../index.php:350
msgid "Permission denied"
msgstr "Keine Berechtigung"
-#: ../../include/items.php:3453 ../../mod/thing.php:78 ../../mod/admin.php:151
-#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
+#: ../../include/items.php:756 ../../mod/connedit.php:395
+msgid "Unknown"
+msgstr "Unbekannt"
+
+#: ../../include/items.php:3513 ../../mod/thing.php:78 ../../mod/admin.php:151
+#: ../../mod/admin.php:783 ../../mod/admin.php:986 ../../mod/viewsrc.php:18
#: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
msgid "Item not found."
msgstr "Element nicht gefunden."
-#: ../../include/items.php:3809 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:3849 ../../mod/group.php:38 ../../mod/group.php:140
msgid "Collection not found."
msgstr "Sammlung nicht gefunden"
-#: ../../include/items.php:3824
+#: ../../include/items.php:3864
msgid "Collection is empty."
msgstr "Sammlung ist leer."
-#: ../../include/items.php:3831
+#: ../../include/items.php:3871
#, php-format
msgid "Collection: %s"
msgstr "Sammlung: %s"
-#: ../../include/items.php:3842
+#: ../../include/items.php:3882
#, php-format
msgid "Connection: %s"
msgstr "Verbindung: %s"
-#: ../../include/items.php:3845
+#: ../../include/items.php:3885
msgid "Connection not found."
msgstr "Die Verbindung wurde nicht gefunden."
@@ -3414,35 +3416,446 @@ msgid ""
"http://getzot.com"
msgstr "Für weitere Informationen über das Red-Matrix-Projekt und warum es das Potential hat, das Internet, wie wir es kennen, grundlegend zu verändern, besuche http://getzot.com"
-#: ../../mod/item.php:145
-msgid "Unable to locate original post."
-msgstr "Originalbeitrag nicht gefunden."
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Name ist erforderlich"
-#: ../../mod/item.php:346
-msgid "Empty post discarded."
-msgstr "Leeren Beitrag verworfen."
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Schlüssel und Geheimnis werden benötigt"
-#: ../../mod/item.php:388
-msgid "Executable content type not permitted to this channel."
-msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
+#: ../../mod/settings.php:79 ../../mod/settings.php:542
+msgid "Update"
+msgstr "Aktualisieren"
-#: ../../mod/item.php:835
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag nicht gespeichert."
+#: ../../mod/settings.php:195
+msgid "Passwords do not match. Password unchanged."
+msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
-#: ../../mod/item.php:1102 ../../mod/wall_upload.php:41
-msgid "Wall Photos"
-msgstr "Wall Fotos"
+#: ../../mod/settings.php:199
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
-#: ../../mod/item.php:1182
-#, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
-msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."
+#: ../../mod/settings.php:212
+msgid "Password changed."
+msgstr "Kennwort geändert."
-#: ../../mod/item.php:1188
-#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
+#: ../../mod/settings.php:214
+msgid "Password update failed. Please try again."
+msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
+
+#: ../../mod/settings.php:228
+msgid "Not valid email."
+msgstr "Keine gültige E-Mail Adresse."
+
+#: ../../mod/settings.php:231
+msgid "Protected email address. Cannot change to that email."
+msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
+
+#: ../../mod/settings.php:240
+msgid "System failure storing new email. Please try again."
+msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
+
+#: ../../mod/settings.php:444
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
+
+#: ../../mod/settings.php:515 ../../mod/settings.php:541
+#: ../../mod/settings.php:577
+msgid "Add application"
+msgstr "Anwendung hinzufügen"
+
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Name"
+msgstr "Name"
+
+#: ../../mod/settings.php:518
+msgid "Name of application"
+msgstr "Name der Anwendung"
+
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Consumer Key"
+msgstr "Consumer Key"
+
+#: ../../mod/settings.php:519 ../../mod/settings.php:520
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"
+
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
+
+#: ../../mod/settings.php:521 ../../mod/settings.php:547
+msgid "Redirect"
+msgstr "Umleitung"
+
+#: ../../mod/settings.php:521
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert"
+
+#: ../../mod/settings.php:522 ../../mod/settings.php:548
+msgid "Icon url"
+msgstr "Symbol-URL"
+
+#: ../../mod/settings.php:522
+msgid "Optional"
+msgstr "Optional"
+
+#: ../../mod/settings.php:533
+msgid "You can't edit this application."
+msgstr "Diese Anwendung kann nicht bearbeitet werden."
+
+#: ../../mod/settings.php:576
+msgid "Connected Apps"
+msgstr "Verbundene Apps"
+
+#: ../../mod/settings.php:580
+msgid "Client key starts with"
+msgstr "Client key beginnt mit"
+
+#: ../../mod/settings.php:581
+msgid "No name"
+msgstr "Kein Name"
+
+#: ../../mod/settings.php:582
+msgid "Remove authorization"
+msgstr "Authorisierung aufheben"
+
+#: ../../mod/settings.php:593
+msgid "No feature settings configured"
+msgstr "Keine Funktions-Einstellungen konfiguriert"
+
+#: ../../mod/settings.php:601
+msgid "Feature Settings"
+msgstr "Funktions-Einstellungen"
+
+#: ../../mod/settings.php:624
+msgid "Account Settings"
+msgstr "Konto-Einstellungen"
+
+#: ../../mod/settings.php:625
+msgid "Password Settings"
+msgstr "Kennwort-Einstellungen"
+
+#: ../../mod/settings.php:626
+msgid "New Password:"
+msgstr "Neues Passwort:"
+
+#: ../../mod/settings.php:627
+msgid "Confirm:"
+msgstr "Bestätigen:"
+
+#: ../../mod/settings.php:627
+msgid "Leave password fields blank unless changing"
+msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"
+
+#: ../../mod/settings.php:629 ../../mod/settings.php:938
+msgid "Email Address:"
+msgstr "Email Adresse:"
+
+#: ../../mod/settings.php:630
+msgid "Remove Account"
+msgstr "Konto entfernen"
+
+#: ../../mod/settings.php:631
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden."
+
+#: ../../mod/settings.php:647
+msgid "Off"
+msgstr "Aus"
+
+#: ../../mod/settings.php:647
+msgid "On"
+msgstr "An"
+
+#: ../../mod/settings.php:654
+msgid "Additional Features"
+msgstr "Zusätzliche Funktionen"
+
+#: ../../mod/settings.php:679
+msgid "Connector Settings"
+msgstr "Connector-Einstellungen"
+
+#: ../../mod/settings.php:709 ../../mod/admin.php:379
+msgid "No special theme for mobile devices"
+msgstr "Keine spezielle Theme für mobile Geräte"
+
+#: ../../mod/settings.php:750
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
+
+#: ../../mod/settings.php:756
+msgid "Display Theme:"
+msgstr "Anzeige-Theme:"
+
+#: ../../mod/settings.php:757
+msgid "Mobile Theme:"
+msgstr "Mobile Theme:"
+
+#: ../../mod/settings.php:758
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
+
+#: ../../mod/settings.php:758
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 Sekunden, kein Maximum"
+
+#: ../../mod/settings.php:759
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"
+
+#: ../../mod/settings.php:759
+msgid "Maximum of 100 items"
+msgstr "Maximum: 100 Beiträge"
+
+#: ../../mod/settings.php:760
+msgid "Don't show emoticons"
+msgstr "Emoticons nicht zeigen"
+
+#: ../../mod/settings.php:761
+msgid "Do not view remote profiles in frames"
+msgstr "Profile/Kanäle direkt anzeigen"
+
+#: ../../mod/settings.php:761
+msgid "By default open in a sub-window of your own site"
+msgstr "Wenn dieser Haken nicht gesetzt ist, werden Profile in einem Unterfenster auf Deinem eigenen Server angezeigt."
+
+#: ../../mod/settings.php:796
+msgid "Nobody except yourself"
+msgstr "Niemand außer Dir selbst"
+
+#: ../../mod/settings.php:797
+msgid "Only those you specifically allow"
+msgstr "Nur die, denen Du es explizit erlaubst"
+
+#: ../../mod/settings.php:798
+msgid "Anybody in your address book"
+msgstr "Jeder aus Ihrem Adressbuch"
+
+#: ../../mod/settings.php:799
+msgid "Anybody on this website"
+msgstr "Jeder auf dieser Website"
+
+#: ../../mod/settings.php:800
+msgid "Anybody in this network"
+msgstr "Jeder in diesem Netzwerk"
+
+#: ../../mod/settings.php:801
+msgid "Anybody authenticated"
+msgstr "Jeder authentifizierte"
+
+#: ../../mod/settings.php:802
+msgid "Anybody on the internet"
+msgstr "Jeder im Internet"
+
+#: ../../mod/settings.php:879
+msgid "Publish your default profile in the network directory"
+msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"
+
+#: ../../mod/settings.php:879 ../../mod/settings.php:884
+#: ../../mod/settings.php:955 ../../mod/api.php:106 ../../mod/profiles.php:484
+msgid "No"
+msgstr "Nein"
+
+#: ../../mod/settings.php:879 ../../mod/settings.php:884
+#: ../../mod/settings.php:955 ../../mod/api.php:105 ../../mod/profiles.php:483
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../mod/settings.php:884
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
+
+#: ../../mod/settings.php:888 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "oder"
+
+#: ../../mod/settings.php:893
+msgid "Your channel address is"
+msgstr "Deine Kanal-Adresse lautet"
+
+#: ../../mod/settings.php:927
+msgid "Channel Settings"
+msgstr "Kanal-Einstellungen"
+
+#: ../../mod/settings.php:936
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
+
+#: ../../mod/settings.php:939
+msgid "Your Timezone:"
+msgstr "Ihre Zeitzone:"
+
+#: ../../mod/settings.php:940
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
+
+#: ../../mod/settings.php:941
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
+
+#: ../../mod/settings.php:943
+msgid "Adult Content"
+msgstr "Nicht jugendfreie Inhalte"
+
+#: ../../mod/settings.php:943
+msgid ""
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"
+
+#: ../../mod/settings.php:945
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Datenschutz-Einstellungen"
+
+#: ../../mod/settings.php:947
+msgid "Hide my online presence"
+msgstr "Meine Online-Präsenz verbergen"
+
+#: ../../mod/settings.php:947
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil"
+
+#: ../../mod/settings.php:949
+msgid "Simple Privacy Settings:"
+msgstr "Einfache Privatsphäre-Einstellungen"
+
+#: ../../mod/settings.php:950
+msgid ""
+"Very Public - extremely permissive (should be used with caution)"
+msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"
+
+#: ../../mod/settings.php:951
+msgid ""
+"Typical - default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)"
+msgstr "Typisch – Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"
+
+#: ../../mod/settings.php:952
+msgid "Private - default private, never open or public"
+msgstr "Private – Default privat, nie offen oder öffentlich"
+
+#: ../../mod/settings.php:953
+msgid "Blocked - default blocked to/from everybody"
+msgstr "Blockiert – Alle per Default blockiert"
+
+#: ../../mod/settings.php:955
+msgid "Allow others to tag your posts"
+msgstr "Erlaube anderen deine Beiträge mit Schlagwörtern zu versehen"
+
+#: ../../mod/settings.php:955
+msgid ""
+"Often used by the community to retro-actively flag inappropriate content"
+msgstr ""
+
+#: ../../mod/settings.php:957
+msgid "Advanced Privacy Settings"
+msgstr "Fortgeschrittene Privatsphäre-Einstellungen"
+
+#: ../../mod/settings.php:959
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Kontaktanfragen pro Tag:"
+
+#: ../../mod/settings.php:959
+msgid "May reduce spam activity"
+msgstr "Kann die Spam-Aktivität verringern"
+
+#: ../../mod/settings.php:960
+msgid "Default Post Permissions"
+msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte"
+
+#: ../../mod/settings.php:961 ../../mod/mitem.php:134 ../../mod/mitem.php:177
+msgid "(click to open/close)"
+msgstr "(zum öffnen/schließen anklicken)"
+
+#: ../../mod/settings.php:972
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
+
+#: ../../mod/settings.php:972
+msgid "Useful to reduce spamming"
+msgstr "Nützlich, um Spam zu verringern"
+
+#: ../../mod/settings.php:975
+msgid "Notification Settings"
+msgstr "Benachrichtigungs-Einstellungen"
+
+#: ../../mod/settings.php:976
+msgid "By default post a status message when:"
+msgstr "Sende standardmäßig Status-Nachrichten, wenn:"
+
+#: ../../mod/settings.php:977
+msgid "accepting a friend request"
+msgstr "Du eine Kontaktanfrage annimmst"
+
+#: ../../mod/settings.php:978
+msgid "joining a forum/community"
+msgstr "Du einem Forum beitrittst"
+
+#: ../../mod/settings.php:979
+msgid "making an interesting profile change"
+msgstr "Du eine interessante Änderung an Deinem Profil vornimmst"
+
+#: ../../mod/settings.php:980
+msgid "Send a notification email when:"
+msgstr "Eine E-Mail-Benachrichtigung senden, wenn:"
+
+#: ../../mod/settings.php:981
+msgid "You receive an introduction"
+msgstr "Du eine Vorstellung erhältst"
+
+#: ../../mod/settings.php:982
+msgid "Your introductions are confirmed"
+msgstr "Deine Vorstellung bestätigt wurde."
+
+#: ../../mod/settings.php:983
+msgid "Someone writes on your profile wall"
+msgstr "Jemand auf Deine Pinnwand schreibt"
+
+#: ../../mod/settings.php:984
+msgid "Someone writes a followup comment"
+msgstr "Jemand einen Beitrag kommentiert"
+
+#: ../../mod/settings.php:985
+msgid "You receive a private message"
+msgstr "Du eine private Nachricht erhältst"
+
+#: ../../mod/settings.php:986
+msgid "You receive a friend suggestion"
+msgstr "Du einen Kontaktvorschlag erhältst"
+
+#: ../../mod/settings.php:987
+msgid "You are tagged in a post"
+msgstr "Du in einem Beitrag erwähnt wurdest"
+
+#: ../../mod/settings.php:988
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"
+
+#: ../../mod/settings.php:991
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Account- und Seitenart-Einstellungen"
+
+#: ../../mod/settings.php:992
+msgid "Change the behaviour of this account for special situations"
+msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
+
+#: ../../mod/settings.php:995
+msgid ""
+"Please enable expert mode (in Settings > "
+"Additional features) to adjust!"
+msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"
+
+#: ../../mod/settings.php:996
+msgid "Miscellaneous Settings"
+msgstr ""
+
+#: ../../mod/settings.php:998
+msgid "Personal menu to display in your channel pages"
+msgstr "Persönliches Menü zur Anzeige auf den Seiten deines Kanals"
#: ../../mod/menu.php:21
msgid "Menu updated."
@@ -3568,16 +3981,6 @@ msgid ""
" and/or create new posts for you?"
msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"
-#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "Yes"
-msgstr "Ja"
-
-#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "No"
-msgstr "Nein"
-
#: ../../mod/apps.php:8
msgid "No installed applications."
msgstr "Keine installierten Anwendungen."
@@ -3606,6 +4009,36 @@ msgstr "Meine Lesezeichen"
msgid "My Connections Bookmarks"
msgstr "Lesezeichen meiner Kontakte"
+#: ../../mod/item.php:145
+msgid "Unable to locate original post."
+msgstr "Originalbeitrag nicht gefunden."
+
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Leeren Beitrag verworfen."
+
+#: ../../mod/item.php:388
+msgid "Executable content type not permitted to this channel."
+msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."
+
+#: ../../mod/item.php:845
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag nicht gespeichert."
+
+#: ../../mod/item.php:1112 ../../mod/wall_upload.php:34
+msgid "Wall Photos"
+msgstr "Wall Fotos"
+
+#: ../../mod/item.php:1192
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."
+
+#: ../../mod/item.php:1198
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."
+
#: ../../mod/subthread.php:105
#, php-format
msgid "%1$s is following %2$s's %3$s"
@@ -3618,7 +4051,7 @@ msgid "[Embedded content - reload page to view]"
msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"
#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
-#: ../../mod/wall_upload.php:35
+#: ../../mod/wall_upload.php:28
msgid "Channel not found."
msgstr "Kanal nicht gefunden."
@@ -3846,10 +4279,6 @@ msgstr "Neues Menü-Bestandteil"
msgid "Menu Item Permissions"
msgstr "Zugriffsrechte des Menü-Elements"
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:947
-msgid "(click to open/close)"
-msgstr "(zum öffnen/schließen anklicken)"
-
#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
msgid "Link text"
msgstr "Link Text"
@@ -3966,15 +4395,15 @@ msgstr "Theme-Einstellungen aktualisiert."
msgid "Site"
msgstr "Seite"
-#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
+#: ../../mod/admin.php:89 ../../mod/admin.php:738 ../../mod/admin.php:750
msgid "Users"
msgstr "Benutzer"
-#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
+#: ../../mod/admin.php:90 ../../mod/admin.php:836 ../../mod/admin.php:878
msgid "Plugins"
msgstr "Plug-Ins"
-#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
+#: ../../mod/admin.php:91 ../../mod/admin.php:1041 ../../mod/admin.php:1077
msgid "Themes"
msgstr "Themes"
@@ -3986,7 +4415,7 @@ msgstr "Server"
msgid "DB updates"
msgstr "DB-Aktualisierungen"
-#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
+#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1164
msgid "Logs"
msgstr "Protokolle"
@@ -4003,8 +4432,8 @@ msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
-#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
-#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
+#: ../../mod/admin.php:737 ../../mod/admin.php:835 ../../mod/admin.php:877
+#: ../../mod/admin.php:1040 ../../mod/admin.php:1076 ../../mod/admin.php:1163
msgid "Administration"
msgstr "Administration"
@@ -4032,10 +4461,6 @@ msgstr "Aktive Plug-Ins"
msgid "Site settings updated."
msgstr "Site-Einstellungen aktualisiert."
-#: ../../mod/admin.php:379 ../../mod/settings.php:709
-msgid "No special theme for mobile devices"
-msgstr "Keine spezielle Theme für mobile Geräte"
-
#: ../../mod/admin.php:381
msgid "No special theme for accessibility"
msgstr "Kein spezielles Accessibility-Theme vorhanden"
@@ -4278,7 +4703,7 @@ msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werd
msgid "No server found"
msgstr "Kein Server gefunden"
-#: ../../mod/admin.php:527 ../../mod/admin.php:750
+#: ../../mod/admin.php:527 ../../mod/admin.php:751
msgid "ID"
msgstr "ID"
@@ -4367,136 +4792,136 @@ msgstr "Benutzer '%s' freigegeben"
msgid "User '%s' blocked"
msgstr "Benutzer '%s' blockiert"
-#: ../../mod/admin.php:739
+#: ../../mod/admin.php:740
msgid "select all"
msgstr "Alle auswählen"
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:741
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
-#: ../../mod/admin.php:741
+#: ../../mod/admin.php:742
msgid "Request date"
msgstr "Antragsdatum"
-#: ../../mod/admin.php:742
+#: ../../mod/admin.php:743
msgid "No registrations."
msgstr "Keine Registrierungen."
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:744
msgid "Approve"
msgstr "Genehmigen"
-#: ../../mod/admin.php:744
+#: ../../mod/admin.php:745
msgid "Deny"
msgstr "Verweigern"
-#: ../../mod/admin.php:746 ../../mod/connedit.php:333
+#: ../../mod/admin.php:747 ../../mod/connedit.php:333
#: ../../mod/connedit.php:475
msgid "Block"
msgstr "Blockieren"
-#: ../../mod/admin.php:747 ../../mod/connedit.php:333
+#: ../../mod/admin.php:748 ../../mod/connedit.php:333
#: ../../mod/connedit.php:475
msgid "Unblock"
msgstr "Freigeben"
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
msgid "Register date"
msgstr "Registrierungs-Datum"
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
msgid "Last login"
msgstr "Letzte Anmeldung"
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
msgid "Expires"
msgstr "Verfällt"
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
msgid "Service Class"
msgstr "Service-Klasse"
-#: ../../mod/admin.php:752
+#: ../../mod/admin.php:753
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlles, was diese Nutzer auf dieser Seite veröffentlicht haben, wird endgültig gelöscht!\\n\\nBist Du sicher?"
-#: ../../mod/admin.php:753
+#: ../../mod/admin.php:754
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 "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"
-#: ../../mod/admin.php:794
+#: ../../mod/admin.php:795
#, php-format
msgid "Plugin %s disabled."
msgstr "Plug-In %s deaktiviert."
-#: ../../mod/admin.php:798
+#: ../../mod/admin.php:799
#, php-format
msgid "Plugin %s enabled."
msgstr "Plug-In %s aktiviert."
-#: ../../mod/admin.php:808 ../../mod/admin.php:1010
+#: ../../mod/admin.php:809 ../../mod/admin.php:1011
msgid "Disable"
msgstr "Deaktivieren"
-#: ../../mod/admin.php:810 ../../mod/admin.php:1012
+#: ../../mod/admin.php:811 ../../mod/admin.php:1013
msgid "Enable"
msgstr "Aktivieren"
-#: ../../mod/admin.php:836 ../../mod/admin.php:1041
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
msgid "Toggle"
msgstr "Umschalten"
-#: ../../mod/admin.php:844 ../../mod/admin.php:1051
+#: ../../mod/admin.php:845 ../../mod/admin.php:1052
msgid "Author: "
msgstr "Autor: "
-#: ../../mod/admin.php:845 ../../mod/admin.php:1052
+#: ../../mod/admin.php:846 ../../mod/admin.php:1053
msgid "Maintainer: "
msgstr "Betreuer:"
-#: ../../mod/admin.php:974
+#: ../../mod/admin.php:975
msgid "No themes found."
msgstr "Keine Theme gefunden."
-#: ../../mod/admin.php:1033
+#: ../../mod/admin.php:1034
msgid "Screenshot"
msgstr "Bildschirmfoto"
-#: ../../mod/admin.php:1081
+#: ../../mod/admin.php:1082
msgid "[Experimental]"
msgstr "[Experimentell]"
-#: ../../mod/admin.php:1082
+#: ../../mod/admin.php:1083
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
-#: ../../mod/admin.php:1109
+#: ../../mod/admin.php:1110
msgid "Log settings updated."
msgstr "Protokoll-Einstellungen aktualisiert."
-#: ../../mod/admin.php:1165
+#: ../../mod/admin.php:1166
msgid "Clear"
msgstr "Leeren"
-#: ../../mod/admin.php:1171
+#: ../../mod/admin.php:1172
msgid "Debugging"
msgstr "Debugging"
-#: ../../mod/admin.php:1172
+#: ../../mod/admin.php:1173
msgid "Log file"
msgstr "Protokolldatei"
-#: ../../mod/admin.php:1172
+#: ../../mod/admin.php:1173
msgid ""
"Must be writable by web server. Relative to your Red top-level directory."
msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."
-#: ../../mod/admin.php:1173
+#: ../../mod/admin.php:1174
msgid "Log level"
msgstr "Protokollstufe"
@@ -4522,17 +4947,17 @@ msgstr "Element kann nicht bearbeitet werden."
msgid "Delete item?"
msgstr "Eintrag löschen?"
-#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
+#: ../../mod/editpost.php:116 ../../mod/editlayout.php:110
#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
msgid "Insert YouTube video"
msgstr "YouTube-Video einfügen"
-#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
+#: ../../mod/editpost.php:117 ../../mod/editlayout.php:111
#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
msgid "Insert Vorbis [.ogg] video"
msgstr "Vorbis [.ogg]-Video einfügen"
-#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
+#: ../../mod/editpost.php:118 ../../mod/editlayout.php:112
#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
msgid "Insert Vorbis [.ogg] audio"
msgstr "Vorbis [.ogg]-Audio einfügen"
@@ -4702,10 +5127,6 @@ msgstr "Diese Verbindung verstecken oder wieder sichtbar machen"
msgid "Delete this connection"
msgstr "Verbindung löschen"
-#: ../../mod/connedit.php:395
-msgid "Unknown"
-msgstr "Unbekannt"
-
#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
msgid "Approve this connection"
msgstr "Verbindung genehmigen"
@@ -4902,15 +5323,29 @@ msgstr "Nicht gefunden"
msgid "Page not found."
msgstr "Seite nicht gefunden."
-#: ../../mod/rmagic.php:56
+#: ../../mod/rmagic.php:38
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der du dich anmelden wolltest. Bitte überprüfe die Schreibweise der ID noch einmal."
+
+#: ../../mod/rmagic.php:38
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautet:"
+
+#: ../../mod/rmagic.php:42
+msgid "Authentication failed."
+msgstr "Authentifizierung fehlgeschlagen."
+
+#: ../../mod/rmagic.php:78
msgid "Remote Authentication"
msgstr "Entfernte Authentifizierung"
-#: ../../mod/rmagic.php:57
+#: ../../mod/rmagic.php:79
msgid "Enter your channel address (e.g. channel@example.com)"
msgstr "Deine Kanal-Adresse (z. B. channel@example.com)"
-#: ../../mod/rmagic.php:58
+#: ../../mod/rmagic.php:80
msgid "Authenticate"
msgstr "Authentifizieren"
@@ -5200,7 +5635,7 @@ msgid ""
" logout and retry."
msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."
-#: ../../mod/post.php:256
+#: ../../mod/post.php:256 ../../mod/openid.php:70 ../../mod/openid.php:175
#, php-format
msgid "Welcome %s. Remote authentication successful."
msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich."
@@ -5649,8 +6084,9 @@ msgstr "Projekt Spenden"
#: ../../mod/siteinfo.php:94
msgid ""
"
The Red Matrix is provided for you by volunteers working in their spare "
-"time. Your support will help us to build a better web. Select the following "
-"option for a one-time donation of your choosing
"
+"time. Your support will help us to build a better, freer, and privacy "
+"respecting web. Select the following option for a one-time donation of your "
+"choosing"
msgstr ""
#: ../../mod/siteinfo.php:95
@@ -5659,7 +6095,7 @@ msgstr "
oder
"
#: ../../mod/siteinfo.php:96
msgid "Recurring Donation Options"
-msgstr ""
+msgstr "Optionen für regelmäßige Spenden"
#: ../../mod/siteinfo.php:115
msgid "Red"
@@ -5749,7 +6185,7 @@ msgid ""
"Password reset failed."
msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."
-#: ../../mod/lostpass.php:85 ../../boot.php:1434
+#: ../../mod/lostpass.php:85 ../../boot.php:1436
msgid "Password Reset"
msgstr "Zurücksetzen des Kennworts"
@@ -5798,407 +6234,6 @@ msgstr "E-Mail Adresse"
msgid "Reset"
msgstr "Zurücksetzen"
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "Name ist erforderlich"
-
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "Schlüssel und Geheimnis werden benötigt"
-
-#: ../../mod/settings.php:79 ../../mod/settings.php:542
-msgid "Update"
-msgstr "Aktualisieren"
-
-#: ../../mod/settings.php:195
-msgid "Passwords do not match. Password unchanged."
-msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert."
-
-#: ../../mod/settings.php:199
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."
-
-#: ../../mod/settings.php:212
-msgid "Password changed."
-msgstr "Kennwort geändert."
-
-#: ../../mod/settings.php:214
-msgid "Password update failed. Please try again."
-msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."
-
-#: ../../mod/settings.php:228
-msgid "Not valid email."
-msgstr "Keine gültige E-Mail Adresse."
-
-#: ../../mod/settings.php:231
-msgid "Protected email address. Cannot change to that email."
-msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."
-
-#: ../../mod/settings.php:240
-msgid "System failure storing new email. Please try again."
-msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."
-
-#: ../../mod/settings.php:444
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
-
-#: ../../mod/settings.php:515 ../../mod/settings.php:541
-#: ../../mod/settings.php:577
-msgid "Add application"
-msgstr "Anwendung hinzufügen"
-
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
-msgid "Name"
-msgstr "Name"
-
-#: ../../mod/settings.php:518
-msgid "Name of application"
-msgstr "Name der Anwendung"
-
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
-msgid "Consumer Key"
-msgstr "Consumer Key"
-
-#: ../../mod/settings.php:519 ../../mod/settings.php:520
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"
-
-#: ../../mod/settings.php:520 ../../mod/settings.php:546
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
-
-#: ../../mod/settings.php:521 ../../mod/settings.php:547
-msgid "Redirect"
-msgstr "Umleitung"
-
-#: ../../mod/settings.php:521
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert"
-
-#: ../../mod/settings.php:522 ../../mod/settings.php:548
-msgid "Icon url"
-msgstr "Symbol-URL"
-
-#: ../../mod/settings.php:522
-msgid "Optional"
-msgstr "Optional"
-
-#: ../../mod/settings.php:533
-msgid "You can't edit this application."
-msgstr "Diese Anwendung kann nicht bearbeitet werden."
-
-#: ../../mod/settings.php:576
-msgid "Connected Apps"
-msgstr "Verbundene Apps"
-
-#: ../../mod/settings.php:580
-msgid "Client key starts with"
-msgstr "Client key beginnt mit"
-
-#: ../../mod/settings.php:581
-msgid "No name"
-msgstr "Kein Name"
-
-#: ../../mod/settings.php:582
-msgid "Remove authorization"
-msgstr "Authorisierung aufheben"
-
-#: ../../mod/settings.php:593
-msgid "No feature settings configured"
-msgstr "Keine Funktions-Einstellungen konfiguriert"
-
-#: ../../mod/settings.php:601
-msgid "Feature Settings"
-msgstr "Funktions-Einstellungen"
-
-#: ../../mod/settings.php:624
-msgid "Account Settings"
-msgstr "Konto-Einstellungen"
-
-#: ../../mod/settings.php:625
-msgid "Password Settings"
-msgstr "Kennwort-Einstellungen"
-
-#: ../../mod/settings.php:626
-msgid "New Password:"
-msgstr "Neues Passwort:"
-
-#: ../../mod/settings.php:627
-msgid "Confirm:"
-msgstr "Bestätigen:"
-
-#: ../../mod/settings.php:627
-msgid "Leave password fields blank unless changing"
-msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"
-
-#: ../../mod/settings.php:629 ../../mod/settings.php:925
-msgid "Email Address:"
-msgstr "Email Adresse:"
-
-#: ../../mod/settings.php:630
-msgid "Remove Account"
-msgstr "Konto entfernen"
-
-#: ../../mod/settings.php:631
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden."
-
-#: ../../mod/settings.php:647
-msgid "Off"
-msgstr "Aus"
-
-#: ../../mod/settings.php:647
-msgid "On"
-msgstr "An"
-
-#: ../../mod/settings.php:654
-msgid "Additional Features"
-msgstr "Zusätzliche Funktionen"
-
-#: ../../mod/settings.php:679
-msgid "Connector Settings"
-msgstr "Connector-Einstellungen"
-
-#: ../../mod/settings.php:750
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
-
-#: ../../mod/settings.php:756
-msgid "Display Theme:"
-msgstr "Anzeige-Theme:"
-
-#: ../../mod/settings.php:757
-msgid "Mobile Theme:"
-msgstr "Mobile Theme:"
-
-#: ../../mod/settings.php:758
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
-
-#: ../../mod/settings.php:758
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum 10 Sekunden, kein Maximum"
-
-#: ../../mod/settings.php:759
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"
-
-#: ../../mod/settings.php:759
-msgid "Maximum of 100 items"
-msgstr "Maximum: 100 Beiträge"
-
-#: ../../mod/settings.php:760
-msgid "Don't show emoticons"
-msgstr "Emoticons nicht zeigen"
-
-#: ../../mod/settings.php:761
-msgid "Do not view remote profiles in frames"
-msgstr ""
-
-#: ../../mod/settings.php:761
-msgid "By default open in a sub-window of your own site"
-msgstr ""
-
-#: ../../mod/settings.php:796
-msgid "Nobody except yourself"
-msgstr "Niemand außer Dir selbst"
-
-#: ../../mod/settings.php:797
-msgid "Only those you specifically allow"
-msgstr "Nur die, denen Du es explizit erlaubst"
-
-#: ../../mod/settings.php:798
-msgid "Anybody in your address book"
-msgstr "Jeder aus Ihrem Adressbuch"
-
-#: ../../mod/settings.php:799
-msgid "Anybody on this website"
-msgstr "Jeder auf dieser Website"
-
-#: ../../mod/settings.php:800
-msgid "Anybody in this network"
-msgstr "Jeder in diesem Netzwerk"
-
-#: ../../mod/settings.php:801
-msgid "Anybody on the internet"
-msgstr "Jeder im Internet"
-
-#: ../../mod/settings.php:878
-msgid "Publish your default profile in the network directory"
-msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"
-
-#: ../../mod/settings.php:883
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
-
-#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr "oder"
-
-#: ../../mod/settings.php:892
-msgid "Your channel address is"
-msgstr "Deine Kanal-Adresse lautet"
-
-#: ../../mod/settings.php:914
-msgid "Channel Settings"
-msgstr "Kanal-Einstellungen"
-
-#: ../../mod/settings.php:923
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
-
-#: ../../mod/settings.php:926
-msgid "Your Timezone:"
-msgstr "Ihre Zeitzone:"
-
-#: ../../mod/settings.php:927
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
-
-#: ../../mod/settings.php:928
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
-
-#: ../../mod/settings.php:930
-msgid "Adult Content"
-msgstr "Nicht jugendfreie Inhalte"
-
-#: ../../mod/settings.php:930
-msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
-msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"
-
-#: ../../mod/settings.php:932
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Datenschutz-Einstellungen"
-
-#: ../../mod/settings.php:934
-msgid "Hide my online presence"
-msgstr "Meine Online-Präsenz verbergen"
-
-#: ../../mod/settings.php:934
-msgid "Prevents displaying in your profile that you are online"
-msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil"
-
-#: ../../mod/settings.php:936
-msgid "Simple Privacy Settings:"
-msgstr "Einfache Privatsphäre-Einstellungen"
-
-#: ../../mod/settings.php:937
-msgid ""
-"Very Public - extremely permissive (should be used with caution)"
-msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"
-
-#: ../../mod/settings.php:938
-msgid ""
-"Typical - default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)"
-msgstr "Typisch – Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"
-
-#: ../../mod/settings.php:939
-msgid "Private - default private, never open or public"
-msgstr "Private – Default privat, nie offen oder öffentlich"
-
-#: ../../mod/settings.php:940
-msgid "Blocked - default blocked to/from everybody"
-msgstr "Blockiert – Alle per Default blockiert"
-
-#: ../../mod/settings.php:943
-msgid "Advanced Privacy Settings"
-msgstr "Fortgeschrittene Privatsphäre-Einstellungen"
-
-#: ../../mod/settings.php:945
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Kontaktanfragen pro Tag:"
-
-#: ../../mod/settings.php:945
-msgid "May reduce spam activity"
-msgstr "Kann die Spam-Aktivität verringern"
-
-#: ../../mod/settings.php:946
-msgid "Default Post Permissions"
-msgstr "Standardeinstellungen für Beitrags-Zugriffsrechte"
-
-#: ../../mod/settings.php:958
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"
-
-#: ../../mod/settings.php:958
-msgid "Useful to reduce spamming"
-msgstr "Nützlich, um Spam zu verringern"
-
-#: ../../mod/settings.php:961
-msgid "Notification Settings"
-msgstr "Benachrichtigungs-Einstellungen"
-
-#: ../../mod/settings.php:962
-msgid "By default post a status message when:"
-msgstr "Sende standardmäßig Status-Nachrichten, wenn:"
-
-#: ../../mod/settings.php:963
-msgid "accepting a friend request"
-msgstr "Du eine Kontaktanfrage annimmst"
-
-#: ../../mod/settings.php:964
-msgid "joining a forum/community"
-msgstr "Du einem Forum beitrittst"
-
-#: ../../mod/settings.php:965
-msgid "making an interesting profile change"
-msgstr "Du eine interessante Änderung an Deinem Profil vornimmst"
-
-#: ../../mod/settings.php:966
-msgid "Send a notification email when:"
-msgstr "Eine E-Mail-Benachrichtigung senden, wenn:"
-
-#: ../../mod/settings.php:967
-msgid "You receive an introduction"
-msgstr "Du eine Vorstellung erhältst"
-
-#: ../../mod/settings.php:968
-msgid "Your introductions are confirmed"
-msgstr "Deine Vorstellung bestätigt wurde."
-
-#: ../../mod/settings.php:969
-msgid "Someone writes on your profile wall"
-msgstr "Jemand auf Deine Pinnwand schreibt"
-
-#: ../../mod/settings.php:970
-msgid "Someone writes a followup comment"
-msgstr "Jemand einen Beitrag kommentiert"
-
-#: ../../mod/settings.php:971
-msgid "You receive a private message"
-msgstr "Du eine private Nachricht erhältst"
-
-#: ../../mod/settings.php:972
-msgid "You receive a friend suggestion"
-msgstr "Du einen Kontaktvorschlag erhältst"
-
-#: ../../mod/settings.php:973
-msgid "You are tagged in a post"
-msgstr "Du in einem Beitrag erwähnt wurdest"
-
-#: ../../mod/settings.php:974
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"
-
-#: ../../mod/settings.php:977
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Account- und Seitenart-Einstellungen"
-
-#: ../../mod/settings.php:978
-msgid "Change the behaviour of this account for special situations"
-msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen"
-
-#: ../../mod/settings.php:981
-msgid ""
-"Please enable expert mode (in Settings > Additional features) to adjust!"
-msgstr ""
-
#: ../../mod/import.php:36
msgid "Nothing to import."
msgstr "Nichts zu importieren."
@@ -6276,32 +6311,32 @@ msgstr "Egal welche Option Du wählst, bitte lege fest, ob dieser Server die neu
msgid "Make this hub my primary location"
msgstr "Dieser Red-Server ist mein primärer Server."
-#: ../../mod/manage.php:63
+#: ../../mod/manage.php:64
#, php-format
msgid "You have created %1$.0f of %2$.0f allowed channels."
msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."
-#: ../../mod/manage.php:71
+#: ../../mod/manage.php:72
msgid "Create a new channel"
msgstr "Erzeuge neues Kanal"
-#: ../../mod/manage.php:76
+#: ../../mod/manage.php:77
msgid "Channel Manager"
msgstr "Kanal-Manager"
-#: ../../mod/manage.php:77
+#: ../../mod/manage.php:78
msgid "Current Channel"
msgstr "Aktueller Kanal"
-#: ../../mod/manage.php:79
+#: ../../mod/manage.php:80
msgid "Attach to one of your channels by selecting it."
msgstr "Wähle einen Deiner Kanäle aus, um ihn zu verwenden."
-#: ../../mod/manage.php:80
+#: ../../mod/manage.php:81
msgid "Default Channel"
msgstr "Standard Kanal"
-#: ../../mod/manage.php:81
+#: ../../mod/manage.php:82
msgid "Make Default"
msgstr "Zum Standard machen"
@@ -6407,6 +6442,10 @@ msgstr "Keine sichere Kommunikation verfügbar. Eventuell kanns
msgid "Send Reply"
msgstr "Antwort senden"
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+
#: ../../mod/editlayout.php:72
msgid "Edit Layout"
msgstr "Layout bearbeiten"
@@ -7289,41 +7328,41 @@ msgstr "Titelbild"
msgid "Header image only on profile pages"
msgstr "Titelbild nur auf Profil-Seiten anzeigen"
-#: ../../boot.php:1232
+#: ../../boot.php:1234
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."
-#: ../../boot.php:1235
+#: ../../boot.php:1237
#, php-format
msgid "Update Error at %s"
msgstr "Aktualisierungsfehler auf %s"
-#: ../../boot.php:1399
+#: ../../boot.php:1401
msgid ""
"Create an account to access services and applications within the Red Matrix"
msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."
-#: ../../boot.php:1427
+#: ../../boot.php:1429
msgid "Password"
msgstr "Kennwort"
-#: ../../boot.php:1428
+#: ../../boot.php:1430
msgid "Remember me"
msgstr "Angaben speichern"
-#: ../../boot.php:1433
+#: ../../boot.php:1435
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
-#: ../../boot.php:1498
+#: ../../boot.php:1500
msgid "permission denied"
msgstr "Zugriff verweigert"
-#: ../../boot.php:1499
+#: ../../boot.php:1501
msgid "Got Zot?"
msgstr "Haste schon Zot?"
-#: ../../boot.php:1899
+#: ../../boot.php:1906
msgid "toggle mobile"
msgstr "auf/von mobile Ansicht wechseln"
diff --git a/view/de/strings.php b/view/de/strings.php
index 4001d78be..ee694c324 100644
--- a/view/de/strings.php
+++ b/view/de/strings.php
@@ -714,9 +714,8 @@ $a->strings["This action exceeds the limits set by your subscription plan."] = "
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar.";
$a->strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert ";
$a->strings["Channel location missing."] = "Adresse des Kanals fehlt.";
-$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "Auffinden des Kanals schlug fehl. Die Webseite könnte falsch konfiguriert oder abgeschaltet sein.";
-$a->strings["Response from remote channel was not understood."] = "Antwort des entfernten Kanals war unverständlich.";
$a->strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig.";
+$a->strings["Channel discovery failed."] = "";
$a->strings["local account not found."] = "Lokales Konto nicht gefunden.";
$a->strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden.";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde.";
@@ -745,6 +744,7 @@ $a->strings["Can send me bookmarks"] = "Darf mir Lesezeichen senden";
$a->strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren";
$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust";
$a->strings["Permission denied"] = "Keine Berechtigung";
+$a->strings["Unknown"] = "Unbekannt";
$a->strings["Item not found."] = "Element nicht gefunden.";
$a->strings["Collection not found."] = "Sammlung nicht gefunden";
$a->strings["Collection is empty."] = "Sammlung ist leer.";
@@ -808,13 +808,113 @@ $a->strings["Please visit my channel at"] = "Bitte besuche meinen Kanal auf";
$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Wenn Du Dich registriert hast (egal auf welchem Server in der Red-Matrix, sie sind alle miteinander verbunden) verbinde Dich bitte mit meinem Kanal in der Matrix. Adresse:";
$a->strings["Click the [Register] link on the following page to join."] = "Klicke den [Registrieren]-Link auf der nächsten Seite, um dich anzumelden.";
$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Für weitere Informationen über das Red-Matrix-Projekt und warum es das Potential hat, das Internet, wie wir es kennen, grundlegend zu verändern, besuche http://getzot.com";
-$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden.";
-$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen.";
-$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben.";
-$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert.";
-$a->strings["Wall Photos"] = "Wall Fotos";
-$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht.";
-$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht.";
+$a->strings["Name is required"] = "Name ist erforderlich";
+$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
+$a->strings["Update"] = "Aktualisieren";
+$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
+$a->strings["Password changed."] = "Kennwort geändert.";
+$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
+$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
+$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
+$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
+$a->strings["Add application"] = "Anwendung hinzufügen";
+$a->strings["Name"] = "Name";
+$a->strings["Name of application"] = "Name der Anwendung";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Umleitung";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert";
+$a->strings["Icon url"] = "Symbol-URL";
+$a->strings["Optional"] = "Optional";
+$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
+$a->strings["Connected Apps"] = "Verbundene Apps";
+$a->strings["Client key starts with"] = "Client key beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Authorisierung aufheben";
+$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
+$a->strings["Feature Settings"] = "Funktions-Einstellungen";
+$a->strings["Account Settings"] = "Konto-Einstellungen";
+$a->strings["Password Settings"] = "Kennwort-Einstellungen";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern";
+$a->strings["Email Address:"] = "Email Adresse:";
+$a->strings["Remove Account"] = "Konto entfernen";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden.";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
+$a->strings["Additional Features"] = "Zusätzliche Funktionen";
+$a->strings["Connector Settings"] = "Connector-Einstellungen";
+$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
+$a->strings["Display Settings"] = "Anzeige-Einstellungen";
+$a->strings["Display Theme:"] = "Anzeige-Theme:";
+$a->strings["Mobile Theme:"] = "Mobile Theme:";
+$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum";
+$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:";
+$a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge";
+$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
+$a->strings["Do not view remote profiles in frames"] = "Profile/Kanäle direkt anzeigen";
+$a->strings["By default open in a sub-window of your own site"] = "Wenn dieser Haken nicht gesetzt ist, werden Profile in einem Unterfenster auf Deinem eigenen Server angezeigt.";
+$a->strings["Nobody except yourself"] = "Niemand außer Dir selbst";
+$a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst";
+$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
+$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
+$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
+$a->strings["Anybody authenticated"] = "Jeder authentifizierte";
+$a->strings["Anybody on the internet"] = "Jeder im Internet";
+$a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen";
+$a->strings["No"] = "Nein";
+$a->strings["Yes"] = "Ja";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
+$a->strings["or"] = "oder";
+$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
+$a->strings["Channel Settings"] = "Kanal-Einstellungen";
+$a->strings["Basic Settings"] = "Grundeinstellungen";
+$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
+$a->strings["Default Post Location:"] = "Standardstandort:";
+$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
+$a->strings["Adult Content"] = "Nicht jugendfreie Inhalte";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)";
+$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
+$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
+$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil";
+$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen";
+$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)";
+$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)";
+$a->strings["Private - default private, never open or public"] = "Private – Default privat, nie offen oder öffentlich";
+$a->strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle per Default blockiert";
+$a->strings["Allow others to tag your posts"] = "Erlaube anderen deine Beiträge mit Schlagwörtern zu versehen";
+$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "";
+$a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
+$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
+$a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte";
+$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
+$a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern";
+$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
+$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:";
+$a->strings["accepting a friend request"] = "Du eine Kontaktanfrage annimmst";
+$a->strings["joining a forum/community"] = "Du einem Forum beitrittst";
+$a->strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst";
+$a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:";
+$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
+$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
+$a->strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt";
+$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
+$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
+$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
+$a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest";
+$a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest";
+$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen";
+$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen";
+$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!";
+$a->strings["Miscellaneous Settings"] = "";
+$a->strings["Personal menu to display in your channel pages"] = "Persönliches Menü zur Anzeige auf den Seiten deines Kanals";
$a->strings["Menu updated."] = "Menü aktualisiert.";
$a->strings["Unable to update menu."] = "Kann Menü nicht aktualisieren.";
$a->strings["Menu created."] = "Menü erstellt.";
@@ -845,8 +945,6 @@ $a->strings["Authorize application connection"] = "Zugriff für die Anwendung au
$a->strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:";
$a->strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["No"] = "Nein";
$a->strings["No installed applications."] = "Keine installierten Anwendungen.";
$a->strings["Applications"] = "Anwendungen";
$a->strings["Edit post"] = "Bearbeite Beitrag";
@@ -854,6 +952,13 @@ $a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"
$a->strings["Bookmark added"] = "Lesezeichen hinzugefügt";
$a->strings["My Bookmarks"] = "Meine Lesezeichen";
$a->strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte";
+$a->strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden.";
+$a->strings["Empty post discarded."] = "Leeren Beitrag verworfen.";
+$a->strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben.";
+$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert.";
+$a->strings["Wall Photos"] = "Wall Fotos";
+$a->strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht.";
+$a->strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht.";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s";
$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]";
$a->strings["Channel not found."] = "Kanal nicht gefunden.";
@@ -909,7 +1014,6 @@ $a->strings["Delete this menu item"] = "Lösche dieses Menü-Bestandteil";
$a->strings["Edit this menu item"] = "Bearbeite dieses Menü-Bestandteil";
$a->strings["New Menu Element"] = "Neues Menü-Bestandteil";
$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements";
-$a->strings["(click to open/close)"] = "(zum öffnen/schließen anklicken)";
$a->strings["Link text"] = "Link Text";
$a->strings["URL of link"] = "URL des Links";
$a->strings["Use Red magic-auth if available"] = "Verwende Red Magic-Auth wenn verfügbar";
@@ -955,7 +1059,6 @@ $a->strings["Pending registrations"] = "Ausstehende Registrierungen";
$a->strings["Version"] = "Version";
$a->strings["Active plugins"] = "Aktive Plug-Ins";
$a->strings["Site settings updated."] = "Site-Einstellungen aktualisiert.";
-$a->strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte";
$a->strings["No special theme for accessibility"] = "Kein spezielles Accessibility-Theme vorhanden";
$a->strings["Closed"] = "Geschlossen";
$a->strings["Requires approval"] = "Genehmigung erforderlich";
@@ -1114,7 +1217,6 @@ $a->strings["Unhide"] = "Wieder sichtbar machen";
$a->strings["Hide"] = "Verstecken";
$a->strings["Hide or Unhide this connection"] = "Diese Verbindung verstecken oder wieder sichtbar machen";
$a->strings["Delete this connection"] = "Verbindung löschen";
-$a->strings["Unknown"] = "Unbekannt";
$a->strings["Approve this connection"] = "Verbindung genehmigen";
$a->strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen";
$a->strings["Automatic Permissions Settings"] = "Automatische Berechtigungs-Einstellungen";
@@ -1160,6 +1262,9 @@ $a->strings["Layout Name"] = "Layout-Name";
$a->strings["Help:"] = "Hilfe:";
$a->strings["Not Found"] = "Nicht gefunden";
$a->strings["Page not found."] = "Seite nicht gefunden.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der du dich anmelden wolltest. Bitte überprüfe die Schreibweise der ID noch einmal.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautet:";
+$a->strings["Authentication failed."] = "Authentifizierung fehlgeschlagen.";
$a->strings["Remote Authentication"] = "Entfernte Authentifizierung";
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)";
$a->strings["Authenticate"] = "Authentifizieren";
@@ -1330,9 +1435,9 @@ $a->strings["Version %s"] = "Version %s";
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
$a->strings["Project Donations"] = "Projekt Spenden";
-$a->strings["
The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better web. Select the following option for a one-time donation of your choosing
"] = "";
+$a->strings["
The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better, freer, and privacy respecting web. Select the following option for a one-time donation of your choosing
"] = "";
$a->strings["
or
"] = "
oder
";
-$a->strings["Recurring Donation Options"] = "";
+$a->strings["Recurring Donation Options"] = "Optionen für regelmäßige Spenden";
$a->strings["Red"] = "Red";
$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Dieser Server ist Teil der Red-Matrix – einem global vernetzten Verbund aus dezentralen Websites mit Rücksicht auf die Privatsphäre.";
$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
@@ -1362,104 +1467,6 @@ $a->strings["Forgot your Password?"] = "Kennwort vergessen?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail.";
$a->strings["Email Address"] = "E-Mail Adresse";
$a->strings["Reset"] = "Zurücksetzen";
-$a->strings["Name is required"] = "Name ist erforderlich";
-$a->strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt";
-$a->strings["Update"] = "Aktualisieren";
-$a->strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert.";
-$a->strings["Password changed."] = "Kennwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal.";
-$a->strings["Not valid email."] = "Keine gültige E-Mail Adresse.";
-$a->strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden.";
-$a->strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Anwendung hinzufügen";
-$a->strings["Name"] = "Name";
-$a->strings["Name of application"] = "Name der Anwendung";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleitung";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, wenn Deine Anwendung es nicht explizit erfordert";
-$a->strings["Icon url"] = "Symbol-URL";
-$a->strings["Optional"] = "Optional";
-$a->strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden.";
-$a->strings["Connected Apps"] = "Verbundene Apps";
-$a->strings["Client key starts with"] = "Client key beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Authorisierung aufheben";
-$a->strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert";
-$a->strings["Feature Settings"] = "Funktions-Einstellungen";
-$a->strings["Account Settings"] = "Konto-Einstellungen";
-$a->strings["Password Settings"] = "Kennwort-Einstellungen";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern";
-$a->strings["Email Address:"] = "Email Adresse:";
-$a->strings["Remove Account"] = "Konto entfernen";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Achtung: Diese Aktion ist endgültig und kann nicht rückgängig gemacht werden.";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Additional Features"] = "Zusätzliche Funktionen";
-$a->strings["Connector Settings"] = "Connector-Einstellungen";
-$a->strings["Display Settings"] = "Anzeige-Einstellungen";
-$a->strings["Display Theme:"] = "Anzeige-Theme:";
-$a->strings["Mobile Theme:"] = "Mobile Theme:";
-$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum";
-$a->strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:";
-$a->strings["Maximum of 100 items"] = "Maximum: 100 Beiträge";
-$a->strings["Don't show emoticons"] = "Emoticons nicht zeigen";
-$a->strings["Do not view remote profiles in frames"] = "";
-$a->strings["By default open in a sub-window of your own site"] = "";
-$a->strings["Nobody except yourself"] = "Niemand außer Dir selbst";
-$a->strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst";
-$a->strings["Anybody in your address book"] = "Jeder aus Ihrem Adressbuch";
-$a->strings["Anybody on this website"] = "Jeder auf dieser Website";
-$a->strings["Anybody in this network"] = "Jeder in diesem Netzwerk";
-$a->strings["Anybody on the internet"] = "Jeder im Internet";
-$a->strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
-$a->strings["or"] = "oder";
-$a->strings["Your channel address is"] = "Deine Kanal-Adresse lautet";
-$a->strings["Channel Settings"] = "Kanal-Einstellungen";
-$a->strings["Basic Settings"] = "Grundeinstellungen";
-$a->strings["Your Timezone:"] = "Ihre Zeitzone:";
-$a->strings["Default Post Location:"] = "Standardstandort:";
-$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
-$a->strings["Adult Content"] = "Nicht jugendfreie Inhalte";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)";
-$a->strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen";
-$a->strings["Hide my online presence"] = "Meine Online-Präsenz verbergen";
-$a->strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil";
-$a->strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen";
-$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)";
-$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Default öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)";
-$a->strings["Private - default private, never open or public"] = "Private – Default privat, nie offen oder öffentlich";
-$a->strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle per Default blockiert";
-$a->strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:";
-$a->strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern";
-$a->strings["Default Post Permissions"] = "Standardeinstellungen für Beitrags-Zugriffsrechte";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:";
-$a->strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern";
-$a->strings["Notification Settings"] = "Benachrichtigungs-Einstellungen";
-$a->strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:";
-$a->strings["accepting a friend request"] = "Du eine Kontaktanfrage annimmst";
-$a->strings["joining a forum/community"] = "Du einem Forum beitrittst";
-$a->strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst";
-$a->strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:";
-$a->strings["You receive an introduction"] = "Du eine Vorstellung erhältst";
-$a->strings["Your introductions are confirmed"] = "Deine Vorstellung bestätigt wurde.";
-$a->strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt";
-$a->strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert";
-$a->strings["You receive a private message"] = "Du eine private Nachricht erhältst";
-$a->strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst";
-$a->strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest";
-$a->strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest";
-$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen";
-$a->strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen";
-$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "";
$a->strings["Nothing to import."] = "Nichts zu importieren.";
$a->strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden";
$a->strings["Imported file is empty."] = "Die importierte Datei ist leer.";
@@ -1509,6 +1516,7 @@ $a->strings["Private Conversation"] = "Private Unterhaltung";
$a->strings["Delete conversation"] = "Unterhaltung löschen";
$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten.";
$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
$a->strings["Edit Layout"] = "Layout bearbeiten";
$a->strings["Delete layout?"] = "Layout löschen?";
$a->strings["Delete Layout"] = "Layout löschen";
diff --git a/view/fr/messages.po b/view/fr/messages.po
index 9df80657e..8eecf1ddd 100644
--- a/view/fr/messages.po
+++ b/view/fr/messages.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Red Matrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-07 00:03-0800\n"
-"PO-Revision-Date: 2014-02-07 20:34+0000\n"
-"Last-Translator: Olivier \n"
+"POT-Creation-Date: 2014-02-14 00:02-0800\n"
+"PO-Revision-Date: 2014-02-20 09:28+0000\n"
+"Last-Translator: fabrixxm \n"
"Language-Team: French (http://www.transifex.com/projects/p/red-matrix/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,6 +18,172 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Catégories"
+
+#: ../../include/widgets.php:115 ../../include/widgets.php:155
+#: ../../include/Contact.php:104 ../../include/identity.php:628
+#: ../../mod/directory.php:184 ../../mod/match.php:62
+#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
+msgid "Connect"
+msgstr "Relier"
+
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorer/Cacher"
+
+#: ../../include/widgets.php:123 ../../mod/connections.php:238
+msgid "Suggestions"
+msgstr "Suggestion"
+
+#: ../../include/widgets.php:124
+msgid "See more..."
+msgstr "Voir plus..."
+
+#: ../../include/widgets.php:146
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Vous avez %1$.0f des %2$.0f relations autorisées."
+
+#: ../../include/widgets.php:152
+msgid "Add New Connection"
+msgstr "Ajouter une nouvelle relation"
+
+#: ../../include/widgets.php:153
+msgid "Enter the channel address"
+msgstr "Adresse du canal"
+
+#: ../../include/widgets.php:154
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Exemple : bob@exemple.com, http://exemple.com/barbara"
+
+#: ../../include/widgets.php:171
+msgid "Notes"
+msgstr "Notes"
+
+#: ../../include/widgets.php:173 ../../include/text.php:754
+#: ../../include/text.php:768 ../../mod/filer.php:36
+msgid "Save"
+msgstr "Sauver"
+
+#: ../../include/widgets.php:243
+msgid "Remove term"
+msgstr "Retirer le terme"
+
+#: ../../include/widgets.php:252 ../../include/features.php:52
+msgid "Saved Searches"
+msgstr "Recherches sauvées"
+
+#: ../../include/widgets.php:253 ../../include/group.php:290
+msgid "add"
+msgstr "ajouter"
+
+#: ../../include/widgets.php:283 ../../include/features.php:66
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
+
+#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Tout"
+
+#: ../../include/widgets.php:318 ../../include/items.php:3636
+msgid "Archives"
+msgstr "Archives"
+
+#: ../../include/widgets.php:370
+msgid "Refresh"
+msgstr "Actualiser"
+
+#: ../../include/widgets.php:371 ../../mod/connedit.php:389
+msgid "Me"
+msgstr "Moi"
+
+#: ../../include/widgets.php:372 ../../mod/connedit.php:391
+msgid "Best Friends"
+msgstr "Mes meilleurs amis"
+
+#: ../../include/widgets.php:373 ../../include/identity.php:310
+#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
+msgid "Friends"
+msgstr "Amis"
+
+#: ../../include/widgets.php:374
+msgid "Co-workers"
+msgstr "Mes collègues"
+
+#: ../../include/widgets.php:375 ../../mod/connedit.php:393
+msgid "Former Friends"
+msgstr "Mes anciens amis"
+
+#: ../../include/widgets.php:376 ../../mod/connedit.php:394
+msgid "Acquaintances"
+msgstr "Mes accointances"
+
+#: ../../include/widgets.php:377
+msgid "Everybody"
+msgstr "Tout le monde"
+
+#: ../../include/widgets.php:409
+msgid "Account settings"
+msgstr "Compte"
+
+#: ../../include/widgets.php:415
+msgid "Channel settings"
+msgstr "Canal"
+
+#: ../../include/widgets.php:421
+msgid "Additional features"
+msgstr "Fonc. supplémentaires"
+
+#: ../../include/widgets.php:427
+msgid "Feature settings"
+msgstr "Fonctionnalités"
+
+#: ../../include/widgets.php:433
+msgid "Display settings"
+msgstr "Affichage"
+
+#: ../../include/widgets.php:439
+msgid "Connected apps"
+msgstr "Applications"
+
+#: ../../include/widgets.php:445
+msgid "Export channel"
+msgstr "Exporter canal"
+
+#: ../../include/widgets.php:457
+msgid "Automatic Permissions (Advanced)"
+msgstr "Permissions automatiques (avancé)"
+
+#: ../../include/widgets.php:467
+msgid "Premium Channel Settings"
+msgstr "Canal Premium"
+
+#: ../../include/widgets.php:476 ../../include/features.php:43
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Canaux sources"
+
+#: ../../include/widgets.php:487 ../../include/nav.php:181
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+msgid "Settings"
+msgstr "Réglages"
+
+#: ../../include/widgets.php:504
+msgid "Check Mail"
+msgstr "Vérifier courriel"
+
+#: ../../include/widgets.php:509 ../../include/nav.php:172
+msgid "New Message"
+msgstr "Nouveau message"
+
+#: ../../include/widgets.php:585
+msgid "Chat Rooms"
+msgstr "Salons"
+
#: ../../include/acl_selectors.php:235
msgid "Visible to everybody"
msgstr "Visible par tous"
@@ -191,7 +357,7 @@ msgstr "Recherche"
msgid "Search site content"
msgstr "Recherche parmi le contenu du site"
-#: ../../include/nav.php:142 ../../mod/directory.php:210
+#: ../../include/nav.php:142 ../../mod/directory.php:211
msgid "Directory"
msgstr "Annuaire"
@@ -271,10 +437,6 @@ msgstr "Boîte de réception"
msgid "Outbox"
msgstr "Boîte d'envoi"
-#: ../../include/nav.php:172 ../../include/widgets.php:509
-msgid "New Message"
-msgstr "Nouveau message"
-
#: ../../include/nav.php:175
msgid "Event Calendar"
msgstr "Calendrier des événements"
@@ -295,11 +457,6 @@ msgstr "Changer de canal"
msgid "Manage Your Channels"
msgstr "Gérer vos canaux"
-#: ../../include/nav.php:181 ../../include/widgets.php:487
-#: ../../mod/admin.php:837 ../../mod/admin.php:1042
-msgid "Settings"
-msgstr "Réglages"
-
#: ../../include/nav.php:181
msgid "Account/Channel Settings"
msgstr "Compte/Canal"
@@ -367,11 +524,6 @@ msgstr[1] "%d relations"
msgid "View Connections"
msgstr "Voir les relations"
-#: ../../include/text.php:754 ../../include/text.php:768
-#: ../../include/widgets.php:173 ../../mod/filer.php:36
-msgid "Save"
-msgstr "Sauver"
-
#: ../../include/text.php:834
msgid "poke"
msgstr "tapoter"
@@ -629,7 +781,7 @@ msgstr "événement"
#: ../../include/text.php:1643 ../../include/conversation.php:145
#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
msgid "status"
-msgstr "statut"
+msgstr "le statut"
#: ../../include/text.php:1645 ../../include/conversation.php:147
#: ../../mod/tagger.php:55
@@ -660,157 +812,36 @@ msgstr "Mises-en-page"
msgid "Pages"
msgstr "Pages"
-#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
-msgid "Categories"
-msgstr "Catégories"
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:594
+#: ../../include/bbcode.php:597 ../../include/bbcode.php:602
+#: ../../include/bbcode.php:605 ../../include/bbcode.php:608
+#: ../../include/bbcode.php:611 ../../include/bbcode.php:616
+#: ../../include/bbcode.php:619 ../../include/bbcode.php:624
+#: ../../include/bbcode.php:627 ../../include/bbcode.php:630
+#: ../../include/bbcode.php:633
+msgid "Image/photo"
+msgstr "Image/photo"
-#: ../../include/widgets.php:115 ../../include/widgets.php:155
-#: ../../include/Contact.php:104 ../../include/identity.php:628
-#: ../../mod/directory.php:183 ../../mod/match.php:62
-#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
-msgid "Connect"
-msgstr "Relier"
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:644
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
-#: ../../include/widgets.php:117 ../../mod/suggest.php:53
-msgid "Ignore/Hide"
-msgstr "Ignorer/Cacher"
+#: ../../include/bbcode.php:170
+msgid "QR code"
+msgstr "QR code"
-#: ../../include/widgets.php:123 ../../mod/connections.php:238
-msgid "Suggestions"
-msgstr "Suggestion"
-
-#: ../../include/widgets.php:124
-msgid "See more..."
-msgstr "Voir plus..."
-
-#: ../../include/widgets.php:146
+#: ../../include/bbcode.php:213
#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Vous avez %1$.0f des %2$.0f relations autorisées."
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s a écrit %2$s qui suit %3$s"
-#: ../../include/widgets.php:152
-msgid "Add New Connection"
-msgstr "Ajouter une nouvelle relation"
+#: ../../include/bbcode.php:215
+msgid "post"
+msgstr "l'article"
-#: ../../include/widgets.php:153
-msgid "Enter the channel address"
-msgstr "Adresse du canal"
-
-#: ../../include/widgets.php:154
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Exemple : bob@exemple.com, http://exemple.com/barbara"
-
-#: ../../include/widgets.php:171
-msgid "Notes"
-msgstr "Notes"
-
-#: ../../include/widgets.php:243
-msgid "Remove term"
-msgstr "Retirer le terme"
-
-#: ../../include/widgets.php:252 ../../include/features.php:52
-msgid "Saved Searches"
-msgstr "Recherches sauvées"
-
-#: ../../include/widgets.php:253 ../../include/group.php:290
-msgid "add"
-msgstr "ajouter"
-
-#: ../../include/widgets.php:283 ../../include/features.php:66
-#: ../../include/contact_widgets.php:53
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
-
-#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
-#: ../../include/contact_widgets.php:90
-msgid "Everything"
-msgstr "Tout"
-
-#: ../../include/widgets.php:318 ../../include/items.php:3613
-msgid "Archives"
-msgstr "Archives"
-
-#: ../../include/widgets.php:370
-msgid "Refresh"
-msgstr "Actualiser"
-
-#: ../../include/widgets.php:371 ../../mod/connedit.php:389
-msgid "Me"
-msgstr "Moi"
-
-#: ../../include/widgets.php:372 ../../mod/connedit.php:391
-msgid "Best Friends"
-msgstr "Mes meilleurs amis"
-
-#: ../../include/widgets.php:373 ../../include/identity.php:310
-#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
-msgid "Friends"
-msgstr "Amis"
-
-#: ../../include/widgets.php:374
-msgid "Co-workers"
-msgstr "Mes collègues"
-
-#: ../../include/widgets.php:375 ../../mod/connedit.php:393
-msgid "Former Friends"
-msgstr "Mes anciens amis"
-
-#: ../../include/widgets.php:376 ../../mod/connedit.php:394
-msgid "Acquaintances"
-msgstr "Mes accointances"
-
-#: ../../include/widgets.php:377
-msgid "Everybody"
-msgstr "Tout le monde"
-
-#: ../../include/widgets.php:409
-msgid "Account settings"
-msgstr "Compte"
-
-#: ../../include/widgets.php:415
-msgid "Channel settings"
-msgstr "Canal"
-
-#: ../../include/widgets.php:421
-msgid "Additional features"
-msgstr "Fonc. supplémentaires"
-
-#: ../../include/widgets.php:427
-msgid "Feature settings"
-msgstr "Fonctionnalités"
-
-#: ../../include/widgets.php:433
-msgid "Display settings"
-msgstr "Affichage"
-
-#: ../../include/widgets.php:439
-msgid "Connected apps"
-msgstr "Applications"
-
-#: ../../include/widgets.php:445
-msgid "Export channel"
-msgstr "Exporter canal"
-
-#: ../../include/widgets.php:457
-msgid "Automatic Permissions (Advanced)"
-msgstr "Permissions automatiques (avancé)"
-
-#: ../../include/widgets.php:467
-msgid "Premium Channel Settings"
-msgstr "Canal Premium"
-
-#: ../../include/widgets.php:476 ../../include/features.php:43
-#: ../../mod/sources.php:88
-msgid "Channel Sources"
-msgstr "Canaux sources"
-
-#: ../../include/widgets.php:504
-msgid "Check Mail"
-msgstr "Vérifier courriel"
-
-#: ../../include/widgets.php:585
-msgid "Chat Rooms"
-msgstr "Salons"
+#: ../../include/bbcode.php:562 ../../include/bbcode.php:582
+msgid "$1 wrote:"
+msgstr "$1 a écrit :"
#: ../../include/Contact.php:120
msgid "New window"
@@ -1210,7 +1241,7 @@ msgstr "Fin :"
#: ../../include/event.php:40 ../../include/identity.php:679
#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
-#: ../../mod/directory.php:156 ../../mod/dirprofile.php:111
+#: ../../mod/directory.php:157 ../../mod/dirprofile.php:111
msgid "Location:"
msgstr "Localisation :"
@@ -1253,12 +1284,12 @@ msgstr "Canaux dans aucune collection"
msgid "Delete this item?"
msgstr "Supprimer cet élément?"
-#: ../../include/js_strings.php:6 ../../include/ItemObject.php:546
-#: ../../mod/photos.php:989 ../../mod/photos.php:1076
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:547
+#: ../../mod/photos.php:993 ../../mod/photos.php:1080
msgid "Comment"
msgstr "Commenter"
-#: ../../include/js_strings.php:7 ../../include/ItemObject.php:280
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:281
#: ../../include/contact_widgets.php:125
msgid "show more"
msgstr "montrer plus"
@@ -1354,7 +1385,7 @@ msgstr "%d années"
#: ../../include/js_strings.php:30
msgid " "
-msgstr ""
+msgstr " "
#: ../../include/js_strings.php:31
msgid "timeago.numbers"
@@ -1379,7 +1410,7 @@ msgstr "Le message stocké n'a pas pu être vérifié."
#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
#: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
-#: ../../mod/photos.php:652 ../../mod/photos.php:674
+#: ../../mod/photos.php:656 ../../mod/photos.php:678
msgid "Profile Photos"
msgstr "Photos du profil"
@@ -1388,34 +1419,33 @@ msgstr "Photos du profil"
#: ../../include/attach.php:233 ../../include/attach.php:247
#: ../../include/attach.php:268 ../../include/attach.php:463
#: ../../include/attach.php:541 ../../include/chat.php:113
-#: ../../include/photos.php:15 ../../include/items.php:3492
-#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:241
-#: ../../mod/thing.php:257 ../../mod/thing.php:291 ../../mod/invite.php:13
+#: ../../include/photos.php:15 ../../include/items.php:3515
+#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247
+#: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13
#: ../../mod/invite.php:104 ../../mod/item.php:182 ../../mod/item.php:190
#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/settings.php:490
-#: ../../mod/chat.php:87 ../../mod/chat.php:92
-#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
-#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
-#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
-#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
-#: ../../mod/layouts.php:42 ../../mod/page.php:30 ../../mod/page.php:80
-#: ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/chat.php:87
+#: ../../mod/chat.php:92 ../../mod/viewconnections.php:22
+#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
+#: ../../mod/mitem.php:73 ../../mod/group.php:9 ../../mod/viewsrc.php:12
+#: ../../mod/editpost.php:13 ../../mod/connedit.php:182
+#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/page.php:30
+#: ../../mod/page.php:80 ../../mod/network.php:12 ../../mod/profiles.php:152
#: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
-#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
-#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
-#: ../../mod/notifications.php:66 ../../mod/blocks.php:29
-#: ../../mod/blocks.php:44 ../../mod/editwebpage.php:44
-#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128
-#: ../../mod/channel.php:88 ../../mod/channel.php:188
+#: ../../mod/achievements.php:27 ../../mod/settings.php:493
+#: ../../mod/manage.php:6 ../../mod/mail.php:108 ../../mod/editlayout.php:48
+#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200
+#: ../../mod/connections.php:169 ../../mod/notifications.php:66
+#: ../../mod/blocks.php:29 ../../mod/blocks.php:44
+#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83
+#: ../../mod/poke.php:128 ../../mod/channel.php:88 ../../mod/channel.php:188
#: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
#: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
#: ../../mod/filestorage.php:98 ../../mod/suggest.php:26
#: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18
-#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:522
+#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:526
#: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:351
msgid "Permission denied."
msgstr "Permission refusée."
@@ -1478,37 +1508,6 @@ msgstr "mkdir a échoué."
msgid "database storage failed."
msgstr "le stockage en BD a échoué"
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:587
-#: ../../include/bbcode.php:590 ../../include/bbcode.php:595
-#: ../../include/bbcode.php:598 ../../include/bbcode.php:601
-#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
-#: ../../include/bbcode.php:612 ../../include/bbcode.php:617
-#: ../../include/bbcode.php:620 ../../include/bbcode.php:623
-#: ../../include/bbcode.php:626
-msgid "Image/photo"
-msgstr "Image/photo"
-
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:637
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
-
-#: ../../include/bbcode.php:170
-msgid "QR code"
-msgstr "QR code"
-
-#: ../../include/bbcode.php:213
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s a écrit le %2$s suivant %3$s"
-
-#: ../../include/bbcode.php:215
-msgid "post"
-msgstr "article"
-
-#: ../../include/bbcode.php:555 ../../include/bbcode.php:575
-msgid "$1 wrote:"
-msgstr "$1 a écrit :"
-
#: ../../include/bookmarks.php:31
#, php-format
msgid "%1$s's bookmarks"
@@ -1548,9 +1547,9 @@ msgid "Select"
msgstr "Sélectionner"
#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
-#: ../../mod/thing.php:230 ../../mod/settings.php:576 ../../mod/group.php:176
-#: ../../mod/admin.php:745 ../../mod/connedit.php:359
-#: ../../mod/filestorage.php:171 ../../mod/photos.php:1040
+#: ../../mod/thing.php:236 ../../mod/group.php:176 ../../mod/admin.php:745
+#: ../../mod/connedit.php:359 ../../mod/settings.php:579
+#: ../../mod/filestorage.php:171 ../../mod/photos.php:1044
msgid "Delete"
msgstr "Supprimer"
@@ -1591,10 +1590,10 @@ msgid "View in context"
msgstr "Voir en contexte"
#: ../../include/conversation.php:707 ../../include/conversation.php:1120
-#: ../../include/ItemObject.php:258 ../../mod/editpost.php:112
+#: ../../include/ItemObject.php:259 ../../mod/editpost.php:112
#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
-#: ../../mod/photos.php:971
+#: ../../mod/photos.php:975
msgid "Please wait"
msgstr "Merci de patienter"
@@ -1721,14 +1720,14 @@ msgstr "Où êtes-vous présentement?"
msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Expire YYYY-MM-DD HH:MM"
-#: ../../include/conversation.php:1083 ../../include/ItemObject.php:556
+#: ../../include/conversation.php:1083 ../../include/ItemObject.php:557
#: ../../mod/webpages.php:122 ../../mod/editpost.php:132
#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
-#: ../../mod/editblock.php:151 ../../mod/photos.php:991
+#: ../../mod/editblock.php:151 ../../mod/photos.php:995
msgid "Preview"
msgstr "Aperçu"
-#: ../../include/conversation.php:1097 ../../mod/photos.php:970
+#: ../../include/conversation.php:1097 ../../mod/photos.php:974
msgid "Share"
msgstr "Partager"
@@ -1842,7 +1841,7 @@ msgstr "Exemple: robert@exemple.com, marie@exemple.com"
msgid "Set expiration date"
msgstr "Définir la date d'expiration"
-#: ../../include/conversation.php:1147 ../../include/ItemObject.php:559
+#: ../../include/conversation.php:1147 ../../include/ItemObject.php:560
#: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
msgid "Encrypt text"
msgstr "Chiffrer le texte"
@@ -1851,10 +1850,10 @@ msgstr "Chiffrer le texte"
msgid "OK"
msgstr "Ok"
-#: ../../include/conversation.php:1150 ../../mod/settings.php:514
-#: ../../mod/settings.php:540 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/editpost.php:143 ../../mod/fbrowser.php:82
-#: ../../mod/fbrowser.php:117
+#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/editpost.php:143
+#: ../../mod/settings.php:517 ../../mod/settings.php:543
+#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
msgid "Cancel"
msgstr "Annuler"
@@ -1947,7 +1946,7 @@ msgstr "Marque-pages sauvegardés"
msgid "Manage Webpages"
msgstr "Gérer les pages web"
-#: ../../include/identity.php:29 ../../mod/item.php:1161
+#: ../../include/identity.php:29 ../../mod/item.php:1177
msgid "Unable to obtain identity information from database"
msgstr "Impossible d'obtenir les données d'identité depuis la base de données"
@@ -2028,17 +2027,17 @@ msgid "Edit visibility"
msgstr "Éditer la visibilité"
#: ../../include/identity.php:681 ../../include/identity.php:908
-#: ../../mod/directory.php:158
+#: ../../mod/directory.php:159
msgid "Gender:"
msgstr "Sexe :"
#: ../../include/identity.php:682 ../../include/identity.php:928
-#: ../../mod/directory.php:160
+#: ../../mod/directory.php:161
msgid "Status:"
msgstr "État :"
#: ../../include/identity.php:683 ../../include/identity.php:939
-#: ../../mod/directory.php:162
+#: ../../mod/directory.php:163
msgid "Homepage:"
msgstr "Site web :"
@@ -2085,7 +2084,7 @@ msgstr "Événements cette semaine :"
msgid "Profile"
msgstr "Profil"
-#: ../../include/identity.php:906 ../../mod/settings.php:920
+#: ../../include/identity.php:906 ../../mod/settings.php:924
msgid "Full Name:"
msgstr "Nom complet :"
@@ -2130,7 +2129,7 @@ msgstr "Opinions politiques :"
msgid "Religion:"
msgstr "Religion :"
-#: ../../include/identity.php:949 ../../mod/directory.php:164
+#: ../../include/identity.php:949 ../../mod/directory.php:165
msgid "About:"
msgstr "À propos :"
@@ -2182,14 +2181,14 @@ msgstr "Travail :"
msgid "School/education:"
msgstr "Cursus :"
-#: ../../include/ItemObject.php:89 ../../mod/photos.php:843
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:847
msgid "Private Message"
msgstr "Message Privé"
#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
-#: ../../mod/thing.php:229 ../../mod/menu.php:59 ../../mod/webpages.php:118
-#: ../../mod/settings.php:575 ../../mod/editpost.php:103
-#: ../../mod/layouts.php:102 ../../mod/editlayout.php:106
+#: ../../mod/thing.php:235 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/editpost.php:103 ../../mod/layouts.php:102
+#: ../../mod/settings.php:578 ../../mod/editlayout.php:106
#: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
#: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
msgid "Edit"
@@ -2219,7 +2218,7 @@ msgstr "mis en avant"
msgid "add tag"
msgstr "étiquetter"
-#: ../../include/ItemObject.php:184 ../../mod/photos.php:968
+#: ../../include/ItemObject.php:184 ../../mod/photos.php:972
msgid "I like this (toggle)"
msgstr "J'aime (oui/non)"
@@ -2227,7 +2226,7 @@ msgstr "J'aime (oui/non)"
msgid "like"
msgstr "aime"
-#: ../../include/ItemObject.php:185 ../../mod/photos.php:969
+#: ../../include/ItemObject.php:185 ../../mod/photos.php:973
msgid "I don't like this (toggle)"
msgstr "Je déteste (oui/non)"
@@ -2264,37 +2263,37 @@ msgstr "Mur-mur"
msgid "via Wall-To-Wall:"
msgstr "par Mur-mur :"
-#: ../../include/ItemObject.php:249
+#: ../../include/ItemObject.php:250
msgid "Bookmark Links"
-msgstr ""
+msgstr "Transformer les liens en marque-pages"
-#: ../../include/ItemObject.php:279
+#: ../../include/ItemObject.php:280
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d commentaire"
msgstr[1] "%d commentaires"
-#: ../../include/ItemObject.php:544 ../../mod/photos.php:987
-#: ../../mod/photos.php:1074
+#: ../../include/ItemObject.php:545 ../../mod/photos.php:991
+#: ../../mod/photos.php:1078
msgid "This is you"
msgstr "C'est vous"
-#: ../../include/ItemObject.php:547 ../../mod/events.php:469
-#: ../../mod/thing.php:276 ../../mod/thing.php:318 ../../mod/invite.php:156
-#: ../../mod/settings.php:513 ../../mod/settings.php:625
-#: ../../mod/settings.php:653 ../../mod/settings.php:677
-#: ../../mod/settings.php:748 ../../mod/settings.php:912
-#: ../../mod/chat.php:119 ../../mod/chat.php:149 ../../mod/connect.php:92
+#: ../../include/ItemObject.php:548 ../../mod/events.php:469
+#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156
+#: ../../mod/chat.php:162 ../../mod/chat.php:192 ../../mod/connect.php:92
#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
#: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
#: ../../mod/connedit.php:437 ../../mod/profiles.php:506
#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
-#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/setup.php:347 ../../mod/settings.php:516
+#: ../../mod/settings.php:628 ../../mod/settings.php:656
+#: ../../mod/settings.php:680 ../../mod/settings.php:752
+#: ../../mod/settings.php:916 ../../mod/import.php:387 ../../mod/mail.php:223
#: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
-#: ../../mod/filestorage.php:131 ../../mod/photos.php:562
-#: ../../mod/photos.php:667 ../../mod/photos.php:950 ../../mod/photos.php:990
-#: ../../mod/photos.php:1077 ../../mod/mood.php:142
+#: ../../mod/filestorage.php:131 ../../mod/photos.php:566
+#: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994
+#: ../../mod/photos.php:1081 ../../mod/mood.php:142
#: ../../view/theme/redbasic/php/config.php:95
#: ../../view/theme/apw/php/config.php:231
#: ../../view/theme/blogga/view/theme/blog/config.php:67
@@ -2302,35 +2301,35 @@ msgstr "C'est vous"
msgid "Submit"
msgstr "Envoyer"
-#: ../../include/ItemObject.php:548
+#: ../../include/ItemObject.php:549
msgid "Bold"
msgstr "Gras"
-#: ../../include/ItemObject.php:549
+#: ../../include/ItemObject.php:550
msgid "Italic"
msgstr "Italique"
-#: ../../include/ItemObject.php:550
+#: ../../include/ItemObject.php:551
msgid "Underline"
msgstr "Souligné"
-#: ../../include/ItemObject.php:551
+#: ../../include/ItemObject.php:552
msgid "Quote"
msgstr "Citation"
-#: ../../include/ItemObject.php:552
+#: ../../include/ItemObject.php:553
msgid "Code"
msgstr "Code"
-#: ../../include/ItemObject.php:553
+#: ../../include/ItemObject.php:554
msgid "Image"
msgstr "Image"
-#: ../../include/ItemObject.php:554
+#: ../../include/ItemObject.php:555
msgid "Link"
msgstr "Lien/URL"
-#: ../../include/ItemObject.php:555
+#: ../../include/ItemObject.php:556
msgid "Video"
msgstr "Vidéo"
@@ -2353,27 +2352,27 @@ msgstr "a commenté la publication de %s"
#: ../../include/profile_selectors.php:6
msgid "Male"
-msgstr "Mâle"
+msgstr "Masculin"
#: ../../include/profile_selectors.php:6
msgid "Female"
-msgstr "Femelle"
+msgstr "Féminin"
#: ../../include/profile_selectors.php:6
msgid "Currently Male"
-msgstr "Actuellement mâle"
+msgstr "Actuellement masculin"
#: ../../include/profile_selectors.php:6
msgid "Currently Female"
-msgstr "Actuellement femelle"
+msgstr "Actuellement féminin"
#: ../../include/profile_selectors.php:6
msgid "Mostly Male"
-msgstr "Surtout mâle"
+msgstr "Surtout masculin"
#: ../../include/profile_selectors.php:6
msgid "Mostly Female"
-msgstr "Surtotu femelle"
+msgstr "Surtout féminin"
#: ../../include/profile_selectors.php:6
msgid "Transgender"
@@ -2509,7 +2508,7 @@ msgstr "Fiancé(e)"
#: ../../include/profile_selectors.php:42
msgid "Married"
-msgstr "Marrié(e)"
+msgstr "Marié(e)"
#: ../../include/profile_selectors.php:42
msgid "Imaginarily married"
@@ -2776,17 +2775,17 @@ msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés."
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a commenté [zrl=%3$s]%4$s[/zrl]"
#: ../../include/enotify.php:150
#, php-format
msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a commenté [zrl=%3$s]%5$s de %4$s[/zrl]"
#: ../../include/enotify.php:159
#, php-format
msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a commenté [zrl=%3$s]votre %4$s[/zrl]"
#: ../../include/enotify.php:170
#, php-format
@@ -2796,7 +2795,7 @@ msgstr "[Red:Notification] Commentaire de %2$s sur conversation #%1$d"
#: ../../include/enotify.php:171
#, php-format
msgid "%1$s, %2$s commented on an item/conversation you have been following."
-msgstr ""
+msgstr "%1$s, %2$s a commenté un élément de conversation que vous suivez."
#: ../../include/enotify.php:174 ../../include/enotify.php:189
#: ../../include/enotify.php:215 ../../include/enotify.php:234
@@ -2813,12 +2812,12 @@ msgstr "[Red:Notification] %s a publié sur votre profil"
#: ../../include/enotify.php:182
#, php-format
msgid "%1$s, %2$s posted to your profile wall at %3$s"
-msgstr ""
+msgstr "%1$s, %2$s a posté sur votre profil à %3$s"
#: ../../include/enotify.php:184
#, php-format
msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a posté sur [zrl=%3$s]votre profil[/zrl]"
#: ../../include/enotify.php:208
#, php-format
@@ -2833,7 +2832,7 @@ msgstr "%1$s, vous avez été étiqueté sur %3$s par %2$s"
#: ../../include/enotify.php:210
#, php-format
msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
-msgstr ""
+msgstr "%1$s, %2$s [zrl=%3$s]vous a tagué[/zrl]."
#: ../../include/enotify.php:223
#, php-format
@@ -2848,7 +2847,7 @@ msgstr "%1$s, vous avez été tapoté/pointé/sollicité par %2$s sur %3$s"
#: ../../include/enotify.php:225
#, php-format
msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
-msgstr ""
+msgstr "%1$s, %2$s [zrl=%2$s]vous a tapoté[/zrl]."
#: ../../include/enotify.php:241
#, php-format
@@ -2858,12 +2857,12 @@ msgstr "[Red:Notification] %s a marqué votre publication"
#: ../../include/enotify.php:242
#, php-format
msgid "%1$s, %2$s tagged your post at %3$s"
-msgstr ""
+msgstr "%1$s, %2$s a tagué votre publication sur %3$s"
#: ../../include/enotify.php:243
#, php-format
msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
-msgstr ""
+msgstr "%1$s, %2$s a tagué [zrl=%3$s]votre publication[/zrl]"
#: ../../include/enotify.php:255
msgid "[Red:Notify] Introduction received"
@@ -2872,12 +2871,12 @@ msgstr "[Red:Notification] Nouvelle introduction"
#: ../../include/enotify.php:256
#, php-format
msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
-msgstr ""
+msgstr "%1$s, vous avez reçu une introduction de '%2$s' sur %3$s"
#: ../../include/enotify.php:257
#, php-format
msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
-msgstr ""
+msgstr "%1$s, vous avez reçu [zrl=%2$s]une introduction[/zrl] de %3$s."
#: ../../include/enotify.php:261 ../../include/enotify.php:280
#, php-format
@@ -2896,14 +2895,14 @@ msgstr "[Red:Notification] Nouvelle suggestion d'amitié"
#: ../../include/enotify.php:271
#, php-format
msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
-msgstr ""
+msgstr "%1$s, vous avez reçu une suggestion de relation de '%2$s' à %3$s"
#: ../../include/enotify.php:272
#, php-format
msgid ""
"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from "
"%4$s."
-msgstr ""
+msgstr "%1$s, avez reçu %3$s comme [zrl=%2$s]une suggestion de relation[/zrl] de %4$s."
#: ../../include/enotify.php:278
msgid "Name:"
@@ -2935,12 +2934,12 @@ msgstr "Impossible de traiter l'image"
msgid "Photo storage failed."
msgstr "Le stockage de l'image a échoué."
-#: ../../include/photos.php:306 ../../mod/photos.php:690
-#: ../../mod/photos.php:1187
+#: ../../include/photos.php:306 ../../mod/photos.php:694
+#: ../../mod/photos.php:1191
msgid "Upload New Photos"
msgstr "Ajouter des photos"
-#: ../../include/reddav.php:1018
+#: ../../include/reddav.php:1061
msgid "Edit File properties"
msgstr "Éditer les propriétés du fichier"
@@ -2967,8 +2966,8 @@ msgstr "Relier/Suivre"
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Exemples: Robert Morgenstein, Course à pieds"
-#: ../../include/contact_widgets.php:24 ../../mod/directory.php:206
-#: ../../mod/directory.php:211 ../../mod/connections.php:357
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:207
+#: ../../mod/directory.php:212 ../../mod/connections.php:357
msgid "Find"
msgstr "Trouver"
@@ -3139,48 +3138,48 @@ msgid ""
"Extremely advanced. Leave this alone unless you know what you are doing"
msgstr "Très avancé. Ne pas toucher, sauf si vous savez VRAIMENT ce que vous faites"
-#: ../../include/items.php:208 ../../mod/like.php:55 ../../mod/group.php:68
-#: ../../mod/profperm.php:23 ../../index.php:350
+#: ../../include/items.php:231 ../../mod/like.php:55 ../../mod/profperm.php:23
+#: ../../mod/group.php:68 ../../index.php:350
msgid "Permission denied"
msgstr "Accès refusé"
-#: ../../include/items.php:3430 ../../mod/thing.php:74 ../../mod/admin.php:151
+#: ../../include/items.php:3453 ../../mod/thing.php:78 ../../mod/admin.php:151
#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
#: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
msgid "Item not found."
msgstr "Élément introuvable."
-#: ../../include/items.php:3786 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:3809 ../../mod/group.php:38 ../../mod/group.php:140
msgid "Collection not found."
msgstr "Collection introuvable."
-#: ../../include/items.php:3801
+#: ../../include/items.php:3824
msgid "Collection is empty."
msgstr "Collection vide."
-#: ../../include/items.php:3808
+#: ../../include/items.php:3831
#, php-format
msgid "Collection: %s"
msgstr "Collection : %s"
-#: ../../include/items.php:3819
+#: ../../include/items.php:3842
#, php-format
msgid "Connection: %s"
msgstr "Relation : %s"
-#: ../../include/items.php:3822
+#: ../../include/items.php:3845
msgid "Connection not found."
msgstr "Relation introuvable."
-#: ../../include/zot.php:545
+#: ../../include/zot.php:548
msgid "Invalid data packet"
msgstr "Paquet de données invalide"
-#: ../../include/zot.php:555
+#: ../../include/zot.php:558
msgid "Unable to verify channel signature"
msgstr "Impossible de vérifier la signature du canal"
-#: ../../include/zot.php:732
+#: ../../include/zot.php:735
#, php-format
msgid "Unable to verify site signature for %s"
msgstr "Impossible de vérifier la signature de site pour %s"
@@ -3266,56 +3265,64 @@ msgstr "Titre:"
msgid "Share this event"
msgstr "Partager cet événement"
-#: ../../mod/thing.php:94
+#: ../../mod/thing.php:98
msgid "Thing updated"
msgstr "Chose mise-à-jour"
-#: ../../mod/thing.php:153
+#: ../../mod/thing.php:158
msgid "Object store: failed"
msgstr "Stockage de l'objet : échec"
-#: ../../mod/thing.php:157
+#: ../../mod/thing.php:162
msgid "Thing added"
msgstr "Chose ajoutée"
-#: ../../mod/thing.php:175
+#: ../../mod/thing.php:182
#, php-format
msgid "OBJ: %1$s %2$s %3$s"
msgstr "OBJ: %1$s %2$s %3$s"
-#: ../../mod/thing.php:228
+#: ../../mod/thing.php:234
msgid "Show Thing"
msgstr "Montrer chose"
-#: ../../mod/thing.php:235
+#: ../../mod/thing.php:241
msgid "item not found."
msgstr "élément introuvable."
-#: ../../mod/thing.php:263
+#: ../../mod/thing.php:269
msgid "Edit Thing"
msgstr "Éditer chose"
-#: ../../mod/thing.php:265 ../../mod/thing.php:311
+#: ../../mod/thing.php:271 ../../mod/thing.php:318
msgid "Select a profile"
msgstr "Choisissez un profil"
-#: ../../mod/thing.php:267 ../../mod/thing.php:313
+#: ../../mod/thing.php:273 ../../mod/thing.php:320
msgid "Select a category of stuff. e.g. I ______ something"
msgstr "Choisissez une catégorie de choses. p.ex. Je ______ quelque-chose"
-#: ../../mod/thing.php:270 ../../mod/thing.php:315
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Post an activity"
+msgstr "Publier une activité"
+
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Only sends to viewers of the applicable profile"
+msgstr ""
+
+#: ../../mod/thing.php:277 ../../mod/thing.php:323
msgid "Name of thing e.g. something"
msgstr "Nom de la chose, p.ex. quelque-chose"
-#: ../../mod/thing.php:272 ../../mod/thing.php:316
+#: ../../mod/thing.php:279 ../../mod/thing.php:324
msgid "URL of thing (optional)"
msgstr "URL de la chose (optionnel)"
-#: ../../mod/thing.php:274 ../../mod/thing.php:317
+#: ../../mod/thing.php:281 ../../mod/thing.php:325
msgid "URL for photo of thing (optional)"
msgstr "URL de l'image de la chose (optionnel)"
-#: ../../mod/thing.php:309
+#: ../../mod/thing.php:316
msgid "Add Thing to your Profile"
msgstr "Ajouter la chose à votre profil"
@@ -3408,20 +3415,20 @@ msgstr "Publication vide défaussée."
msgid "Executable content type not permitted to this channel."
msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal."
-#: ../../mod/item.php:819
+#: ../../mod/item.php:835
msgid "System error. Post not saved."
msgstr "Erreur système. Publication non sauvegardée."
-#: ../../mod/item.php:1086 ../../mod/wall_upload.php:41
+#: ../../mod/item.php:1102 ../../mod/wall_upload.php:41
msgid "Wall Photos"
msgstr "Photos du mur"
-#: ../../mod/item.php:1166
+#: ../../mod/item.php:1182
#, php-format
msgid "You have reached your limit of %1$.0f top level posts."
msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racine\"."
-#: ../../mod/item.php:1172
+#: ../../mod/item.php:1188
#, php-format
msgid "You have reached your limit of %1$.0f webpages."
msgstr "Vous avez atteint votre limite de %1$.0f pages web."
@@ -3550,13 +3557,13 @@ msgid ""
" and/or create new posts for you?"
msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?"
-#: ../../mod/api.php:105 ../../mod/settings.php:874 ../../mod/settings.php:879
-#: ../../mod/profiles.php:483
+#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:878
+#: ../../mod/settings.php:883
msgid "Yes"
msgstr "Oui"
-#: ../../mod/api.php:106 ../../mod/settings.php:874 ../../mod/settings.php:879
-#: ../../mod/profiles.php:484
+#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:878
+#: ../../mod/settings.php:883
msgid "No"
msgstr "Non"
@@ -3588,402 +3595,6 @@ msgstr "Mes marque-pages"
msgid "My Connections Bookmarks"
msgstr "Marque-pages de mes relations"
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "Le nom est requis"
-
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "Clef et secret sont requis"
-
-#: ../../mod/settings.php:79 ../../mod/settings.php:539
-msgid "Update"
-msgstr "Mise-à-jour"
-
-#: ../../mod/settings.php:192
-msgid "Passwords do not match. Password unchanged."
-msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."
-
-#: ../../mod/settings.php:196
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."
-
-#: ../../mod/settings.php:209
-msgid "Password changed."
-msgstr "Le mot de passe a été changé."
-
-#: ../../mod/settings.php:211
-msgid "Password update failed. Please try again."
-msgstr "La mise-à-jour du mot de passe a échoué. Merci de recommencer."
-
-#: ../../mod/settings.php:225
-msgid "Not valid email."
-msgstr "Adresse de courriel non-valide."
-
-#: ../../mod/settings.php:228
-msgid "Protected email address. Cannot change to that email."
-msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
-
-#: ../../mod/settings.php:237
-msgid "System failure storing new email. Please try again."
-msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer."
-
-#: ../../mod/settings.php:441
-msgid "Settings updated."
-msgstr "Réglages sauvegardés."
-
-#: ../../mod/settings.php:512 ../../mod/settings.php:538
-#: ../../mod/settings.php:574
-msgid "Add application"
-msgstr "Ajouter une application"
-
-#: ../../mod/settings.php:515 ../../mod/settings.php:541
-msgid "Name"
-msgstr "Nom"
-
-#: ../../mod/settings.php:515
-msgid "Name of application"
-msgstr "Nom de l'application"
-
-#: ../../mod/settings.php:516 ../../mod/settings.php:542
-msgid "Consumer Key"
-msgstr "Clef de consommateur"
-
-#: ../../mod/settings.php:516 ../../mod/settings.php:517
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
-
-#: ../../mod/settings.php:517 ../../mod/settings.php:543
-msgid "Consumer Secret"
-msgstr "Secret de consommateur"
-
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
-msgid "Redirect"
-msgstr "Redirection"
-
-#: ../../mod/settings.php:518
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "URI de redirection - laissez blanc, sauf si l'application a demandé autrement"
-
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
-msgid "Icon url"
-msgstr "URL de l'icône"
-
-#: ../../mod/settings.php:519
-msgid "Optional"
-msgstr "Facultatif"
-
-#: ../../mod/settings.php:530
-msgid "You can't edit this application."
-msgstr "Vous ne pouvez pas éditer cette application."
-
-#: ../../mod/settings.php:573
-msgid "Connected Apps"
-msgstr "Applications connectées"
-
-#: ../../mod/settings.php:577
-msgid "Client key starts with"
-msgstr "La clef cliente commence par"
-
-#: ../../mod/settings.php:578
-msgid "No name"
-msgstr "Sans nom"
-
-#: ../../mod/settings.php:579
-msgid "Remove authorization"
-msgstr "Révoquer l'autorisation"
-
-#: ../../mod/settings.php:590
-msgid "No feature settings configured"
-msgstr "Pas de fonctionnalité à configurer"
-
-#: ../../mod/settings.php:598
-msgid "Feature Settings"
-msgstr "Fonctionnalités"
-
-#: ../../mod/settings.php:621
-msgid "Account Settings"
-msgstr "Compte"
-
-#: ../../mod/settings.php:622
-msgid "Password Settings"
-msgstr "Mot de passe"
-
-#: ../../mod/settings.php:623
-msgid "New Password:"
-msgstr "Nouveau mot de passe :"
-
-#: ../../mod/settings.php:624
-msgid "Confirm:"
-msgstr "Confirmation :"
-
-#: ../../mod/settings.php:624
-msgid "Leave password fields blank unless changing"
-msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
-
-#: ../../mod/settings.php:626 ../../mod/settings.php:921
-msgid "Email Address:"
-msgstr "Adresse de courriel :"
-
-#: ../../mod/settings.php:627
-msgid "Remove Account"
-msgstr "Supprimer le compte"
-
-#: ../../mod/settings.php:628
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Attention : cette action est permanente et irréversible."
-
-#: ../../mod/settings.php:644
-msgid "Off"
-msgstr "Inactif"
-
-#: ../../mod/settings.php:644
-msgid "On"
-msgstr "Actif"
-
-#: ../../mod/settings.php:651
-msgid "Additional Features"
-msgstr "Fonctionnalités additionnelles"
-
-#: ../../mod/settings.php:676
-msgid "Connector Settings"
-msgstr "Connecteurs"
-
-#: ../../mod/settings.php:706 ../../mod/admin.php:379
-msgid "No special theme for mobile devices"
-msgstr "Pas de thème spécifique aux périphériques mobiles"
-
-#: ../../mod/settings.php:746
-msgid "Display Settings"
-msgstr "Affichage"
-
-#: ../../mod/settings.php:752
-msgid "Display Theme:"
-msgstr "Thème :"
-
-#: ../../mod/settings.php:753
-msgid "Mobile Theme:"
-msgstr "Thème mobile :"
-
-#: ../../mod/settings.php:754
-msgid "Update browser every xx seconds"
-msgstr "Rafraîchir le navigateur toutes les xx secondes"
-
-#: ../../mod/settings.php:754
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimum 10 secondes, pas de maximum"
-
-#: ../../mod/settings.php:755
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Nombre maximal de conversations pouvant être chargées en même temps :"
-
-#: ../../mod/settings.php:755
-msgid "Maximum of 100 items"
-msgstr "100 éléments au maximum"
-
-#: ../../mod/settings.php:756
-msgid "Don't show emoticons"
-msgstr "Ne pas montrer les frimousses/émoticones"
-
-#: ../../mod/settings.php:792
-msgid "Nobody except yourself"
-msgstr "Personne sauf vous"
-
-#: ../../mod/settings.php:793
-msgid "Only those you specifically allow"
-msgstr "Seulement ceux que vous autorisez spécifiquement"
-
-#: ../../mod/settings.php:794
-msgid "Anybody in your address book"
-msgstr "Tous vos contacts"
-
-#: ../../mod/settings.php:795
-msgid "Anybody on this website"
-msgstr "Tous les utilisateurs du site"
-
-#: ../../mod/settings.php:796
-msgid "Anybody in this network"
-msgstr "Tous les utilisateurs du réseau"
-
-#: ../../mod/settings.php:797
-msgid "Anybody on the internet"
-msgstr "Tout les utilisateurs d'Internet"
-
-#: ../../mod/settings.php:874
-msgid "Publish your default profile in the network directory"
-msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
-
-#: ../../mod/settings.php:879
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?"
-
-#: ../../mod/settings.php:883 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr "ou"
-
-#: ../../mod/settings.php:888
-msgid "Your channel address is"
-msgstr "Votre canal a pour adresse"
-
-#: ../../mod/settings.php:910
-msgid "Channel Settings"
-msgstr "Canal"
-
-#: ../../mod/settings.php:919
-msgid "Basic Settings"
-msgstr "Basique"
-
-#: ../../mod/settings.php:922
-msgid "Your Timezone:"
-msgstr "Zone de temps :"
-
-#: ../../mod/settings.php:923
-msgid "Default Post Location:"
-msgstr "Localisation par défaut :"
-
-#: ../../mod/settings.php:924
-msgid "Use Browser Location:"
-msgstr "Utiliser la localisation fournie par le navigateur :"
-
-#: ../../mod/settings.php:926
-msgid "Adult Content"
-msgstr "Contenu \"adulte\""
-
-#: ../../mod/settings.php:926
-msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
-msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag #NSFW - Not Safe For Work)"
-
-#: ../../mod/settings.php:928
-msgid "Security and Privacy Settings"
-msgstr "Sécurité et vie privée"
-
-#: ../../mod/settings.php:930
-msgid "Hide my online presence"
-msgstr "Cacher ma présence en ligne"
-
-#: ../../mod/settings.php:930
-msgid "Prevents displaying in your profile that you are online"
-msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
-
-#: ../../mod/settings.php:932
-msgid "Simple Privacy Settings:"
-msgstr "Réglages simples :"
-
-#: ../../mod/settings.php:933
-msgid ""
-"Very Public - extremely permissive (should be used with caution)"
-msgstr "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)"
-
-#: ../../mod/settings.php:934
-msgid ""
-"Typical - default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)"
-msgstr "Classique - public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)"
-
-#: ../../mod/settings.php:935
-msgid "Private - default private, never open or public"
-msgstr "Privé - privé par défaut, jamais ouvert ni public"
-
-#: ../../mod/settings.php:936
-msgid "Blocked - default blocked to/from everybody"
-msgstr "Bloqué - par défaut, bloqué de/vers tout le monde"
-
-#: ../../mod/settings.php:939
-msgid "Advanced Privacy Settings"
-msgstr "Réglages avancés"
-
-#: ../../mod/settings.php:941
-msgid "Maximum Friend Requests/Day:"
-msgstr "Nombre maximum de mises en relation par jour :"
-
-#: ../../mod/settings.php:941
-msgid "May reduce spam activity"
-msgstr "Contribue à réduire l'impact du spam"
-
-#: ../../mod/settings.php:942
-msgid "Default Post Permissions"
-msgstr "Permissions par défaut des publications"
-
-#: ../../mod/settings.php:943 ../../mod/mitem.php:134 ../../mod/mitem.php:177
-msgid "(click to open/close)"
-msgstr "(cliquer pour ouvrir/fermer)"
-
-#: ../../mod/settings.php:954
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour :"
-
-#: ../../mod/settings.php:954
-msgid "Useful to reduce spamming"
-msgstr "Utile pour réduire le spam"
-
-#: ../../mod/settings.php:957
-msgid "Notification Settings"
-msgstr "Notifications"
-
-#: ../../mod/settings.php:958
-msgid "By default post a status message when:"
-msgstr "Par défaut, publier un statut quand:"
-
-#: ../../mod/settings.php:959
-msgid "accepting a friend request"
-msgstr "acceptez une mise en relation"
-
-#: ../../mod/settings.php:960
-msgid "joining a forum/community"
-msgstr "joignez un forum ou à une communauté"
-
-#: ../../mod/settings.php:961
-msgid "making an interesting profile change"
-msgstr "faites une modification intéressante de votre profil"
-
-#: ../../mod/settings.php:962
-msgid "Send a notification email when:"
-msgstr "Envoyer un courriel de notification quand :"
-
-#: ../../mod/settings.php:963
-msgid "You receive an introduction"
-msgstr "Vous recevez une introduction"
-
-#: ../../mod/settings.php:964
-msgid "Your introductions are confirmed"
-msgstr "Vos introductions sont acceptées/confirmées"
-
-#: ../../mod/settings.php:965
-msgid "Someone writes on your profile wall"
-msgstr "Quelqu'un écrit sur votre mur"
-
-#: ../../mod/settings.php:966
-msgid "Someone writes a followup comment"
-msgstr "Quelqu'un commente sur vos publications"
-
-#: ../../mod/settings.php:967
-msgid "You receive a private message"
-msgstr "Vous recevez un Message Privé"
-
-#: ../../mod/settings.php:968
-msgid "You receive a friend suggestion"
-msgstr "Vous recevez une suggestion d'amitié/relation"
-
-#: ../../mod/settings.php:969
-msgid "You are tagged in a post"
-msgstr "Vous êtes étiqueté dans une publication"
-
-#: ../../mod/settings.php:970
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Vous êtes tapoté/pointé/etc. dans une publication"
-
-#: ../../mod/settings.php:973
-msgid "Advanced Account/Page Type Settings"
-msgstr "Type de page/Compte (avancé)"
-
-#: ../../mod/settings.php:974
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modifie le comportement de ce compte pour certains cas particuliers"
-
#: ../../mod/subthread.php:105
#, php-format
msgid "%1$s is following %2$s's %3$s"
@@ -4013,27 +3624,27 @@ msgstr "%1$s a étiqueté le %3$s de %2$s par %4$s"
msgid "You must be logged in to see this page."
msgstr "Vous devez vous connecter pour voir cette page."
-#: ../../mod/chat.php:120
+#: ../../mod/chat.php:163
msgid "Leave Room"
msgstr "Quitter le salon"
-#: ../../mod/chat.php:121
+#: ../../mod/chat.php:164
msgid "I am away right now"
msgstr "Je suis momentanément absent"
-#: ../../mod/chat.php:122
+#: ../../mod/chat.php:165
msgid "I am online"
msgstr "Je suis en ligne"
-#: ../../mod/chat.php:146 ../../mod/chat.php:166
+#: ../../mod/chat.php:189 ../../mod/chat.php:209
msgid "New Chatroom"
msgstr "Nouveau salon"
-#: ../../mod/chat.php:147
+#: ../../mod/chat.php:190
msgid "Chatroom Name"
msgstr "Nom du salon"
-#: ../../mod/chat.php:162
+#: ../../mod/chat.php:205
#, php-format
msgid "%1$s's Chatrooms"
msgstr "Salons de %1$s"
@@ -4041,7 +3652,7 @@ msgstr "Salons de %1$s"
#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
#: ../../mod/directory.php:15 ../../mod/display.php:9
#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
-#: ../../mod/photos.php:442
+#: ../../mod/photos.php:443
msgid "Public access denied."
msgstr "Accès public refusé."
@@ -4070,7 +3681,7 @@ msgstr "Retirer une étiquette à l'élément"
msgid "Select a tag to remove: "
msgstr "Étiquette à retirer :"
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:905
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:909
msgid "Remove"
msgstr "Retirer"
@@ -4224,6 +3835,10 @@ msgstr "Nouvelle entrée de menu"
msgid "Menu Item Permissions"
msgstr "Permissions de l'entrée de menu"
+#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:947
+msgid "(click to open/close)"
+msgstr "(cliquer pour ouvrir/fermer)"
+
#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
msgid "Link text"
msgstr "Texte du lien"
@@ -4264,6 +3879,26 @@ msgstr "Impossible de supprimer l'entrée de menu."
msgid "Edit Menu Element"
msgstr "Éditer l'entrée de menu"
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
+
+#: ../../mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Éditeur de visibilité de profil"
+
+#: ../../mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Cliquez sur un contact pour l'ajouter ou le retirer."
+
+#: ../../mod/profperm.php:118
+msgid "Visible To"
+msgstr "Visible par"
+
+#: ../../mod/profperm.php:134 ../../mod/connections.php:250
+msgid "All Connections"
+msgstr "Toutes les relations"
+
#: ../../mod/group.php:20
msgid "Collection created."
msgstr "Collection créée."
@@ -4312,26 +3947,6 @@ msgstr "Tous canaux connectés"
msgid "Click on a channel to add or remove."
msgstr "Cliquer sur un canal pour ajouter ou supprimer"
-#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
-
-#: ../../mod/profperm.php:105
-msgid "Profile Visibility Editor"
-msgstr "Éditeur de visibilité de profil"
-
-#: ../../mod/profperm.php:109
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le retirer."
-
-#: ../../mod/profperm.php:118
-msgid "Visible To"
-msgstr "Visible par"
-
-#: ../../mod/profperm.php:134 ../../mod/connections.php:250
-msgid "All Connections"
-msgstr "Toutes les relations"
-
#: ../../mod/admin.php:48
msgid "Theme settings updated."
msgstr "Réglages du thème sauvegardés."
@@ -4406,6 +4021,10 @@ msgstr "Extensions actives"
msgid "Site settings updated."
msgstr "Réglages du site sauvegardés."
+#: ../../mod/admin.php:379 ../../mod/settings.php:709
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème spécifique aux périphériques mobiles"
+
#: ../../mod/admin.php:381
msgid "No special theme for accessibility"
msgstr "Pas de thème spécifique pour l'accessibilité"
@@ -4595,7 +4214,7 @@ msgid ""
"Check to hide the login form from your sites homepage when visitors arrive "
"who are not logged in (e.g. when you put the content of the homepage in via "
"the site channel)."
-msgstr ""
+msgstr "Cocher pour ne pas montrer le formulaire de connexion sur la page d'accueil (typiquement, pour quand vous utilisez la page d'accueil pour afficher du contenu via le canal du site)."
#: ../../mod/admin.php:459
msgid "Proxy user"
@@ -4907,28 +4526,28 @@ msgstr "Insérer une vidéo Vorbis [.ogg]"
msgid "Insert Vorbis [.ogg] audio"
msgstr "Insérer un son Vorbis [.ogg]"
-#: ../../mod/directory.php:143 ../../mod/profiles.php:561
+#: ../../mod/directory.php:144 ../../mod/profiles.php:561
#: ../../mod/dirprofile.php:98
msgid "Age: "
msgstr "Age :"
-#: ../../mod/directory.php:146 ../../mod/dirprofile.php:101
+#: ../../mod/directory.php:147 ../../mod/dirprofile.php:101
msgid "Gender: "
msgstr "Sexe/genre :"
-#: ../../mod/directory.php:207
+#: ../../mod/directory.php:208
msgid "Finding:"
msgstr "Recherche :"
-#: ../../mod/directory.php:215
+#: ../../mod/directory.php:216
msgid "next page"
msgstr "page suiv."
-#: ../../mod/directory.php:215
+#: ../../mod/directory.php:216
msgid "previous page"
msgstr "page préc."
-#: ../../mod/directory.php:222
+#: ../../mod/directory.php:223
msgid "No entries (some entries may be hidden)."
msgstr "Pas d'entrées (certaines peuvent être cachées)."
@@ -5593,7 +5212,7 @@ msgstr "Source mise à jour."
#: ../../mod/sources.php:82
msgid "*"
-msgstr ""
+msgstr "*"
#: ../../mod/sources.php:89
msgid "Manage remote sources of content for your channel."
@@ -6012,37 +5631,56 @@ msgstr "Extensions/applications installées :"
msgid "No installed plugins/addons/apps"
msgstr "Aucune extension/application installée"
-#: ../../mod/siteinfo.php:109
+#: ../../mod/siteinfo.php:93
+msgid "Project Donations"
+msgstr "Donations au projet"
+
+#: ../../mod/siteinfo.php:94
+msgid ""
+"
The Red Matrix is provided for you by volunteers working in their spare "
+"time. Your support will help us to build a better web. Select the following "
+"option for a one-time donation of your choosing
"
+msgstr "
The Red Matrix vous est mis à disposition par des volontaires, qui travaillent dessus sur leur temps libre. Votre soutien nous aidera à construire un meilleur web. Merci de choisir l'option suivante pour une donation ponctuelle de votre choix.
"
+
+#: ../../mod/siteinfo.php:95
+msgid "
or
"
+msgstr "
ou bien
"
+
+#: ../../mod/siteinfo.php:96
+msgid "Recurring Donation Options"
+msgstr "Options de donation récurente"
+
+#: ../../mod/siteinfo.php:115
msgid "Red"
msgstr "Red"
-#: ../../mod/siteinfo.php:110
+#: ../../mod/siteinfo.php:116
msgid ""
"This is a hub of the Red Matrix - a global cooperative network of "
"decentralised privacy enhanced websites."
msgstr "Ceci est une instance - un hub - de la Matrice Red - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée/acentrée."
-#: ../../mod/siteinfo.php:113
+#: ../../mod/siteinfo.php:119
msgid "Running at web location"
msgstr "En train de tourner chez"
-#: ../../mod/siteinfo.php:114
+#: ../../mod/siteinfo.php:120
msgid ""
"Please visit GetZot.com to learn more "
"about the Red Matrix."
msgstr "Merci de visiter GetZot.com pour en apprendre davantage sur la Matrice Red."
-#: ../../mod/siteinfo.php:115
+#: ../../mod/siteinfo.php:121
msgid "Bug reports and issues: please visit"
msgstr "Pour remonter bogues et problèmes, merci de visiter"
-#: ../../mod/siteinfo.php:118
+#: ../../mod/siteinfo.php:124
msgid ""
"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
"com"
msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com"
-#: ../../mod/siteinfo.php:120
+#: ../../mod/siteinfo.php:126
msgid "Site Administrators"
msgstr "Administrateurs du site"
@@ -6149,6 +5787,407 @@ msgstr "Adresse de courriel"
msgid "Reset"
msgstr "Réinitialiser"
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Le nom est requis"
+
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Clef et secret sont requis"
+
+#: ../../mod/settings.php:79 ../../mod/settings.php:542
+msgid "Update"
+msgstr "Mise-à-jour"
+
+#: ../../mod/settings.php:195
+msgid "Passwords do not match. Password unchanged."
+msgstr "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."
+
+#: ../../mod/settings.php:199
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."
+
+#: ../../mod/settings.php:212
+msgid "Password changed."
+msgstr "Le mot de passe a été changé."
+
+#: ../../mod/settings.php:214
+msgid "Password update failed. Please try again."
+msgstr "La mise-à-jour du mot de passe a échoué. Merci de recommencer."
+
+#: ../../mod/settings.php:228
+msgid "Not valid email."
+msgstr "Adresse de courriel non-valide."
+
+#: ../../mod/settings.php:231
+msgid "Protected email address. Cannot change to that email."
+msgstr "Adresse de courriel protégée. Impossible de l'utiliser."
+
+#: ../../mod/settings.php:240
+msgid "System failure storing new email. Please try again."
+msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer."
+
+#: ../../mod/settings.php:444
+msgid "Settings updated."
+msgstr "Réglages sauvegardés."
+
+#: ../../mod/settings.php:515 ../../mod/settings.php:541
+#: ../../mod/settings.php:577
+msgid "Add application"
+msgstr "Ajouter une application"
+
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Name"
+msgstr "Nom"
+
+#: ../../mod/settings.php:518
+msgid "Name of application"
+msgstr "Nom de l'application"
+
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Consumer Key"
+msgstr "Clef de consommateur"
+
+#: ../../mod/settings.php:519 ../../mod/settings.php:520
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."
+
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
+msgid "Consumer Secret"
+msgstr "Secret de consommateur"
+
+#: ../../mod/settings.php:521 ../../mod/settings.php:547
+msgid "Redirect"
+msgstr "Redirection"
+
+#: ../../mod/settings.php:521
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "URI de redirection - laissez blanc, sauf si l'application a demandé autrement"
+
+#: ../../mod/settings.php:522 ../../mod/settings.php:548
+msgid "Icon url"
+msgstr "URL de l'icône"
+
+#: ../../mod/settings.php:522
+msgid "Optional"
+msgstr "Facultatif"
+
+#: ../../mod/settings.php:533
+msgid "You can't edit this application."
+msgstr "Vous ne pouvez pas éditer cette application."
+
+#: ../../mod/settings.php:576
+msgid "Connected Apps"
+msgstr "Applications connectées"
+
+#: ../../mod/settings.php:580
+msgid "Client key starts with"
+msgstr "La clef cliente commence par"
+
+#: ../../mod/settings.php:581
+msgid "No name"
+msgstr "Sans nom"
+
+#: ../../mod/settings.php:582
+msgid "Remove authorization"
+msgstr "Révoquer l'autorisation"
+
+#: ../../mod/settings.php:593
+msgid "No feature settings configured"
+msgstr "Pas de fonctionnalité à configurer"
+
+#: ../../mod/settings.php:601
+msgid "Feature Settings"
+msgstr "Fonctionnalités"
+
+#: ../../mod/settings.php:624
+msgid "Account Settings"
+msgstr "Compte"
+
+#: ../../mod/settings.php:625
+msgid "Password Settings"
+msgstr "Mot de passe"
+
+#: ../../mod/settings.php:626
+msgid "New Password:"
+msgstr "Nouveau mot de passe :"
+
+#: ../../mod/settings.php:627
+msgid "Confirm:"
+msgstr "Confirmation :"
+
+#: ../../mod/settings.php:627
+msgid "Leave password fields blank unless changing"
+msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier"
+
+#: ../../mod/settings.php:629 ../../mod/settings.php:925
+msgid "Email Address:"
+msgstr "Adresse de courriel :"
+
+#: ../../mod/settings.php:630
+msgid "Remove Account"
+msgstr "Supprimer le compte"
+
+#: ../../mod/settings.php:631
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Attention : cette action est permanente et irréversible."
+
+#: ../../mod/settings.php:647
+msgid "Off"
+msgstr "Inactif"
+
+#: ../../mod/settings.php:647
+msgid "On"
+msgstr "Actif"
+
+#: ../../mod/settings.php:654
+msgid "Additional Features"
+msgstr "Fonctionnalités additionnelles"
+
+#: ../../mod/settings.php:679
+msgid "Connector Settings"
+msgstr "Connecteurs"
+
+#: ../../mod/settings.php:750
+msgid "Display Settings"
+msgstr "Affichage"
+
+#: ../../mod/settings.php:756
+msgid "Display Theme:"
+msgstr "Thème :"
+
+#: ../../mod/settings.php:757
+msgid "Mobile Theme:"
+msgstr "Thème mobile :"
+
+#: ../../mod/settings.php:758
+msgid "Update browser every xx seconds"
+msgstr "Rafraîchir le navigateur toutes les xx secondes"
+
+#: ../../mod/settings.php:758
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimum 10 secondes, pas de maximum"
+
+#: ../../mod/settings.php:759
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Nombre maximal de conversations pouvant être chargées en même temps :"
+
+#: ../../mod/settings.php:759
+msgid "Maximum of 100 items"
+msgstr "100 éléments au maximum"
+
+#: ../../mod/settings.php:760
+msgid "Don't show emoticons"
+msgstr "Ne pas montrer les frimousses/émoticones"
+
+#: ../../mod/settings.php:761
+msgid "Do not view remote profiles in frames"
+msgstr ""
+
+#: ../../mod/settings.php:761
+msgid "By default open in a sub-window of your own site"
+msgstr "Par défaut, ouvrir dans une sous-fenêtre de votre propre site"
+
+#: ../../mod/settings.php:796
+msgid "Nobody except yourself"
+msgstr "Personne sauf vous"
+
+#: ../../mod/settings.php:797
+msgid "Only those you specifically allow"
+msgstr "Seulement ceux que vous autorisez spécifiquement"
+
+#: ../../mod/settings.php:798
+msgid "Anybody in your address book"
+msgstr "Tous vos contacts"
+
+#: ../../mod/settings.php:799
+msgid "Anybody on this website"
+msgstr "Tous les utilisateurs du site"
+
+#: ../../mod/settings.php:800
+msgid "Anybody in this network"
+msgstr "Tous les utilisateurs du réseau"
+
+#: ../../mod/settings.php:801
+msgid "Anybody on the internet"
+msgstr "Tout les utilisateurs d'Internet"
+
+#: ../../mod/settings.php:878
+msgid "Publish your default profile in the network directory"
+msgstr "Publier votre profil par défaut dans l'annuaire du réseau"
+
+#: ../../mod/settings.php:883
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?"
+
+#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "ou"
+
+#: ../../mod/settings.php:892
+msgid "Your channel address is"
+msgstr "Votre canal a pour adresse"
+
+#: ../../mod/settings.php:914
+msgid "Channel Settings"
+msgstr "Canal"
+
+#: ../../mod/settings.php:923
+msgid "Basic Settings"
+msgstr "Basique"
+
+#: ../../mod/settings.php:926
+msgid "Your Timezone:"
+msgstr "Zone de temps :"
+
+#: ../../mod/settings.php:927
+msgid "Default Post Location:"
+msgstr "Localisation par défaut :"
+
+#: ../../mod/settings.php:928
+msgid "Use Browser Location:"
+msgstr "Utiliser la localisation fournie par le navigateur :"
+
+#: ../../mod/settings.php:930
+msgid "Adult Content"
+msgstr "Contenu \"adulte\""
+
+#: ../../mod/settings.php:930
+msgid ""
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag #NSFW - Not Safe For Work)"
+
+#: ../../mod/settings.php:932
+msgid "Security and Privacy Settings"
+msgstr "Sécurité et vie privée"
+
+#: ../../mod/settings.php:934
+msgid "Hide my online presence"
+msgstr "Cacher ma présence en ligne"
+
+#: ../../mod/settings.php:934
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil"
+
+#: ../../mod/settings.php:936
+msgid "Simple Privacy Settings:"
+msgstr "Réglages simples :"
+
+#: ../../mod/settings.php:937
+msgid ""
+"Very Public - extremely permissive (should be used with caution)"
+msgstr "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)"
+
+#: ../../mod/settings.php:938
+msgid ""
+"Typical - default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)"
+msgstr "Classique - public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)"
+
+#: ../../mod/settings.php:939
+msgid "Private - default private, never open or public"
+msgstr "Privé - privé par défaut, jamais ouvert ni public"
+
+#: ../../mod/settings.php:940
+msgid "Blocked - default blocked to/from everybody"
+msgstr "Bloqué - par défaut, bloqué de/vers tout le monde"
+
+#: ../../mod/settings.php:943
+msgid "Advanced Privacy Settings"
+msgstr "Réglages avancés"
+
+#: ../../mod/settings.php:945
+msgid "Maximum Friend Requests/Day:"
+msgstr "Nombre maximum de mises en relation par jour :"
+
+#: ../../mod/settings.php:945
+msgid "May reduce spam activity"
+msgstr "Contribue à réduire l'impact du spam"
+
+#: ../../mod/settings.php:946
+msgid "Default Post Permissions"
+msgstr "Permissions par défaut des publications"
+
+#: ../../mod/settings.php:958
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour :"
+
+#: ../../mod/settings.php:958
+msgid "Useful to reduce spamming"
+msgstr "Utile pour réduire le spam"
+
+#: ../../mod/settings.php:961
+msgid "Notification Settings"
+msgstr "Notifications"
+
+#: ../../mod/settings.php:962
+msgid "By default post a status message when:"
+msgstr "Par défaut, publier un statut quand:"
+
+#: ../../mod/settings.php:963
+msgid "accepting a friend request"
+msgstr "acceptez une mise en relation"
+
+#: ../../mod/settings.php:964
+msgid "joining a forum/community"
+msgstr "joignez un forum ou à une communauté"
+
+#: ../../mod/settings.php:965
+msgid "making an interesting profile change"
+msgstr "faites une modification intéressante de votre profil"
+
+#: ../../mod/settings.php:966
+msgid "Send a notification email when:"
+msgstr "Envoyer un courriel de notification quand :"
+
+#: ../../mod/settings.php:967
+msgid "You receive an introduction"
+msgstr "Vous recevez une introduction"
+
+#: ../../mod/settings.php:968
+msgid "Your introductions are confirmed"
+msgstr "Vos introductions sont acceptées/confirmées"
+
+#: ../../mod/settings.php:969
+msgid "Someone writes on your profile wall"
+msgstr "Quelqu'un écrit sur votre mur"
+
+#: ../../mod/settings.php:970
+msgid "Someone writes a followup comment"
+msgstr "Quelqu'un commente sur vos publications"
+
+#: ../../mod/settings.php:971
+msgid "You receive a private message"
+msgstr "Vous recevez un Message Privé"
+
+#: ../../mod/settings.php:972
+msgid "You receive a friend suggestion"
+msgstr "Vous recevez une suggestion d'amitié/relation"
+
+#: ../../mod/settings.php:973
+msgid "You are tagged in a post"
+msgstr "Vous êtes étiqueté dans une publication"
+
+#: ../../mod/settings.php:974
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Vous êtes tapoté/pointé/etc. dans une publication"
+
+#: ../../mod/settings.php:977
+msgid "Advanced Account/Page Type Settings"
+msgstr "Type de page/Compte (avancé)"
+
+#: ../../mod/settings.php:978
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifie le comportement de ce compte pour certains cas particuliers"
+
+#: ../../mod/settings.php:981
+msgid ""
+"Please enable expert mode (in Settings > Additional features) to adjust!"
+msgstr "Merci d'activer le mode expert (dans Réglages > Fonctionnalités additionelles) pour affiner!"
+
#: ../../mod/import.php:36
msgid "Nothing to import."
msgstr "Rien à importer."
@@ -6504,7 +6543,7 @@ msgstr "Ne montrer que les relations cachées"
#: ../../mod/connections.php:331
#, php-format
msgid "%1$s [%2$s]"
-msgstr ""
+msgstr "%1$s [%2$s]"
#: ../../mod/connections.php:332
msgid "Edit contact"
@@ -6663,8 +6702,8 @@ msgstr "Fichier introuvable."
msgid "Edit file permissions"
msgstr "Éditer les permissions du fichier"
-#: ../../mod/filestorage.php:124 ../../mod/photos.php:603
-#: ../../mod/photos.php:946
+#: ../../mod/filestorage.php:124 ../../mod/photos.php:607
+#: ../../mod/photos.php:950
msgid "Permissions"
msgstr "Permissions"
@@ -6858,123 +6897,123 @@ msgstr "Impossible d'obtenir des informations sur le propriétaire de la page."
msgid "Album not found."
msgstr "Album introuvable."
-#: ../../mod/photos.php:119 ../../mod/photos.php:668
+#: ../../mod/photos.php:119 ../../mod/photos.php:672
msgid "Delete Album"
msgstr "Supprimer album"
-#: ../../mod/photos.php:159 ../../mod/photos.php:951
+#: ../../mod/photos.php:159 ../../mod/photos.php:955
msgid "Delete Photo"
msgstr "Supprimer photo"
-#: ../../mod/photos.php:452
+#: ../../mod/photos.php:453
msgid "No photos selected"
msgstr "Aucune photo selectionnée"
-#: ../../mod/photos.php:499
+#: ../../mod/photos.php:500
msgid "Access to this item is restricted."
msgstr "L'accès à l'élément est restreint."
-#: ../../mod/photos.php:573
+#: ../../mod/photos.php:577
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."
-#: ../../mod/photos.php:576
+#: ../../mod/photos.php:580
#, php-format
msgid "You have used %1$.2f Mbytes of photo storage."
msgstr "Vous avez utilisé %1$.2f mégaoctets pour le stockage des photos."
-#: ../../mod/photos.php:595
+#: ../../mod/photos.php:599
msgid "Upload Photos"
msgstr "Téléverser des photos"
-#: ../../mod/photos.php:599 ../../mod/photos.php:663
+#: ../../mod/photos.php:603 ../../mod/photos.php:667
msgid "New album name: "
msgstr "Créer un album :"
-#: ../../mod/photos.php:600
+#: ../../mod/photos.php:604
msgid "or existing album name: "
msgstr "ou choisir un album existant :"
-#: ../../mod/photos.php:601
+#: ../../mod/photos.php:605
msgid "Do not show a status post for this upload"
msgstr "Ne pas publier de statut pour cet envoi"
-#: ../../mod/photos.php:652 ../../mod/photos.php:674 ../../mod/photos.php:1123
-#: ../../mod/photos.php:1138
+#: ../../mod/photos.php:656 ../../mod/photos.php:678 ../../mod/photos.php:1127
+#: ../../mod/photos.php:1142
msgid "Contact Photos"
msgstr "Photos de contact"
-#: ../../mod/photos.php:678
+#: ../../mod/photos.php:682
msgid "Edit Album"
msgstr "Éditer l'album"
-#: ../../mod/photos.php:684
+#: ../../mod/photos.php:688
msgid "Show Newest First"
msgstr "Ordre anté-chronologique"
-#: ../../mod/photos.php:686
+#: ../../mod/photos.php:690
msgid "Show Oldest First"
msgstr "Ordre chronologique"
-#: ../../mod/photos.php:729 ../../mod/photos.php:1170
+#: ../../mod/photos.php:733 ../../mod/photos.php:1174
msgid "View Photo"
msgstr "Voir photo"
-#: ../../mod/photos.php:775
+#: ../../mod/photos.php:779
msgid "Permission denied. Access to this item may be restricted."
msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint."
-#: ../../mod/photos.php:777
+#: ../../mod/photos.php:781
msgid "Photo not available"
msgstr "Photo indisponible"
-#: ../../mod/photos.php:837
+#: ../../mod/photos.php:841
msgid "Use as profile photo"
msgstr "Utiliser comme photo du profil"
-#: ../../mod/photos.php:861
+#: ../../mod/photos.php:865
msgid "View Full Size"
msgstr "Voir en taille réelle"
-#: ../../mod/photos.php:935
+#: ../../mod/photos.php:939
msgid "Edit photo"
msgstr "Éditer photo"
-#: ../../mod/photos.php:937
+#: ../../mod/photos.php:941
msgid "Rotate CW (right)"
msgstr "Rotation horaire (droite)"
-#: ../../mod/photos.php:938
+#: ../../mod/photos.php:942
msgid "Rotate CCW (left)"
msgstr "Rotation anti-horaire (gauche)"
-#: ../../mod/photos.php:940
+#: ../../mod/photos.php:944
msgid "New album name"
msgstr "Nouveau nom d'album :"
-#: ../../mod/photos.php:943
+#: ../../mod/photos.php:947
msgid "Caption"
msgstr "Titre/légende"
-#: ../../mod/photos.php:945
+#: ../../mod/photos.php:949
msgid "Add a Tag"
msgstr "Ajouter une étiquette"
-#: ../../mod/photos.php:948
+#: ../../mod/photos.php:952
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Exemple : @bob, @Barbara_Jensen, @jim@exemple.com, #Ile_de_France, #marathon"
-#: ../../mod/photos.php:1101
+#: ../../mod/photos.php:1105
msgid "In This Photo:"
msgstr "Dans cette photo :"
-#: ../../mod/photos.php:1176
+#: ../../mod/photos.php:1180
msgid "View Album"
msgstr "Voir album"
-#: ../../mod/photos.php:1185
+#: ../../mod/photos.php:1189
msgid "Recent Photos"
msgstr "Photos récentes"
@@ -7227,7 +7266,7 @@ msgstr "Décalage droit du panneau latéral"
#: ../../view/theme/blogga/view/theme/blog/config.php:47
#: ../../view/theme/blogga/php/config.php:47
msgid "None"
-msgstr ""
+msgstr "Aucun(e)"
#: ../../view/theme/blogga/view/theme/blog/config.php:70
#: ../../view/theme/blogga/php/config.php:70
@@ -7256,7 +7295,7 @@ msgstr "Créez un compte pour pouvoir accéder aux services et applications de l
#: ../../boot.php:1427
msgid "Password"
-msgstr "Mot de pass"
+msgstr "Mot de passe"
#: ../../boot.php:1428
msgid "Remember me"
diff --git a/view/fr/strings.php b/view/fr/strings.php
index 8e491a56a..360b616d2 100644
--- a/view/fr/strings.php
+++ b/view/fr/strings.php
@@ -4,6 +4,45 @@ function string_plural_select_fr($n){
return ($n > 1);;
}
;
+$a->strings["Categories"] = "Catégories";
+$a->strings["Connect"] = "Relier";
+$a->strings["Ignore/Hide"] = "Ignorer/Cacher";
+$a->strings["Suggestions"] = "Suggestion";
+$a->strings["See more..."] = "Voir plus...";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f des %2$.0f relations autorisées.";
+$a->strings["Add New Connection"] = "Ajouter une nouvelle relation";
+$a->strings["Enter the channel address"] = "Adresse du canal";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple : bob@exemple.com, http://exemple.com/barbara";
+$a->strings["Notes"] = "Notes";
+$a->strings["Save"] = "Sauver";
+$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["Saved Searches"] = "Recherches sauvées";
+$a->strings["add"] = "ajouter";
+$a->strings["Saved Folders"] = "Dossiers sauvegardés";
+$a->strings["Everything"] = "Tout";
+$a->strings["Archives"] = "Archives";
+$a->strings["Refresh"] = "Actualiser";
+$a->strings["Me"] = "Moi";
+$a->strings["Best Friends"] = "Mes meilleurs amis";
+$a->strings["Friends"] = "Amis";
+$a->strings["Co-workers"] = "Mes collègues";
+$a->strings["Former Friends"] = "Mes anciens amis";
+$a->strings["Acquaintances"] = "Mes accointances";
+$a->strings["Everybody"] = "Tout le monde";
+$a->strings["Account settings"] = "Compte";
+$a->strings["Channel settings"] = "Canal";
+$a->strings["Additional features"] = "Fonc. supplémentaires";
+$a->strings["Feature settings"] = "Fonctionnalités";
+$a->strings["Display settings"] = "Affichage";
+$a->strings["Connected apps"] = "Applications";
+$a->strings["Export channel"] = "Exporter canal";
+$a->strings["Automatic Permissions (Advanced)"] = "Permissions automatiques (avancé)";
+$a->strings["Premium Channel Settings"] = "Canal Premium";
+$a->strings["Channel Sources"] = "Canaux sources";
+$a->strings["Settings"] = "Réglages";
+$a->strings["Check Mail"] = "Vérifier courriel";
+$a->strings["New Message"] = "Nouveau message";
+$a->strings["Chat Rooms"] = "Salons";
$a->strings["Visible to everybody"] = "Visible par tous";
$a->strings["show"] = "montrer";
$a->strings["don't show"] = "cacher";
@@ -65,13 +104,11 @@ $a->strings["See all private messages"] = "Voir tous les messages privés";
$a->strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus";
$a->strings["Inbox"] = "Boîte de réception";
$a->strings["Outbox"] = "Boîte d'envoi";
-$a->strings["New Message"] = "Nouveau message";
$a->strings["Event Calendar"] = "Calendrier des événements";
$a->strings["See all events"] = "Voir tous les événements";
$a->strings["Mark all events seen"] = "Marquer tous les événements comme vus";
$a->strings["Channel Select"] = "Changer de canal";
$a->strings["Manage Your Channels"] = "Gérer vos canaux";
-$a->strings["Settings"] = "Réglages";
$a->strings["Account/Channel Settings"] = "Compte/Canal";
$a->strings["Connections"] = "Relations";
$a->strings["Manage/Edit Friends and Connections"] = "Gérer les amis et relations";
@@ -91,7 +128,6 @@ $a->strings["%d Connection"] = array(
1 => "%d relations",
);
$a->strings["View Connections"] = "Voir les relations";
-$a->strings["Save"] = "Sauver";
$a->strings["poke"] = "tapoter";
$a->strings["poked"] = "tapoté";
$a->strings["ping"] = "solliciter";
@@ -155,7 +191,7 @@ $a->strings["Page content type: "] = "Type de contenu :";
$a->strings["Select an alternate language"] = "Choisir une langue alternative";
$a->strings["photo"] = "photo";
$a->strings["event"] = "événement";
-$a->strings["status"] = "statut";
+$a->strings["status"] = "le statut";
$a->strings["comment"] = "commentaire";
$a->strings["activity"] = "activité";
$a->strings["Design"] = "Conception";
@@ -163,42 +199,12 @@ $a->strings["Blocks"] = "Blocs";
$a->strings["Menus"] = "Menus";
$a->strings["Layouts"] = "Mises-en-page";
$a->strings["Pages"] = "Pages";
-$a->strings["Categories"] = "Catégories";
-$a->strings["Connect"] = "Relier";
-$a->strings["Ignore/Hide"] = "Ignorer/Cacher";
-$a->strings["Suggestions"] = "Suggestion";
-$a->strings["See more..."] = "Voir plus...";
-$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f des %2$.0f relations autorisées.";
-$a->strings["Add New Connection"] = "Ajouter une nouvelle relation";
-$a->strings["Enter the channel address"] = "Adresse du canal";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple : bob@exemple.com, http://exemple.com/barbara";
-$a->strings["Notes"] = "Notes";
-$a->strings["Remove term"] = "Retirer le terme";
-$a->strings["Saved Searches"] = "Recherches sauvées";
-$a->strings["add"] = "ajouter";
-$a->strings["Saved Folders"] = "Dossiers sauvegardés";
-$a->strings["Everything"] = "Tout";
-$a->strings["Archives"] = "Archives";
-$a->strings["Refresh"] = "Actualiser";
-$a->strings["Me"] = "Moi";
-$a->strings["Best Friends"] = "Mes meilleurs amis";
-$a->strings["Friends"] = "Amis";
-$a->strings["Co-workers"] = "Mes collègues";
-$a->strings["Former Friends"] = "Mes anciens amis";
-$a->strings["Acquaintances"] = "Mes accointances";
-$a->strings["Everybody"] = "Tout le monde";
-$a->strings["Account settings"] = "Compte";
-$a->strings["Channel settings"] = "Canal";
-$a->strings["Additional features"] = "Fonc. supplémentaires";
-$a->strings["Feature settings"] = "Fonctionnalités";
-$a->strings["Display settings"] = "Affichage";
-$a->strings["Connected apps"] = "Applications";
-$a->strings["Export channel"] = "Exporter canal";
-$a->strings["Automatic Permissions (Advanced)"] = "Permissions automatiques (avancé)";
-$a->strings["Premium Channel Settings"] = "Canal Premium";
-$a->strings["Channel Sources"] = "Canaux sources";
-$a->strings["Check Mail"] = "Vérifier courriel";
-$a->strings["Chat Rooms"] = "Salons";
+$a->strings["Image/photo"] = "Image/photo";
+$a->strings["Encrypted content"] = "Contenu chiffré";
+$a->strings["QR code"] = "QR code";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s";
+$a->strings["post"] = "l'article";
+$a->strings["$1 wrote:"] = "$1 a écrit :";
$a->strings["New window"] = "Nouvelle fenêtre";
$a->strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent";
$a->strings["General Features"] = "Fonctionnalités générales";
@@ -329,7 +335,7 @@ $a->strings["about a month"] = "environ un mois";
$a->strings["%d months"] = "%d mois";
$a->strings["about a year"] = "environ un an";
$a->strings["%d years"] = "%d années";
-$a->strings[" "] = "";
+$a->strings[" "] = " ";
$a->strings["timeago.numbers"] = "timeago.numbers";
$a->strings["No recipient provided."] = "Pas de destinataire.";
$a->strings["[no subject]"] = "[sans objet]";
@@ -351,12 +357,6 @@ $a->strings["duplicate filename or path"] = "doublon de chemin ou de fichier";
$a->strings["Path not found."] = "Chemin introuvable.";
$a->strings["mkdir failed."] = "mkdir a échoué.";
$a->strings["database storage failed."] = "le stockage en BD a échoué";
-$a->strings["Image/photo"] = "Image/photo";
-$a->strings["Encrypted content"] = "Contenu chiffré";
-$a->strings["QR code"] = "QR code";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit le %2\$s suivant %3\$s";
-$a->strings["post"] = "article";
-$a->strings["$1 wrote:"] = "$1 a écrit :";
$a->strings["%1\$s's bookmarks"] = "Marque-pages de %1\$s";
$a->strings["channel"] = "canal";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
@@ -535,7 +535,7 @@ $a->strings["to"] = "à";
$a->strings["via"] = "via";
$a->strings["Wall-to-Wall"] = "Mur-mur";
$a->strings["via Wall-To-Wall:"] = "par Mur-mur :";
-$a->strings["Bookmark Links"] = "";
+$a->strings["Bookmark Links"] = "Transformer les liens en marque-pages";
$a->strings["%d comment"] = array(
0 => "%d commentaire",
1 => "%d commentaires",
@@ -554,12 +554,12 @@ $a->strings["Public Timeline"] = "Fil public";
$a->strings["view full size"] = "pleine taille";
$a->strings["created a new post"] = "a publié";
$a->strings["commented on %s's post"] = "a commenté la publication de %s";
-$a->strings["Male"] = "Mâle";
-$a->strings["Female"] = "Femelle";
-$a->strings["Currently Male"] = "Actuellement mâle";
-$a->strings["Currently Female"] = "Actuellement femelle";
-$a->strings["Mostly Male"] = "Surtout mâle";
-$a->strings["Mostly Female"] = "Surtotu femelle";
+$a->strings["Male"] = "Masculin";
+$a->strings["Female"] = "Féminin";
+$a->strings["Currently Male"] = "Actuellement masculin";
+$a->strings["Currently Female"] = "Actuellement féminin";
+$a->strings["Mostly Male"] = "Surtout masculin";
+$a->strings["Mostly Female"] = "Surtout féminin";
$a->strings["Transgender"] = "Transgenre";
$a->strings["Intersex"] = "Intersexuel";
$a->strings["Transsexual"] = "Transsexuel";
@@ -593,7 +593,7 @@ $a->strings["Sex Addict"] = "Accro au sexe";
$a->strings["Friends/Benefits"] = "Amis avec bénéfices";
$a->strings["Casual"] = "Sans engagement";
$a->strings["Engaged"] = "Fiancé(e)";
-$a->strings["Married"] = "Marrié(e)";
+$a->strings["Married"] = "Marié(e)";
$a->strings["Imaginarily married"] = "Marié(e) dans ses rêves";
$a->strings["Partners"] = "Partenaires";
$a->strings["Cohabiting"] = "En cohabitation";
@@ -657,32 +657,32 @@ $a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, v
$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
$a->strings["a private message"] = "un message privé";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir et/ou répondre à vos messages privés.";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
-$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]%4\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]%5\$s de %4\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]votre %4\$s[/zrl]";
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notification] Commentaire de %2\$s sur conversation #%1\$d";
-$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
+$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s a commenté un élément de conversation que vous suivez.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation.";
$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notification] %s a publié sur votre profil";
-$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s a posté sur votre profil à %3\$s";
+$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s a posté sur [zrl=%3\$s]votre profil[/zrl]";
$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notification] %s vous a marqué";
$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, vous avez été étiqueté sur %3\$s par %2\$s";
-$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
+$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]vous a tagué[/zrl].";
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notification] %1\$s vous a tapoté";
$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, vous avez été tapoté/pointé/sollicité par %2\$s sur %3\$s";
-$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
+$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]vous a tapoté[/zrl].";
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notification] %s a marqué votre publication";
-$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
-$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s a tagué votre publication sur %3\$s";
+$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s a tagué [zrl=%3\$s]votre publication[/zrl]";
$a->strings["[Red:Notify] Introduction received"] = "[Red:Notification] Nouvelle introduction";
-$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "";
-$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "";
+$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une introduction de '%2\$s' sur %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "%1\$s, vous avez reçu [zrl=%2\$s]une introduction[/zrl] de %3\$s.";
$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s avant d'approuver (ou non) son introduction.";
$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notification] Nouvelle suggestion d'amitié";
-$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
-$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une suggestion de relation de '%2\$s' à %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, avez reçu %3\$s comme [zrl=%2\$s]une suggestion de relation[/zrl] de %4\$s.";
$a->strings["Name:"] = "Nom :";
$a->strings["Photo:"] = "Photo :";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour donner suite (ou non) à cette suggestion.";
@@ -783,6 +783,8 @@ $a->strings["item not found."] = "élément introuvable.";
$a->strings["Edit Thing"] = "Éditer chose";
$a->strings["Select a profile"] = "Choisissez un profil";
$a->strings["Select a category of stuff. e.g. I ______ something"] = "Choisissez une catégorie de choses. p.ex. Je ______ quelque-chose";
+$a->strings["Post an activity"] = "Publier une activité";
+$a->strings["Only sends to viewers of the applicable profile"] = "";
$a->strings["Name of thing e.g. something"] = "Nom de la chose, p.ex. quelque-chose";
$a->strings["URL of thing (optional)"] = "URL de la chose (optionnel)";
$a->strings["URL for photo of thing (optional)"] = "URL de l'image de la chose (optionnel)";
@@ -852,103 +854,6 @@ $a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"
$a->strings["Bookmark added"] = "Marque-page ajouté";
$a->strings["My Bookmarks"] = "Mes marque-pages";
$a->strings["My Connections Bookmarks"] = "Marque-pages de mes relations";
-$a->strings["Name is required"] = "Le nom est requis";
-$a->strings["Key and Secret are required"] = "Clef et secret sont requis";
-$a->strings["Update"] = "Mise-à-jour";
-$a->strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé.";
-$a->strings["Password changed."] = "Le mot de passe a été changé.";
-$a->strings["Password update failed. Please try again."] = "La mise-à-jour du mot de passe a échoué. Merci de recommencer.";
-$a->strings["Not valid email."] = "Adresse de courriel non-valide.";
-$a->strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
-$a->strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer.";
-$a->strings["Settings updated."] = "Réglages sauvegardés.";
-$a->strings["Add application"] = "Ajouter une application";
-$a->strings["Name"] = "Nom";
-$a->strings["Name of application"] = "Nom de l'application";
-$a->strings["Consumer Key"] = "Clef de consommateur";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
-$a->strings["Consumer Secret"] = "Secret de consommateur";
-$a->strings["Redirect"] = "Redirection";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez blanc, sauf si l'application a demandé autrement";
-$a->strings["Icon url"] = "URL de l'icône";
-$a->strings["Optional"] = "Facultatif";
-$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
-$a->strings["Connected Apps"] = "Applications connectées";
-$a->strings["Client key starts with"] = "La clef cliente commence par";
-$a->strings["No name"] = "Sans nom";
-$a->strings["Remove authorization"] = "Révoquer l'autorisation";
-$a->strings["No feature settings configured"] = "Pas de fonctionnalité à configurer";
-$a->strings["Feature Settings"] = "Fonctionnalités";
-$a->strings["Account Settings"] = "Compte";
-$a->strings["Password Settings"] = "Mot de passe";
-$a->strings["New Password:"] = "Nouveau mot de passe :";
-$a->strings["Confirm:"] = "Confirmation :";
-$a->strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
-$a->strings["Email Address:"] = "Adresse de courriel :";
-$a->strings["Remove Account"] = "Supprimer le compte";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attention : cette action est permanente et irréversible.";
-$a->strings["Off"] = "Inactif";
-$a->strings["On"] = "Actif";
-$a->strings["Additional Features"] = "Fonctionnalités additionnelles";
-$a->strings["Connector Settings"] = "Connecteurs";
-$a->strings["No special theme for mobile devices"] = "Pas de thème spécifique aux périphériques mobiles";
-$a->strings["Display Settings"] = "Affichage";
-$a->strings["Display Theme:"] = "Thème :";
-$a->strings["Mobile Theme:"] = "Thème mobile :";
-$a->strings["Update browser every xx seconds"] = "Rafraîchir le navigateur toutes les xx secondes";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum";
-$a->strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps :";
-$a->strings["Maximum of 100 items"] = "100 éléments au maximum";
-$a->strings["Don't show emoticons"] = "Ne pas montrer les frimousses/émoticones";
-$a->strings["Nobody except yourself"] = "Personne sauf vous";
-$a->strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement";
-$a->strings["Anybody in your address book"] = "Tous vos contacts";
-$a->strings["Anybody on this website"] = "Tous les utilisateurs du site";
-$a->strings["Anybody in this network"] = "Tous les utilisateurs du réseau";
-$a->strings["Anybody on the internet"] = "Tout les utilisateurs d'Internet";
-$a->strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?";
-$a->strings["or"] = "ou";
-$a->strings["Your channel address is"] = "Votre canal a pour adresse";
-$a->strings["Channel Settings"] = "Canal";
-$a->strings["Basic Settings"] = "Basique";
-$a->strings["Your Timezone:"] = "Zone de temps :";
-$a->strings["Default Post Location:"] = "Localisation par défaut :";
-$a->strings["Use Browser Location:"] = "Utiliser la localisation fournie par le navigateur :";
-$a->strings["Adult Content"] = "Contenu \"adulte\"";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag #NSFW - Not Safe For Work)";
-$a->strings["Security and Privacy Settings"] = "Sécurité et vie privée";
-$a->strings["Hide my online presence"] = "Cacher ma présence en ligne";
-$a->strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil";
-$a->strings["Simple Privacy Settings:"] = "Réglages simples :";
-$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)";
-$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Classique - public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)";
-$a->strings["Private - default private, never open or public"] = "Privé - privé par défaut, jamais ouvert ni public";
-$a->strings["Blocked - default blocked to/from everybody"] = "Bloqué - par défaut, bloqué de/vers tout le monde";
-$a->strings["Advanced Privacy Settings"] = "Réglages avancés";
-$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximum de mises en relation par jour :";
-$a->strings["May reduce spam activity"] = "Contribue à réduire l'impact du spam";
-$a->strings["Default Post Permissions"] = "Permissions par défaut des publications";
-$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
-$a->strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour :";
-$a->strings["Useful to reduce spamming"] = "Utile pour réduire le spam";
-$a->strings["Notification Settings"] = "Notifications";
-$a->strings["By default post a status message when:"] = "Par défaut, publier un statut quand:";
-$a->strings["accepting a friend request"] = "acceptez une mise en relation";
-$a->strings["joining a forum/community"] = "joignez un forum ou à une communauté";
-$a->strings["making an interesting profile change"] = "faites une modification intéressante de votre profil";
-$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand :";
-$a->strings["You receive an introduction"] = "Vous recevez une introduction";
-$a->strings["Your introductions are confirmed"] = "Vos introductions sont acceptées/confirmées";
-$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
-$a->strings["Someone writes a followup comment"] = "Quelqu'un commente sur vos publications";
-$a->strings["You receive a private message"] = "Vous recevez un Message Privé";
-$a->strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/relation";
-$a->strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication";
-$a->strings["You are poked/prodded/etc. in a post"] = "Vous êtes tapoté/pointé/etc. dans une publication";
-$a->strings["Advanced Account/Page Type Settings"] = "Type de page/Compte (avancé)";
-$a->strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour certains cas particuliers";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit %3\$s de %2\$s";
$a->strings["[Embedded content - reload page to view]"] = "[Contenu embarqué - rechargez la page pour le voir]";
$a->strings["Channel not found."] = "Canal introuvable.";
@@ -1004,6 +909,7 @@ $a->strings["Delete this menu item"] = "Supprimer cet entrée du menu";
$a->strings["Edit this menu item"] = "Éditer cette entrée du menu";
$a->strings["New Menu Element"] = "Nouvelle entrée de menu";
$a->strings["Menu Item Permissions"] = "Permissions de l'entrée de menu";
+$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
$a->strings["Link text"] = "Texte du lien";
$a->strings["URL of link"] = "URL du lien";
$a->strings["Use Red magic-auth if available"] = "Utiliser l'authentification automagique de Red, si possible";
@@ -1014,6 +920,11 @@ $a->strings["Menu item not found."] = "Entrée de menu introuvable.";
$a->strings["Menu item deleted."] = "Entrée de menu supprimée.";
$a->strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu.";
$a->strings["Edit Menu Element"] = "Éditer l'entrée de menu";
+$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
+$a->strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil";
+$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le retirer.";
+$a->strings["Visible To"] = "Visible par";
+$a->strings["All Connections"] = "Toutes les relations";
$a->strings["Collection created."] = "Collection créée.";
$a->strings["Could not create collection."] = "Impossible de créer la collection.";
$a->strings["Collection updated."] = "Collection mise-à-jour.";
@@ -1026,11 +937,6 @@ $a->strings["Collection Editor"] = "Éditeur de collection";
$a->strings["Members"] = "Membres";
$a->strings["All Connected Channels"] = "Tous canaux connectés";
$a->strings["Click on a channel to add or remove."] = "Cliquer sur un canal pour ajouter ou supprimer";
-$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
-$a->strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil";
-$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le retirer.";
-$a->strings["Visible To"] = "Visible par";
-$a->strings["All Connections"] = "Toutes les relations";
$a->strings["Theme settings updated."] = "Réglages du thème sauvegardés.";
$a->strings["Site"] = "Site";
$a->strings["Users"] = "Utilisateurs";
@@ -1049,6 +955,7 @@ $a->strings["Pending registrations"] = "Inscriptions en attente";
$a->strings["Version"] = "Version";
$a->strings["Active plugins"] = "Extensions actives";
$a->strings["Site settings updated."] = "Réglages du site sauvegardés.";
+$a->strings["No special theme for mobile devices"] = "Pas de thème spécifique aux périphériques mobiles";
$a->strings["No special theme for accessibility"] = "Pas de thème spécifique pour l'accessibilité";
$a->strings["Closed"] = "Fermé";
$a->strings["Requires approval"] = "Après approbation";
@@ -1091,7 +998,7 @@ $a->strings["Check to block public access to all otherwise public personal pages
$a->strings["Force publish"] = "Forcer publication";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour forcer la publication de tous les profils du site dans l'annuaire.";
$a->strings["No login on Homepage"] = "Pas de connexion depuis la page d'accueil";
-$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
+$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Cocher pour ne pas montrer le formulaire de connexion sur la page d'accueil (typiquement, pour quand vous utilisez la page d'accueil pour afficher du contenu via le canal du site).";
$a->strings["Proxy user"] = "Utilisateurs du proxy";
$a->strings["Proxy URL"] = "URL du proxy";
$a->strings["Network timeout"] = "Délai maximal du réseau";
@@ -1331,7 +1238,7 @@ $a->strings["This site is not a directory server"] = "Ce site n'est pas un serve
$a->strings["Failed to create source. No channel selected."] = "Impossible de créer la source. Aucun canal selectionné.";
$a->strings["Source created."] = "Source créée.";
$a->strings["Source updated."] = "Source mise à jour.";
-$a->strings["*"] = "";
+$a->strings["*"] = "*";
$a->strings["Manage remote sources of content for your channel."] = "Gérer les sources distantes du contenu de votre canal.";
$a->strings["New Source"] = "Nouvelle source";
$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal.";
@@ -1422,6 +1329,10 @@ $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for t
$a->strings["Version %s"] = "Version %s";
$a->strings["Installed plugins/addons/apps:"] = "Extensions/applications installées :";
$a->strings["No installed plugins/addons/apps"] = "Aucune extension/application installée";
+$a->strings["Project Donations"] = "Donations au projet";
+$a->strings["
The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better web. Select the following option for a one-time donation of your choosing
"] = "
The Red Matrix vous est mis à disposition par des volontaires, qui travaillent dessus sur leur temps libre. Votre soutien nous aidera à construire un meilleur web. Merci de choisir l'option suivante pour une donation ponctuelle de votre choix.
";
+$a->strings["
or
"] = "
ou bien
";
+$a->strings["Recurring Donation Options"] = "Options de donation récurente";
$a->strings["Red"] = "Red";
$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Ceci est une instance - un hub - de la Matrice Red - un réseau global et coopératif de sites web qui respectent la vie privée de manière décentralisée/acentrée.";
$a->strings["Running at web location"] = "En train de tourner chez";
@@ -1451,6 +1362,104 @@ $a->strings["Forgot your Password?"] = "Mot de passe oublié?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte à lettres pour la suite des instructions.";
$a->strings["Email Address"] = "Adresse de courriel";
$a->strings["Reset"] = "Réinitialiser";
+$a->strings["Name is required"] = "Le nom est requis";
+$a->strings["Key and Secret are required"] = "Clef et secret sont requis";
+$a->strings["Update"] = "Mise-à-jour";
+$a->strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé.";
+$a->strings["Password changed."] = "Le mot de passe a été changé.";
+$a->strings["Password update failed. Please try again."] = "La mise-à-jour du mot de passe a échoué. Merci de recommencer.";
+$a->strings["Not valid email."] = "Adresse de courriel non-valide.";
+$a->strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
+$a->strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer.";
+$a->strings["Settings updated."] = "Réglages sauvegardés.";
+$a->strings["Add application"] = "Ajouter une application";
+$a->strings["Name"] = "Nom";
+$a->strings["Name of application"] = "Nom de l'application";
+$a->strings["Consumer Key"] = "Clef de consommateur";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
+$a->strings["Consumer Secret"] = "Secret de consommateur";
+$a->strings["Redirect"] = "Redirection";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez blanc, sauf si l'application a demandé autrement";
+$a->strings["Icon url"] = "URL de l'icône";
+$a->strings["Optional"] = "Facultatif";
+$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
+$a->strings["Connected Apps"] = "Applications connectées";
+$a->strings["Client key starts with"] = "La clef cliente commence par";
+$a->strings["No name"] = "Sans nom";
+$a->strings["Remove authorization"] = "Révoquer l'autorisation";
+$a->strings["No feature settings configured"] = "Pas de fonctionnalité à configurer";
+$a->strings["Feature Settings"] = "Fonctionnalités";
+$a->strings["Account Settings"] = "Compte";
+$a->strings["Password Settings"] = "Mot de passe";
+$a->strings["New Password:"] = "Nouveau mot de passe :";
+$a->strings["Confirm:"] = "Confirmation :";
+$a->strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
+$a->strings["Email Address:"] = "Adresse de courriel :";
+$a->strings["Remove Account"] = "Supprimer le compte";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attention : cette action est permanente et irréversible.";
+$a->strings["Off"] = "Inactif";
+$a->strings["On"] = "Actif";
+$a->strings["Additional Features"] = "Fonctionnalités additionnelles";
+$a->strings["Connector Settings"] = "Connecteurs";
+$a->strings["Display Settings"] = "Affichage";
+$a->strings["Display Theme:"] = "Thème :";
+$a->strings["Mobile Theme:"] = "Thème mobile :";
+$a->strings["Update browser every xx seconds"] = "Rafraîchir le navigateur toutes les xx secondes";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum";
+$a->strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps :";
+$a->strings["Maximum of 100 items"] = "100 éléments au maximum";
+$a->strings["Don't show emoticons"] = "Ne pas montrer les frimousses/émoticones";
+$a->strings["Do not view remote profiles in frames"] = "";
+$a->strings["By default open in a sub-window of your own site"] = "Par défaut, ouvrir dans une sous-fenêtre de votre propre site";
+$a->strings["Nobody except yourself"] = "Personne sauf vous";
+$a->strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement";
+$a->strings["Anybody in your address book"] = "Tous vos contacts";
+$a->strings["Anybody on this website"] = "Tous les utilisateurs du site";
+$a->strings["Anybody in this network"] = "Tous les utilisateurs du réseau";
+$a->strings["Anybody on the internet"] = "Tout les utilisateurs d'Internet";
+$a->strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux arrivants?";
+$a->strings["or"] = "ou";
+$a->strings["Your channel address is"] = "Votre canal a pour adresse";
+$a->strings["Channel Settings"] = "Canal";
+$a->strings["Basic Settings"] = "Basique";
+$a->strings["Your Timezone:"] = "Zone de temps :";
+$a->strings["Default Post Location:"] = "Localisation par défaut :";
+$a->strings["Use Browser Location:"] = "Utiliser la localisation fournie par le navigateur :";
+$a->strings["Adult Content"] = "Contenu \"adulte\"";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec le tag #NSFW - Not Safe For Work)";
+$a->strings["Security and Privacy Settings"] = "Sécurité et vie privée";
+$a->strings["Hide my online presence"] = "Cacher ma présence en ligne";
+$a->strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil";
+$a->strings["Simple Privacy Settings:"] = "Réglages simples :";
+$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)";
+$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Classique - public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)";
+$a->strings["Private - default private, never open or public"] = "Privé - privé par défaut, jamais ouvert ni public";
+$a->strings["Blocked - default blocked to/from everybody"] = "Bloqué - par défaut, bloqué de/vers tout le monde";
+$a->strings["Advanced Privacy Settings"] = "Réglages avancés";
+$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximum de mises en relation par jour :";
+$a->strings["May reduce spam activity"] = "Contribue à réduire l'impact du spam";
+$a->strings["Default Post Permissions"] = "Permissions par défaut des publications";
+$a->strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour :";
+$a->strings["Useful to reduce spamming"] = "Utile pour réduire le spam";
+$a->strings["Notification Settings"] = "Notifications";
+$a->strings["By default post a status message when:"] = "Par défaut, publier un statut quand:";
+$a->strings["accepting a friend request"] = "acceptez une mise en relation";
+$a->strings["joining a forum/community"] = "joignez un forum ou à une communauté";
+$a->strings["making an interesting profile change"] = "faites une modification intéressante de votre profil";
+$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand :";
+$a->strings["You receive an introduction"] = "Vous recevez une introduction";
+$a->strings["Your introductions are confirmed"] = "Vos introductions sont acceptées/confirmées";
+$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
+$a->strings["Someone writes a followup comment"] = "Quelqu'un commente sur vos publications";
+$a->strings["You receive a private message"] = "Vous recevez un Message Privé";
+$a->strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/relation";
+$a->strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication";
+$a->strings["You are poked/prodded/etc. in a post"] = "Vous êtes tapoté/pointé/etc. dans une publication";
+$a->strings["Advanced Account/Page Type Settings"] = "Type de page/Compte (avancé)";
+$a->strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour certains cas particuliers";
+$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Merci d'activer le mode expert (dans Réglages > Fonctionnalités additionelles) pour affiner!";
$a->strings["Nothing to import."] = "Rien à importer.";
$a->strings["Unable to download data from old server"] = "Impossible de récupérer les données de l'ancien serveur";
$a->strings["Imported file is empty."] = "Le fichier importé est vide.";
@@ -1535,7 +1544,7 @@ $a->strings["Only show blocked connections"] = "Ne montrer que les relations blo
$a->strings["Only show ignored connections"] = "Ne montrer que les relations ignorées";
$a->strings["Only show archived connections"] = "Ne montrer que les relations archivées";
$a->strings["Only show hidden connections"] = "Ne montrer que les relations cachées";
-$a->strings["%1\$s [%2\$s]"] = "";
+$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
$a->strings["Edit contact"] = "Éditer contact";
$a->strings["Search your connections"] = "Chercher parmi vos relations";
$a->strings["Finding: "] = "Recherche :";
@@ -1708,13 +1717,13 @@ $a->strings["Right offset of the section element"] = "Décalage droit de l'élé
$a->strings["Section width"] = "Largeur de la section";
$a->strings["Left offset of the aside"] = "Décalage gauche du panneau latéral";
$a->strings["Right offset of the aside element"] = "Décalage droit du panneau latéral";
-$a->strings["None"] = "";
+$a->strings["None"] = "Aucun(e)";
$a->strings["Header image"] = "Têtière";
$a->strings["Header image only on profile pages"] = "Têtière seulement sur les profils";
$a->strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur.";
$a->strings["Update Error at %s"] = "Erreur de mise-à-jour sur %s";
$a->strings["Create an account to access services and applications within the Red Matrix"] = "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red";
-$a->strings["Password"] = "Mot de pass";
+$a->strings["Password"] = "Mot de passe";
$a->strings["Remember me"] = "Se souvenir de moi";
$a->strings["Forgot your password?"] = "Mot de passe oublié?";
$a->strings["permission denied"] = "permission refusée";
diff --git a/view/it/messages.po b/view/it/messages.po
index 98d531562..8613de94c 100644
--- a/view/it/messages.po
+++ b/view/it/messages.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Red Matrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-02-14 00:02-0800\n"
-"PO-Revision-Date: 2014-02-19 20:51+0000\n"
+"POT-Creation-Date: 2014-02-28 00:02-0800\n"
+"PO-Revision-Date: 2014-03-04 08:05+0000\n"
"Last-Translator: tuscanhobbit Pa \n"
"Language-Team: Italian (http://www.transifex.com/projects/p/red-matrix/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -28,7 +28,7 @@ msgid "Categories"
msgstr "Categorie"
#: ../../include/widgets.php:115 ../../include/widgets.php:155
-#: ../../include/Contact.php:104 ../../include/identity.php:628
+#: ../../include/Contact.php:107 ../../include/identity.php:643
#: ../../mod/directory.php:184 ../../mod/match.php:62
#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
msgid "Connect"
@@ -67,8 +67,9 @@ msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"
msgid "Notes"
msgstr "Note"
-#: ../../include/widgets.php:173 ../../include/text.php:754
-#: ../../include/text.php:768 ../../mod/filer.php:36
+#: ../../include/widgets.php:173 ../../include/text.php:759
+#: ../../include/text.php:773 ../../mod/filer.php:36 ../../mod/rbmark.php:28
+#: ../../mod/rbmark.php:98
msgid "Save"
msgstr "Salva"
@@ -94,7 +95,7 @@ msgstr "Cartelle salvate"
msgid "Everything"
msgstr "Tutto"
-#: ../../include/widgets.php:318 ../../include/items.php:3636
+#: ../../include/widgets.php:318
msgid "Archives"
msgstr "Archivi"
@@ -110,7 +111,7 @@ msgstr "Io"
msgid "Best Friends"
msgstr "Buoni amici"
-#: ../../include/widgets.php:373 ../../include/identity.php:310
+#: ../../include/widgets.php:373 ../../include/identity.php:314
#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
msgid "Friends"
msgstr "Amici"
@@ -173,7 +174,7 @@ msgid "Channel Sources"
msgstr "Sorgenti del canale"
#: ../../include/widgets.php:487 ../../include/nav.php:181
-#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+#: ../../mod/admin.php:838 ../../mod/admin.php:1043
msgid "Settings"
msgstr "Impostazioni"
@@ -189,6 +190,14 @@ msgstr "Nuovo messaggio"
msgid "Chat Rooms"
msgstr "Chat attive"
+#: ../../include/widgets.php:603
+msgid "Bookmarked Chatrooms"
+msgstr "Chat nei segnalibri"
+
+#: ../../include/widgets.php:621
+msgid "Suggested Chatrooms"
+msgstr "Chat suggerite"
+
#: ../../include/acl_selectors.php:235
msgid "Visible to everybody"
msgstr "Visibile a tutti"
@@ -224,7 +233,7 @@ msgstr "Guarda %2$s di %1$s "
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s ha aggiornato %2$s cambiando %3$s."
-#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1423
+#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1425
msgid "Logout"
msgstr "Esci"
@@ -308,7 +317,7 @@ msgstr "Pagine web"
msgid "Your webpages"
msgstr "Le tue pagine web"
-#: ../../include/nav.php:89 ../../boot.php:1424
+#: ../../include/nav.php:89 ../../boot.php:1426
msgid "Login"
msgstr "Accedi"
@@ -329,7 +338,7 @@ msgstr "Clicca per autenticarti sul tuo server principale"
msgid "Home Page"
msgstr "Bacheca"
-#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1400
+#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1402
msgid "Register"
msgstr "Iscriviti"
@@ -337,7 +346,7 @@ msgstr "Iscriviti"
msgid "Create an account"
msgstr "Crea un account"
-#: ../../include/nav.php:134 ../../mod/help.php:60 ../../mod/help.php:64
+#: ../../include/nav.php:134 ../../mod/help.php:60 ../../mod/help.php:65
msgid "Help"
msgstr "Guida"
@@ -353,8 +362,8 @@ msgstr "Apps"
msgid "Addon applications, utilities, games"
msgstr "App, strumenti e giochi aggiuntivi"
-#: ../../include/nav.php:139 ../../include/text.php:752
-#: ../../include/text.php:766 ../../mod/search.php:29
+#: ../../include/nav.php:139 ../../include/text.php:757
+#: ../../include/text.php:771 ../../mod/search.php:29
msgid "Search"
msgstr "Cerca"
@@ -514,320 +523,320 @@ msgstr "più recenti"
msgid "newer"
msgstr "più nuovi"
-#: ../../include/text.php:670
+#: ../../include/text.php:675
msgid "No connections"
msgstr "Nessun contatto"
-#: ../../include/text.php:681
+#: ../../include/text.php:686
#, php-format
msgid "%d Connection"
msgid_plural "%d Connections"
msgstr[0] "%d contatto"
msgstr[1] "%d contatti"
-#: ../../include/text.php:693
+#: ../../include/text.php:698
msgid "View Connections"
msgstr "Elenco contatti"
-#: ../../include/text.php:834
+#: ../../include/text.php:839
msgid "poke"
msgstr "poke"
-#: ../../include/text.php:834 ../../include/conversation.php:240
+#: ../../include/text.php:839 ../../include/conversation.php:240
msgid "poked"
msgstr "ha ricevuto un poke"
-#: ../../include/text.php:835
+#: ../../include/text.php:840
msgid "ping"
msgstr "ping"
-#: ../../include/text.php:835
+#: ../../include/text.php:840
msgid "pinged"
msgstr "ha ricevuto un ping"
-#: ../../include/text.php:836
+#: ../../include/text.php:841
msgid "prod"
msgstr "prod"
-#: ../../include/text.php:836
+#: ../../include/text.php:841
msgid "prodded"
msgstr "ha ricevuto un prod"
-#: ../../include/text.php:837
+#: ../../include/text.php:842
msgid "slap"
msgstr "schiaffo"
-#: ../../include/text.php:837
+#: ../../include/text.php:842
msgid "slapped"
msgstr "ha ricevuto uno schiaffo"
-#: ../../include/text.php:838
+#: ../../include/text.php:843
msgid "finger"
msgstr "finger"
-#: ../../include/text.php:838
+#: ../../include/text.php:843
msgid "fingered"
msgstr "ha ricevuto un finger"
-#: ../../include/text.php:839
+#: ../../include/text.php:844
msgid "rebuff"
msgstr "rifiuto"
-#: ../../include/text.php:839
+#: ../../include/text.php:844
msgid "rebuffed"
msgstr "ha ricevuto un rifiuto"
-#: ../../include/text.php:851
+#: ../../include/text.php:856
msgid "happy"
msgstr "allegro"
-#: ../../include/text.php:852
+#: ../../include/text.php:857
msgid "sad"
msgstr "triste"
-#: ../../include/text.php:853
+#: ../../include/text.php:858
msgid "mellow"
msgstr "calmo"
-#: ../../include/text.php:854
+#: ../../include/text.php:859
msgid "tired"
msgstr "stanco"
-#: ../../include/text.php:855
+#: ../../include/text.php:860
msgid "perky"
msgstr "vivace"
-#: ../../include/text.php:856
+#: ../../include/text.php:861
msgid "angry"
msgstr "arrabbiato"
-#: ../../include/text.php:857
+#: ../../include/text.php:862
msgid "stupified"
msgstr "stordito"
-#: ../../include/text.php:858
+#: ../../include/text.php:863
msgid "puzzled"
msgstr "confuso"
-#: ../../include/text.php:859
+#: ../../include/text.php:864
msgid "interested"
msgstr "attento"
-#: ../../include/text.php:860
+#: ../../include/text.php:865
msgid "bitter"
msgstr "amaro"
-#: ../../include/text.php:861
+#: ../../include/text.php:866
msgid "cheerful"
msgstr "allegro"
-#: ../../include/text.php:862
+#: ../../include/text.php:867
msgid "alive"
msgstr "vivace"
-#: ../../include/text.php:863
+#: ../../include/text.php:868
msgid "annoyed"
msgstr "seccato"
-#: ../../include/text.php:864
+#: ../../include/text.php:869
msgid "anxious"
msgstr "ansioso"
-#: ../../include/text.php:865
+#: ../../include/text.php:870
msgid "cranky"
msgstr "irritabile"
-#: ../../include/text.php:866
+#: ../../include/text.php:871
msgid "disturbed"
msgstr "turbato"
-#: ../../include/text.php:867
+#: ../../include/text.php:872
msgid "frustrated"
msgstr "frustrato"
-#: ../../include/text.php:868
+#: ../../include/text.php:873
msgid "motivated"
msgstr "motivato"
-#: ../../include/text.php:869
+#: ../../include/text.php:874
msgid "relaxed"
msgstr "rilassato"
-#: ../../include/text.php:870
+#: ../../include/text.php:875
msgid "surprised"
msgstr "sorpreso"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Monday"
msgstr "lunedì"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Tuesday"
msgstr "martedì"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Wednesday"
msgstr "mercoledì"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Thursday"
msgstr "giovedì"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Friday"
msgstr "venerdì"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Saturday"
msgstr "sabato"
-#: ../../include/text.php:1031
+#: ../../include/text.php:1036
msgid "Sunday"
msgstr "domenica"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "January"
msgstr "gennaio"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "February"
msgstr "febbraio"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "March"
msgstr "marzo"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "April"
msgstr "aprile"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "May"
msgstr "maggio"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "June"
msgstr "giugno"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "July"
msgstr "luglio"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "August"
msgstr "agosto"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "September"
msgstr "settembre"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "October"
msgstr "ottobre"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "November"
msgstr "novembre"
-#: ../../include/text.php:1035
+#: ../../include/text.php:1040
msgid "December"
msgstr "dicembre"
-#: ../../include/text.php:1113
+#: ../../include/text.php:1118
msgid "unknown.???"
msgstr "sconosciuto???"
-#: ../../include/text.php:1114
+#: ../../include/text.php:1119
msgid "bytes"
msgstr "byte"
-#: ../../include/text.php:1149
+#: ../../include/text.php:1154
msgid "remove category"
msgstr "rimuovi la categoria"
-#: ../../include/text.php:1171
+#: ../../include/text.php:1176
msgid "remove from file"
msgstr "rimuovi dal file"
-#: ../../include/text.php:1229 ../../include/text.php:1241
+#: ../../include/text.php:1234 ../../include/text.php:1246
msgid "Click to open/close"
msgstr "Clicca per aprire/chiudere"
-#: ../../include/text.php:1417 ../../mod/events.php:332
+#: ../../include/text.php:1401 ../../mod/events.php:332
msgid "link to source"
msgstr "Link all'originale"
-#: ../../include/text.php:1436
+#: ../../include/text.php:1420
msgid "Select a page layout: "
msgstr "Scegli il layout della pagina:"
-#: ../../include/text.php:1439 ../../include/text.php:1504
+#: ../../include/text.php:1423 ../../include/text.php:1488
msgid "default"
msgstr "predefinito"
-#: ../../include/text.php:1475
+#: ../../include/text.php:1459
msgid "Page content type: "
msgstr "Contenuto della pagina:"
-#: ../../include/text.php:1516
+#: ../../include/text.php:1500
msgid "Select an alternate language"
msgstr "Seleziona una lingua diversa"
-#: ../../include/text.php:1637 ../../include/conversation.php:117
+#: ../../include/text.php:1621 ../../include/conversation.php:117
#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
msgid "photo"
msgstr "la foto"
-#: ../../include/text.php:1640 ../../include/conversation.php:120
+#: ../../include/text.php:1624 ../../include/conversation.php:120
#: ../../mod/tagger.php:49
msgid "event"
msgstr "l'evento"
-#: ../../include/text.php:1643 ../../include/conversation.php:145
+#: ../../include/text.php:1627 ../../include/conversation.php:145
#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
msgid "status"
msgstr "il messaggio di stato"
-#: ../../include/text.php:1645 ../../include/conversation.php:147
+#: ../../include/text.php:1629 ../../include/conversation.php:147
#: ../../mod/tagger.php:55
msgid "comment"
msgstr "il commento"
-#: ../../include/text.php:1650
+#: ../../include/text.php:1634
msgid "activity"
msgstr "l'attività"
-#: ../../include/text.php:1907
+#: ../../include/text.php:1891
msgid "Design"
msgstr "Design"
-#: ../../include/text.php:1909
+#: ../../include/text.php:1893
msgid "Blocks"
msgstr "Riquadri"
-#: ../../include/text.php:1910
+#: ../../include/text.php:1894
msgid "Menus"
msgstr "Menù"
-#: ../../include/text.php:1911
+#: ../../include/text.php:1895
msgid "Layouts"
msgstr "Layout"
-#: ../../include/text.php:1912
+#: ../../include/text.php:1896
msgid "Pages"
msgstr "Pagine"
-#: ../../include/bbcode.php:128 ../../include/bbcode.php:594
-#: ../../include/bbcode.php:597 ../../include/bbcode.php:602
-#: ../../include/bbcode.php:605 ../../include/bbcode.php:608
-#: ../../include/bbcode.php:611 ../../include/bbcode.php:616
-#: ../../include/bbcode.php:619 ../../include/bbcode.php:624
-#: ../../include/bbcode.php:627 ../../include/bbcode.php:630
-#: ../../include/bbcode.php:633
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:601
+#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
+#: ../../include/bbcode.php:612 ../../include/bbcode.php:615
+#: ../../include/bbcode.php:618 ../../include/bbcode.php:623
+#: ../../include/bbcode.php:626 ../../include/bbcode.php:631
+#: ../../include/bbcode.php:634 ../../include/bbcode.php:637
+#: ../../include/bbcode.php:640
msgid "Image/photo"
msgstr "Immagine"
-#: ../../include/bbcode.php:163 ../../include/bbcode.php:644
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:651
msgid "Encrypted content"
msgstr "Contenuto crittografato"
@@ -838,21 +847,21 @@ msgstr "QR code"
#: ../../include/bbcode.php:213
#, php-format
msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s ha scritto %2$s seguente %3$s"
+msgstr "%1$s ha scritto %2$s %3$s"
#: ../../include/bbcode.php:215
msgid "post"
msgstr "l'articolo"
-#: ../../include/bbcode.php:562 ../../include/bbcode.php:582
+#: ../../include/bbcode.php:569 ../../include/bbcode.php:589
msgid "$1 wrote:"
msgstr "$1 ha scritto:"
-#: ../../include/Contact.php:120
+#: ../../include/Contact.php:123
msgid "New window"
msgstr "Nuova finestra"
-#: ../../include/Contact.php:121
+#: ../../include/Contact.php:124
msgid "Open the selected location in a different window or browser tab"
msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra"
@@ -1125,8 +1134,8 @@ msgstr "OStatus"
msgid "RSS/Atom"
msgstr "RSS/Atom"
-#: ../../include/contact_selectors.php:77 ../../mod/admin.php:741
-#: ../../mod/admin.php:750 ../../boot.php:1426
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:742
+#: ../../mod/admin.php:751 ../../boot.php:1428
msgid "Email"
msgstr "Email"
@@ -1244,7 +1253,7 @@ msgstr "Inizio:"
msgid "Finishes:"
msgstr "Fine:"
-#: ../../include/event.php:40 ../../include/identity.php:679
+#: ../../include/event.php:40 ../../include/identity.php:694
#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
#: ../../mod/directory.php:157 ../../mod/dirprofile.php:111
msgid "Location:"
@@ -1261,7 +1270,7 @@ msgstr "È stato ripristinato un insieme con lo stesso nome che era stato elimin
msgid "Default privacy group for new contacts"
msgstr "Insieme predefinito per i nuovi canali che aggiungi"
-#: ../../include/group.php:242 ../../mod/admin.php:750
+#: ../../include/group.php:242 ../../mod/admin.php:751
msgid "All Channels"
msgstr "Tutti i canali"
@@ -1304,95 +1313,103 @@ msgid "show fewer"
msgstr "riduci"
#: ../../include/js_strings.php:9
+msgid "+ Show More"
+msgstr "+ Mostra tutto"
+
+#: ../../include/js_strings.php:10
+msgid "- Show Less"
+msgstr "- Mostra ridotto"
+
+#: ../../include/js_strings.php:11
msgid "Password too short"
msgstr "Password troppo corta"
-#: ../../include/js_strings.php:10
+#: ../../include/js_strings.php:12
msgid "Passwords do not match"
msgstr "Le password non corrispondono"
-#: ../../include/js_strings.php:11 ../../mod/photos.php:39
+#: ../../include/js_strings.php:13 ../../mod/photos.php:39
msgid "everybody"
msgstr "tutti"
-#: ../../include/js_strings.php:12
+#: ../../include/js_strings.php:14
msgid "Secret Passphrase"
msgstr "Chiave segreta"
-#: ../../include/js_strings.php:13
+#: ../../include/js_strings.php:15
msgid "Passphrase hint"
msgstr "Suggerimento per la chiave segreta"
-#: ../../include/js_strings.php:15
+#: ../../include/js_strings.php:17
msgid "timeago.prefixAgo"
msgstr "timeago.prefixAgo"
-#: ../../include/js_strings.php:16
-msgid "timeago.suffixAgo"
-msgstr "timeago.suffixAgo"
+#: ../../include/js_strings.php:18
+msgid "timeago.prefixFromNow"
+msgstr "timeago.prefixFromNow"
-#: ../../include/js_strings.php:17
+#: ../../include/js_strings.php:19
msgid "ago"
msgstr "fa"
-#: ../../include/js_strings.php:18
+#: ../../include/js_strings.php:20
msgid "from now"
msgstr "da adesso"
-#: ../../include/js_strings.php:19
+#: ../../include/js_strings.php:21
msgid "less than a minute"
msgstr "meno di un minuto"
-#: ../../include/js_strings.php:20
+#: ../../include/js_strings.php:22
msgid "about a minute"
msgstr "circa un minuto"
-#: ../../include/js_strings.php:21
+#: ../../include/js_strings.php:23
#, php-format
msgid "%d minutes"
msgstr "%d minuti"
-#: ../../include/js_strings.php:22
+#: ../../include/js_strings.php:24
msgid "about an hour"
msgstr "circa un’ora"
-#: ../../include/js_strings.php:23
+#: ../../include/js_strings.php:25
#, php-format
msgid "about %d hours"
msgstr "circa %d ore"
-#: ../../include/js_strings.php:24
+#: ../../include/js_strings.php:26
msgid "a day"
msgstr "un giorno"
-#: ../../include/js_strings.php:25
+#: ../../include/js_strings.php:27
#, php-format
msgid "%d days"
msgstr "%d giorni"
-#: ../../include/js_strings.php:26
+#: ../../include/js_strings.php:28
msgid "about a month"
msgstr "circa un mese"
-#: ../../include/js_strings.php:27
+#: ../../include/js_strings.php:29
#, php-format
msgid "%d months"
msgstr "%d mesi"
-#: ../../include/js_strings.php:28
+#: ../../include/js_strings.php:30
msgid "about a year"
msgstr "circa un anno"
-#: ../../include/js_strings.php:29
+#: ../../include/js_strings.php:31
#, php-format
msgid "%d years"
msgstr "%d anni"
-#: ../../include/js_strings.php:30
+#: ../../include/js_strings.php:32
msgid " "
msgstr " "
-#: ../../include/js_strings.php:31
+#: ../../include/js_strings.php:33
msgid "timeago.numbers"
msgstr "timeago.numbers"
@@ -1412,39 +1429,40 @@ msgstr "Impossibile determinare il mittente."
msgid "Stored post could not be verified."
msgstr "Non è stato possibile verificare l'articolo inserito."
-#: ../../include/photo/photo_driver.php:637 ../../include/photos.php:51
+#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51
#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
#: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
#: ../../mod/photos.php:656 ../../mod/photos.php:678
msgid "Profile Photos"
msgstr "Foto del profilo"
-#: ../../include/attach.php:98 ../../include/attach.php:129
-#: ../../include/attach.php:185 ../../include/attach.php:200
-#: ../../include/attach.php:233 ../../include/attach.php:247
-#: ../../include/attach.php:268 ../../include/attach.php:463
-#: ../../include/attach.php:541 ../../include/chat.php:113
-#: ../../include/photos.php:15 ../../include/items.php:3515
+#: ../../include/attach.php:119 ../../include/attach.php:166
+#: ../../include/attach.php:229 ../../include/attach.php:243
+#: ../../include/attach.php:283 ../../include/attach.php:297
+#: ../../include/attach.php:322 ../../include/attach.php:513
+#: ../../include/attach.php:585 ../../include/chat.php:113
+#: ../../include/photos.php:15 ../../include/items.php:3575
#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247
#: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13
-#: ../../mod/invite.php:104 ../../mod/item.php:182 ../../mod/item.php:190
-#: ../../mod/menu.php:44 ../../mod/webpages.php:40 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/bookmarks.php:46 ../../mod/chat.php:87
-#: ../../mod/chat.php:92 ../../mod/viewconnections.php:22
-#: ../../mod/viewconnections.php:27 ../../mod/delegate.php:6
-#: ../../mod/mitem.php:73 ../../mod/group.php:9 ../../mod/viewsrc.php:12
-#: ../../mod/editpost.php:13 ../../mod/connedit.php:182
-#: ../../mod/layouts.php:27 ../../mod/layouts.php:42 ../../mod/page.php:30
-#: ../../mod/page.php:80 ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/invite.php:104 ../../mod/settings.php:492 ../../mod/menu.php:44
+#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/bookmarks.php:46 ../../mod/item.php:182 ../../mod/item.php:190
+#: ../../mod/chat.php:89 ../../mod/chat.php:94
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
+#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
+#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
+#: ../../mod/layouts.php:39 ../../mod/page.php:30 ../../mod/page.php:80
+#: ../../mod/network.php:12 ../../mod/profiles.php:152
#: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
-#: ../../mod/achievements.php:27 ../../mod/settings.php:493
-#: ../../mod/manage.php:6 ../../mod/mail.php:108 ../../mod/editlayout.php:48
-#: ../../mod/profile_photo.php:187 ../../mod/profile_photo.php:200
-#: ../../mod/connections.php:169 ../../mod/notifications.php:66
-#: ../../mod/blocks.php:29 ../../mod/blocks.php:44
-#: ../../mod/editwebpage.php:44 ../../mod/editwebpage.php:83
-#: ../../mod/poke.php:128 ../../mod/channel.php:88 ../../mod/channel.php:188
+#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
+#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
+#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
+#: ../../mod/notifications.php:66 ../../mod/blocks.php:29
+#: ../../mod/blocks.php:44 ../../mod/editwebpage.php:44
+#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128
+#: ../../mod/channel.php:88 ../../mod/channel.php:188
#: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
#: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
@@ -1455,65 +1473,65 @@ msgstr "Foto del profilo"
msgid "Permission denied."
msgstr "Permesso negato."
-#: ../../include/attach.php:180 ../../include/attach.php:228
+#: ../../include/attach.php:224 ../../include/attach.php:278
msgid "Item was not found."
msgstr "Elemento non trovato."
-#: ../../include/attach.php:281
+#: ../../include/attach.php:335
msgid "No source file."
msgstr "Nessun file di origine."
-#: ../../include/attach.php:298
+#: ../../include/attach.php:352
msgid "Cannot locate file to replace"
msgstr "Il file da sostituire non è stato trovato"
-#: ../../include/attach.php:316
+#: ../../include/attach.php:370
msgid "Cannot locate file to revise/update"
msgstr "Il file da aggiornare non è stato trovato"
-#: ../../include/attach.php:327
+#: ../../include/attach.php:381
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Il file supera la dimensione massima di %d"
-#: ../../include/attach.php:339
+#: ../../include/attach.php:393
#, php-format
msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."
-#: ../../include/attach.php:423
+#: ../../include/attach.php:475
msgid "File upload failed. Possible system limit or action terminated."
msgstr "Caricamento file fallito, potrebbe aver superato i limiti o l'azione potrebbe essere stata interrotta."
-#: ../../include/attach.php:435
+#: ../../include/attach.php:487
msgid "Stored file could not be verified. Upload failed."
msgstr "Il file non può essere verificato. Caricamento fallito."
-#: ../../include/attach.php:479 ../../include/attach.php:496
+#: ../../include/attach.php:528 ../../include/attach.php:545
msgid "Path not available."
msgstr "Percorso non disponibile."
-#: ../../include/attach.php:546
+#: ../../include/attach.php:590
msgid "Empty pathname"
msgstr "Il percorso del file è vuoto"
-#: ../../include/attach.php:564
+#: ../../include/attach.php:606
msgid "duplicate filename or path"
msgstr "il file o percorso del file è duplicato"
-#: ../../include/attach.php:589
+#: ../../include/attach.php:630
msgid "Path not found."
msgstr "Percorso del file non trovato."
-#: ../../include/attach.php:634
+#: ../../include/attach.php:674
msgid "mkdir failed."
msgstr "mkdir fallito."
-#: ../../include/attach.php:638
+#: ../../include/attach.php:678
msgid "database storage failed."
msgstr "scrittura su database fallita."
-#: ../../include/bookmarks.php:31
+#: ../../include/bookmarks.php:42
#, php-format
msgid "%1$s's bookmarks"
msgstr "I segnalibri di %1$s"
@@ -1552,8 +1570,8 @@ msgid "Select"
msgstr "Seleziona"
#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
-#: ../../mod/thing.php:236 ../../mod/group.php:176 ../../mod/admin.php:745
-#: ../../mod/connedit.php:359 ../../mod/settings.php:579
+#: ../../mod/thing.php:236 ../../mod/settings.php:578 ../../mod/group.php:176
+#: ../../mod/admin.php:746 ../../mod/connedit.php:359
#: ../../mod/filestorage.php:171 ../../mod/photos.php:1044
msgid "Delete"
msgstr "Elimina"
@@ -1595,7 +1613,7 @@ msgid "View in context"
msgstr "Vedi nel contesto"
#: ../../include/conversation.php:707 ../../include/conversation.php:1120
-#: ../../include/ItemObject.php:259 ../../mod/editpost.php:112
+#: ../../include/ItemObject.php:259 ../../mod/editpost.php:121
#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
#: ../../mod/photos.php:975
@@ -1726,7 +1744,7 @@ msgid "Expires YYYY-MM-DD HH:MM"
msgstr "Scadenza il AAAA-MM-GG OO:MM"
#: ../../include/conversation.php:1083 ../../include/ItemObject.php:557
-#: ../../mod/webpages.php:122 ../../mod/editpost.php:132
+#: ../../mod/webpages.php:122 ../../mod/editpost.php:141
#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
#: ../../mod/editblock.php:151 ../../mod/photos.php:995
msgid "Preview"
@@ -1740,7 +1758,7 @@ msgstr "Condividi"
msgid "Page link title"
msgstr "Link del titolo"
-#: ../../include/conversation.php:1101 ../../mod/editpost.php:104
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:113
#: ../../mod/mail.php:219 ../../mod/mail.php:332 ../../mod/editlayout.php:107
#: ../../mod/editwebpage.php:145 ../../mod/editblock.php:121
msgid "Upload photo"
@@ -1750,7 +1768,7 @@ msgstr "Carica foto"
msgid "upload photo"
msgstr "carica foto"
-#: ../../include/conversation.php:1103 ../../mod/editpost.php:105
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:114
#: ../../mod/mail.php:220 ../../mod/mail.php:333 ../../mod/editlayout.php:108
#: ../../mod/editwebpage.php:146 ../../mod/editblock.php:122
msgid "Attach file"
@@ -1760,7 +1778,7 @@ msgstr "Allega file"
msgid "attach file"
msgstr "allega file"
-#: ../../include/conversation.php:1105 ../../mod/editpost.php:106
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:115
#: ../../mod/mail.php:221 ../../mod/mail.php:334 ../../mod/editlayout.php:109
#: ../../mod/editwebpage.php:147 ../../mod/editblock.php:123
msgid "Insert web link"
@@ -1786,7 +1804,7 @@ msgstr "Inserisci l'indirizzo di un audio"
msgid "audio link"
msgstr "link audio"
-#: ../../include/conversation.php:1111 ../../mod/editpost.php:110
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:119
#: ../../mod/editlayout.php:113 ../../mod/editwebpage.php:151
#: ../../mod/editblock.php:127
msgid "Set your location"
@@ -1796,7 +1814,7 @@ msgstr "La tua località"
msgid "set location"
msgstr "la tua località"
-#: ../../include/conversation.php:1113 ../../mod/editpost.php:111
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:120
#: ../../mod/editlayout.php:114 ../../mod/editwebpage.php:152
#: ../../mod/editblock.php:128
msgid "Clear browser location"
@@ -1806,19 +1824,19 @@ msgstr "Rimuovi la località data dal browser"
msgid "clear location"
msgstr "rimuovi la località"
-#: ../../include/conversation.php:1116 ../../mod/editpost.php:124
+#: ../../include/conversation.php:1116 ../../mod/editpost.php:133
#: ../../mod/editlayout.php:127 ../../mod/editwebpage.php:169
#: ../../mod/editblock.php:142
msgid "Set title"
msgstr "Scegli un titolo"
-#: ../../include/conversation.php:1119 ../../mod/editpost.php:126
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:135
#: ../../mod/editlayout.php:130 ../../mod/editwebpage.php:171
#: ../../mod/editblock.php:145
msgid "Categories (comma-separated list)"
msgstr "Categorie (separate da virgola)"
-#: ../../include/conversation.php:1121 ../../mod/editpost.php:113
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:122
#: ../../mod/editlayout.php:116 ../../mod/editwebpage.php:154
#: ../../mod/editblock.php:130
msgid "Permission settings"
@@ -1828,37 +1846,37 @@ msgstr "Impostazioni permessi"
msgid "permissions"
msgstr "permessi"
-#: ../../include/conversation.php:1130 ../../mod/editpost.php:121
+#: ../../include/conversation.php:1130 ../../mod/editpost.php:130
#: ../../mod/editlayout.php:124 ../../mod/editwebpage.php:164
#: ../../mod/editblock.php:139
msgid "Public post"
msgstr "Articolo pubblico"
-#: ../../include/conversation.php:1132 ../../mod/editpost.php:127
+#: ../../include/conversation.php:1132 ../../mod/editpost.php:136
#: ../../mod/editlayout.php:131 ../../mod/editwebpage.php:172
#: ../../mod/editblock.php:146
msgid "Example: bob@example.com, mary@example.com"
msgstr "Per esempio: mario@esempio.com, simona@esempio.com"
-#: ../../include/conversation.php:1145 ../../mod/editpost.php:138
+#: ../../include/conversation.php:1145 ../../mod/editpost.php:147
#: ../../mod/mail.php:226 ../../mod/mail.php:339 ../../mod/editlayout.php:141
#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:156
msgid "Set expiration date"
msgstr "Data di scadenza"
#: ../../include/conversation.php:1147 ../../include/ItemObject.php:560
-#: ../../mod/editpost.php:140 ../../mod/mail.php:228 ../../mod/mail.php:341
+#: ../../mod/editpost.php:149 ../../mod/mail.php:228 ../../mod/mail.php:341
msgid "Encrypt text"
msgstr "Crittografia del testo"
-#: ../../include/conversation.php:1149 ../../mod/editpost.php:142
+#: ../../include/conversation.php:1149 ../../mod/editpost.php:151
msgid "OK"
msgstr "OK"
-#: ../../include/conversation.php:1150 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/editpost.php:143
-#: ../../mod/settings.php:517 ../../mod/settings.php:543
-#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117
+#: ../../include/conversation.php:1150 ../../mod/settings.php:516
+#: ../../mod/settings.php:542 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:152 ../../mod/fbrowser.php:82
+#: ../../mod/fbrowser.php:117
msgid "Cancel"
msgstr "Annulla"
@@ -1951,238 +1969,238 @@ msgstr "Segnalibri salvati"
msgid "Manage Webpages"
msgstr "Gestisci le pagine web"
-#: ../../include/identity.php:29 ../../mod/item.php:1177
+#: ../../include/identity.php:30 ../../mod/item.php:1187
msgid "Unable to obtain identity information from database"
msgstr "Impossibile ottenere le informazioni di identificazione dal database"
-#: ../../include/identity.php:62
+#: ../../include/identity.php:63
msgid "Empty name"
msgstr "Nome vuoto"
-#: ../../include/identity.php:64
+#: ../../include/identity.php:65
msgid "Name too long"
msgstr "Nome troppo lungo"
-#: ../../include/identity.php:143
+#: ../../include/identity.php:147
msgid "No account identifier"
msgstr "Account senza identificativo"
-#: ../../include/identity.php:153
+#: ../../include/identity.php:157
msgid "Nickname is required."
msgstr "Il nome dell'account è obbligatorio."
-#: ../../include/identity.php:167
+#: ../../include/identity.php:171
msgid ""
"Nickname has unsupported characters or is already being used on this site."
msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."
-#: ../../include/identity.php:226
+#: ../../include/identity.php:230
msgid "Unable to retrieve created identity"
msgstr "Impossibile caricare l'identità creata"
-#: ../../include/identity.php:285
+#: ../../include/identity.php:289
msgid "Default Profile"
msgstr "Profilo predefinito"
-#: ../../include/identity.php:477
+#: ../../include/identity.php:481
msgid "Requested channel is not available."
msgstr "Il canale che cerchi non è disponibile."
-#: ../../include/identity.php:489
-msgid " Sorry, you don't have the permission to view this profile. "
-msgstr "Purtroppo non hai il permesso di vedere questo profilo."
-
-#: ../../include/identity.php:524 ../../mod/webpages.php:8
+#: ../../include/identity.php:528 ../../mod/webpages.php:8
#: ../../mod/connect.php:13 ../../mod/layouts.php:8
#: ../../mod/achievements.php:8 ../../mod/blocks.php:10
#: ../../mod/profile.php:16 ../../mod/filestorage.php:40
msgid "Requested profile is not available."
msgstr "Il profilo richiesto non è disponibile."
-#: ../../include/identity.php:642 ../../mod/profiles.php:603
+#: ../../include/identity.php:580
+msgid " Sorry, you don't have the permission to view this profile. "
+msgstr "Purtroppo non hai il permesso di vedere questo profilo."
+
+#: ../../include/identity.php:657 ../../mod/profiles.php:603
msgid "Change profile photo"
msgstr "Cambia la foto del profilo"
-#: ../../include/identity.php:648
+#: ../../include/identity.php:663
msgid "Profiles"
msgstr "Profili"
-#: ../../include/identity.php:648
+#: ../../include/identity.php:663
msgid "Manage/edit profiles"
msgstr "Gestisci/modifica i profili"
-#: ../../include/identity.php:649 ../../mod/profiles.php:604
+#: ../../include/identity.php:664 ../../mod/profiles.php:604
msgid "Create New Profile"
msgstr "Crea un nuovo profilo"
-#: ../../include/identity.php:652
+#: ../../include/identity.php:667
msgid "Edit Profile"
msgstr "Modifica il profilo"
-#: ../../include/identity.php:663 ../../mod/profiles.php:615
+#: ../../include/identity.php:678 ../../mod/profiles.php:615
msgid "Profile Image"
msgstr "Immagine del profilo"
-#: ../../include/identity.php:666 ../../mod/profiles.php:618
+#: ../../include/identity.php:681 ../../mod/profiles.php:618
msgid "visible to everybody"
msgstr "visibile a tutti"
-#: ../../include/identity.php:667 ../../mod/profiles.php:619
+#: ../../include/identity.php:682 ../../mod/profiles.php:619
msgid "Edit visibility"
msgstr "Cambia la visibilità"
-#: ../../include/identity.php:681 ../../include/identity.php:908
+#: ../../include/identity.php:696 ../../include/identity.php:923
#: ../../mod/directory.php:159
msgid "Gender:"
msgstr "Sesso:"
-#: ../../include/identity.php:682 ../../include/identity.php:928
+#: ../../include/identity.php:697 ../../include/identity.php:943
#: ../../mod/directory.php:161
msgid "Status:"
msgstr "Stato:"
-#: ../../include/identity.php:683 ../../include/identity.php:939
+#: ../../include/identity.php:698 ../../include/identity.php:954
#: ../../mod/directory.php:163
msgid "Homepage:"
msgstr "Home page:"
-#: ../../include/identity.php:684 ../../mod/dirprofile.php:157
+#: ../../include/identity.php:699 ../../mod/dirprofile.php:157
msgid "Online Now"
msgstr "Online adesso"
-#: ../../include/identity.php:752 ../../include/identity.php:832
+#: ../../include/identity.php:767 ../../include/identity.php:847
#: ../../mod/ping.php:262
msgid "g A l F d"
msgstr "g A l d F"
-#: ../../include/identity.php:753 ../../include/identity.php:833
+#: ../../include/identity.php:768 ../../include/identity.php:848
msgid "F d"
msgstr "d F"
-#: ../../include/identity.php:798 ../../include/identity.php:873
+#: ../../include/identity.php:813 ../../include/identity.php:888
#: ../../mod/ping.php:284
msgid "[today]"
msgstr "[oggi]"
-#: ../../include/identity.php:810
+#: ../../include/identity.php:825
msgid "Birthday Reminders"
msgstr "Promemoria compleanni"
-#: ../../include/identity.php:811
+#: ../../include/identity.php:826
msgid "Birthdays this week:"
msgstr "Compleanni questa settimana:"
-#: ../../include/identity.php:866
+#: ../../include/identity.php:881
msgid "[No description]"
msgstr "[Nessuna descrizione]"
-#: ../../include/identity.php:884
+#: ../../include/identity.php:899
msgid "Event Reminders"
msgstr "Promemoria"
-#: ../../include/identity.php:885
+#: ../../include/identity.php:900
msgid "Events this week:"
msgstr "Eventi di questa settimana:"
-#: ../../include/identity.php:898 ../../include/identity.php:982
+#: ../../include/identity.php:913 ../../include/identity.php:997
#: ../../mod/profperm.php:107
msgid "Profile"
msgstr "Profilo"
-#: ../../include/identity.php:906 ../../mod/settings.php:924
+#: ../../include/identity.php:921 ../../mod/settings.php:936
msgid "Full Name:"
msgstr "Nome completo:"
-#: ../../include/identity.php:913
+#: ../../include/identity.php:928
msgid "j F, Y"
msgstr "j F Y"
-#: ../../include/identity.php:914
+#: ../../include/identity.php:929
msgid "j F"
msgstr "j F"
-#: ../../include/identity.php:921
+#: ../../include/identity.php:936
msgid "Birthday:"
msgstr "Compleanno:"
-#: ../../include/identity.php:925
+#: ../../include/identity.php:940
msgid "Age:"
msgstr "Età:"
-#: ../../include/identity.php:934
+#: ../../include/identity.php:949
#, php-format
msgid "for %1$d %2$s"
msgstr "per %1$d %2$s"
-#: ../../include/identity.php:937 ../../mod/profiles.php:526
+#: ../../include/identity.php:952 ../../mod/profiles.php:526
msgid "Sexual Preference:"
msgstr "Preferenze sessuali:"
-#: ../../include/identity.php:941 ../../mod/profiles.php:528
+#: ../../include/identity.php:956 ../../mod/profiles.php:528
msgid "Hometown:"
msgstr "Città dove vivo:"
-#: ../../include/identity.php:943
+#: ../../include/identity.php:958
msgid "Tags:"
msgstr "Tag:"
-#: ../../include/identity.php:945 ../../mod/profiles.php:529
+#: ../../include/identity.php:960 ../../mod/profiles.php:529
msgid "Political Views:"
msgstr "Orientamento politico:"
-#: ../../include/identity.php:947
+#: ../../include/identity.php:962
msgid "Religion:"
msgstr "Religione:"
-#: ../../include/identity.php:949 ../../mod/directory.php:165
+#: ../../include/identity.php:964 ../../mod/directory.php:165
msgid "About:"
msgstr "Informazioni:"
-#: ../../include/identity.php:951
+#: ../../include/identity.php:966
msgid "Hobbies/Interests:"
msgstr "Interessi e hobby:"
-#: ../../include/identity.php:953 ../../mod/profiles.php:532
+#: ../../include/identity.php:968 ../../mod/profiles.php:532
msgid "Likes:"
msgstr "Mi piace:"
-#: ../../include/identity.php:955 ../../mod/profiles.php:533
+#: ../../include/identity.php:970 ../../mod/profiles.php:533
msgid "Dislikes:"
msgstr "Non mi piace:"
-#: ../../include/identity.php:958
+#: ../../include/identity.php:973
msgid "Contact information and Social Networks:"
msgstr "Contatti e social network:"
-#: ../../include/identity.php:960
+#: ../../include/identity.php:975
msgid "My other channels:"
msgstr "I miei altri canali:"
-#: ../../include/identity.php:962
+#: ../../include/identity.php:977
msgid "Musical interests:"
msgstr "Gusti musicali:"
-#: ../../include/identity.php:964
+#: ../../include/identity.php:979
msgid "Books, literature:"
msgstr "Libri, letteratura:"
-#: ../../include/identity.php:966
+#: ../../include/identity.php:981
msgid "Television:"
msgstr "Televisione:"
-#: ../../include/identity.php:968
+#: ../../include/identity.php:983
msgid "Film/dance/culture/entertainment:"
msgstr "Film, danza, cultura, intrattenimento:"
-#: ../../include/identity.php:970
+#: ../../include/identity.php:985
msgid "Love/Romance:"
msgstr "Amore:"
-#: ../../include/identity.php:972
+#: ../../include/identity.php:987
msgid "Work/employment:"
msgstr "Lavoro:"
-#: ../../include/identity.php:974
+#: ../../include/identity.php:989
msgid "School/education:"
msgstr "Scuola:"
@@ -2191,11 +2209,12 @@ msgid "Private Message"
msgstr "Messaggio privato"
#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
-#: ../../mod/thing.php:235 ../../mod/menu.php:59 ../../mod/webpages.php:118
-#: ../../mod/editpost.php:103 ../../mod/layouts.php:102
-#: ../../mod/settings.php:578 ../../mod/editlayout.php:106
-#: ../../mod/blocks.php:93 ../../mod/editwebpage.php:144
-#: ../../mod/editblock.php:120 ../../mod/filestorage.php:170
+#: ../../include/menu.php:42 ../../mod/thing.php:235
+#: ../../mod/settings.php:577 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/editpost.php:112 ../../mod/layouts.php:97
+#: ../../mod/editlayout.php:106 ../../mod/blocks.php:93
+#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120
+#: ../../mod/filestorage.php:170
msgid "Edit"
msgstr "Modifica"
@@ -2286,21 +2305,21 @@ msgstr "Questo sei tu"
#: ../../include/ItemObject.php:548 ../../mod/events.php:469
#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156
-#: ../../mod/chat.php:162 ../../mod/chat.php:192 ../../mod/connect.php:92
-#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:738
-#: ../../mod/admin.php:878 ../../mod/admin.php:1077 ../../mod/admin.php:1164
+#: ../../mod/settings.php:515 ../../mod/settings.php:627
+#: ../../mod/settings.php:655 ../../mod/settings.php:679
+#: ../../mod/settings.php:751 ../../mod/settings.php:928
+#: ../../mod/chat.php:174 ../../mod/chat.php:206 ../../mod/connect.php:92
+#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:739
+#: ../../mod/admin.php:879 ../../mod/admin.php:1078 ../../mod/admin.php:1165
#: ../../mod/connedit.php:437 ../../mod/profiles.php:506
#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
-#: ../../mod/setup.php:347 ../../mod/settings.php:516
-#: ../../mod/settings.php:628 ../../mod/settings.php:656
-#: ../../mod/settings.php:680 ../../mod/settings.php:752
-#: ../../mod/settings.php:916 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
#: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
#: ../../mod/filestorage.php:131 ../../mod/photos.php:566
#: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994
#: ../../mod/photos.php:1081 ../../mod/mood.php:142
-#: ../../view/theme/redbasic/php/config.php:95
-#: ../../view/theme/apw/php/config.php:231
+#: ../../view/theme/redbasic/php/config.php:97
+#: ../../view/theme/apw/php/config.php:247
#: ../../view/theme/blogga/view/theme/blog/config.php:67
#: ../../view/theme/blogga/php/config.php:67
msgid "Submit"
@@ -2635,15 +2654,15 @@ msgstr "ama"
msgid "dislikes"
msgstr "non ama"
-#: ../../include/auth.php:76
+#: ../../include/auth.php:79
msgid "Logged out."
msgstr "Uscita effettuata."
-#: ../../include/auth.php:188
+#: ../../include/auth.php:197
msgid "Failed authentication"
msgstr "Autenticazione fallita"
-#: ../../include/auth.php:203
+#: ../../include/auth.php:212 ../../mod/openid.php:186
msgid "Login failed."
msgstr "Accesso fallito."
@@ -2756,12 +2775,12 @@ msgstr "%s "
#: ../../include/enotify.php:84
#, php-format
msgid "[Red:Notify] New mail received at %s"
-msgstr "[Red:Notifica] Nuovo messaggio ricevuto alle %s"
+msgstr "[Red:Notifica] Nuovo messaggio ricevuto su %s"
#: ../../include/enotify.php:86
#, php-format
msgid "%1$s, %2$s sent you a new private message at %3$s."
-msgstr "%1$s, %2$s ti ha mandato un messaggio privato alle %3$s."
+msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s."
#: ../../include/enotify.php:87
#, php-format
@@ -2817,7 +2836,7 @@ msgstr "[Red:Notifica] %s ha scritto sulla tua bacheca"
#: ../../include/enotify.php:182
#, php-format
msgid "%1$s, %2$s posted to your profile wall at %3$s"
-msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo alle %3$s"
+msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s"
#: ../../include/enotify.php:184
#, php-format
@@ -2832,7 +2851,7 @@ msgstr "[Red:Notifica] %s ti ha taggato"
#: ../../include/enotify.php:209
#, php-format
msgid "%1$s, %2$s tagged you at %3$s"
-msgstr "%1$s, %2$s ti ha taggato alle %3$s"
+msgstr "%1$s, %2$s ti ha taggato su %3$s"
#: ../../include/enotify.php:210
#, php-format
@@ -2847,7 +2866,7 @@ msgstr "[Red:Notifica] %1$s ti ha mandato un poke"
#: ../../include/enotify.php:224
#, php-format
msgid "%1$s, %2$s poked you at %3$s"
-msgstr "%1$s, %2$s ti ha mandato un poke alle %3$s"
+msgstr "%1$s, %2$s ti ha mandato un poke su %3$s"
#: ../../include/enotify.php:225
#, php-format
@@ -2862,7 +2881,7 @@ msgstr "[Red:Notifica] %s ha taggato il tuo articolo"
#: ../../include/enotify.php:242
#, php-format
msgid "%1$s, %2$s tagged your post at %3$s"
-msgstr "%1$s, %2$s ha taggato il tuo articolo alle %3$s"
+msgstr "%1$s, %2$s ha taggato il tuo articolo su %3$s"
#: ../../include/enotify.php:243
#, php-format
@@ -2876,7 +2895,7 @@ msgstr "[Red:Notifica] Hai una richiesta di amicizia"
#: ../../include/enotify.php:256
#, php-format
msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
-msgstr "%1$s, hai ricevuto una richiesta di contatto da '%2$s' alle %3$s"
+msgstr "%1$s, hai ricevuto una richiesta di contatto da '%2$s' su %3$s"
#: ../../include/enotify.php:257
#, php-format
@@ -2900,7 +2919,7 @@ msgstr "[Red:Notifica] Ti è stato suggerito un amico"
#: ../../include/enotify.php:271
#, php-format
msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
-msgstr "%1$s, ti è stato suggerito un amico da '%2$s' alle %3$s"
+msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s"
#: ../../include/enotify.php:272
#, php-format
@@ -2944,7 +2963,7 @@ msgstr "Impossibile caricare la foto."
msgid "Upload New Photos"
msgstr "Carica nuove foto"
-#: ../../include/reddav.php:1061
+#: ../../include/reddav.php:1063
msgid "Edit File properties"
msgstr "Modifica le proprietà dei file"
@@ -3011,41 +3030,37 @@ msgstr "Questa operazione esce dai termini del tuo abbonamento."
msgid "This action is not available under your subscription plan."
msgstr "Questa operazione non è prevista dal tuo abbonamento."
-#: ../../include/follow.php:21
+#: ../../include/follow.php:23
msgid "Channel is blocked on this site."
msgstr "Il canale è bloccato per questo sito."
-#: ../../include/follow.php:26
+#: ../../include/follow.php:28
msgid "Channel location missing."
msgstr "Manca l'indirizzo del canale."
-#: ../../include/follow.php:43
-msgid "Channel discovery failed. Website may be down or misconfigured."
-msgstr "La ricerca del canale è fallita. Il sito potrebbe avere problemi o una configurazione sbagliata."
-
-#: ../../include/follow.php:51
-msgid "Response from remote channel was not understood."
-msgstr "La risposta dal canale non è comprensibile."
-
-#: ../../include/follow.php:58
+#: ../../include/follow.php:54
msgid "Response from remote channel was incomplete."
msgstr "La risposta dal canale non è completa."
-#: ../../include/follow.php:129
+#: ../../include/follow.php:126
+msgid "Channel discovery failed."
+msgstr "La ricerca del canale non ha avuto successo."
+
+#: ../../include/follow.php:143
msgid "local account not found."
msgstr "l'account locale non è stato trovato."
-#: ../../include/follow.php:138
+#: ../../include/follow.php:152
msgid "Cannot connect to yourself."
msgstr "Non puoi connetterti a te stesso."
-#: ../../include/security.php:280
+#: ../../include/security.php:294
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 "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."
-#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:64
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:66
#: ../../view/theme/apw/php/config.php:176
msgid "Default"
msgstr "Predefinito"
@@ -3143,36 +3158,40 @@ msgid ""
"Extremely advanced. Leave this alone unless you know what you are doing"
msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"
-#: ../../include/items.php:231 ../../mod/like.php:55 ../../mod/profperm.php:23
+#: ../../include/items.php:240 ../../mod/like.php:55 ../../mod/profperm.php:23
#: ../../mod/group.php:68 ../../index.php:350
msgid "Permission denied"
msgstr "Permesso negato"
-#: ../../include/items.php:3453 ../../mod/thing.php:78 ../../mod/admin.php:151
-#: ../../mod/admin.php:782 ../../mod/admin.php:985 ../../mod/viewsrc.php:18
+#: ../../include/items.php:756
+msgid "(Unknown)"
+msgstr "(Sconosciuto)"
+
+#: ../../include/items.php:3513 ../../mod/thing.php:78 ../../mod/admin.php:151
+#: ../../mod/admin.php:783 ../../mod/admin.php:986 ../../mod/viewsrc.php:18
#: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
msgid "Item not found."
msgstr "Elemento non trovato."
-#: ../../include/items.php:3809 ../../mod/group.php:38 ../../mod/group.php:140
+#: ../../include/items.php:3849 ../../mod/group.php:38 ../../mod/group.php:140
msgid "Collection not found."
msgstr "Insieme non trovato."
-#: ../../include/items.php:3824
+#: ../../include/items.php:3864
msgid "Collection is empty."
msgstr "L'insieme di canali è vuoto."
-#: ../../include/items.php:3831
+#: ../../include/items.php:3871
#, php-format
msgid "Collection: %s"
msgstr "Insieme: %s"
-#: ../../include/items.php:3842
+#: ../../include/items.php:3882
#, php-format
msgid "Connection: %s"
msgstr "Contatto: %s"
-#: ../../include/items.php:3845
+#: ../../include/items.php:3885
msgid "Connection not found."
msgstr "Contatto non trovato."
@@ -3408,35 +3427,446 @@ msgid ""
"http://getzot.com"
msgstr "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com"
-#: ../../mod/item.php:145
-msgid "Unable to locate original post."
-msgstr "Impossibile trovare il messaggio originale."
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "Il nome è obbligatorio"
-#: ../../mod/item.php:346
-msgid "Empty post discarded."
-msgstr "L'articolo vuoto è stato ignorato."
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "Chiave e Segreto sono richiesti"
-#: ../../mod/item.php:388
-msgid "Executable content type not permitted to this channel."
-msgstr "I contenuti eseguibili non sono permessi su questo canale."
+#: ../../mod/settings.php:79 ../../mod/settings.php:541
+msgid "Update"
+msgstr "Aggiorna"
-#: ../../mod/item.php:835
-msgid "System error. Post not saved."
-msgstr "Errore di sistema. Articolo non salvato."
+#: ../../mod/settings.php:195
+msgid "Passwords do not match. Password unchanged."
+msgstr "Le password non corrispondono. Password non cambiata."
-#: ../../mod/item.php:1102 ../../mod/wall_upload.php:41
-msgid "Wall Photos"
-msgstr "Foto della bacheca"
+#: ../../mod/settings.php:199
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Le password non possono essere vuote. Password non cambiata."
-#: ../../mod/item.php:1182
-#, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
-msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale."
+#: ../../mod/settings.php:212
+msgid "Password changed."
+msgstr "Password cambiata."
-#: ../../mod/item.php:1188
-#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web."
+#: ../../mod/settings.php:214
+msgid "Password update failed. Please try again."
+msgstr "Aggiornamento password fallito. Prova ancora."
+
+#: ../../mod/settings.php:228
+msgid "Not valid email."
+msgstr "Email non valida."
+
+#: ../../mod/settings.php:231
+msgid "Protected email address. Cannot change to that email."
+msgstr "È un indirizzo email riservato. Non puoi sceglierlo."
+
+#: ../../mod/settings.php:240
+msgid "System failure storing new email. Please try again."
+msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."
+
+#: ../../mod/settings.php:443
+msgid "Settings updated."
+msgstr "Impostazioni aggiornate."
+
+#: ../../mod/settings.php:514 ../../mod/settings.php:540
+#: ../../mod/settings.php:576
+msgid "Add application"
+msgstr "Aggiungi una app"
+
+#: ../../mod/settings.php:517 ../../mod/settings.php:543
+msgid "Name"
+msgstr "Nome"
+
+#: ../../mod/settings.php:517
+msgid "Name of application"
+msgstr "Nome dell'applicazione"
+
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Consumer Key"
+msgstr "Consumer Key"
+
+#: ../../mod/settings.php:518 ../../mod/settings.php:519
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"
+
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
+
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
+msgid "Redirect"
+msgstr "Redirect"
+
+#: ../../mod/settings.php:520
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione."
+
+#: ../../mod/settings.php:521 ../../mod/settings.php:547
+msgid "Icon url"
+msgstr "Url icona"
+
+#: ../../mod/settings.php:521
+msgid "Optional"
+msgstr "Opzionale"
+
+#: ../../mod/settings.php:532
+msgid "You can't edit this application."
+msgstr "Non puoi modificare questa applicazione."
+
+#: ../../mod/settings.php:575
+msgid "Connected Apps"
+msgstr "App connesse"
+
+#: ../../mod/settings.php:579
+msgid "Client key starts with"
+msgstr "La client key inizia con"
+
+#: ../../mod/settings.php:580
+msgid "No name"
+msgstr "Nessun nome"
+
+#: ../../mod/settings.php:581
+msgid "Remove authorization"
+msgstr "Revoca l'autorizzazione"
+
+#: ../../mod/settings.php:592
+msgid "No feature settings configured"
+msgstr "Non ci sono funzionalità aggiuntive personalizzabili"
+
+#: ../../mod/settings.php:600
+msgid "Feature Settings"
+msgstr "Impostazioni aggiuntive"
+
+#: ../../mod/settings.php:623
+msgid "Account Settings"
+msgstr "Impostazioni account"
+
+#: ../../mod/settings.php:624
+msgid "Password Settings"
+msgstr "Impostazioni password"
+
+#: ../../mod/settings.php:625
+msgid "New Password:"
+msgstr "Nuova password:"
+
+#: ../../mod/settings.php:626
+msgid "Confirm:"
+msgstr "Conferma:"
+
+#: ../../mod/settings.php:626
+msgid "Leave password fields blank unless changing"
+msgstr "Lascia questi campi in bianco per non cambiare la password"
+
+#: ../../mod/settings.php:628 ../../mod/settings.php:937
+msgid "Email Address:"
+msgstr "Indirizzo email:"
+
+#: ../../mod/settings.php:629
+msgid "Remove Account"
+msgstr "Elimina l'account"
+
+#: ../../mod/settings.php:630
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Attenzione: questa azione è permanente e non potrà più essere annullata."
+
+#: ../../mod/settings.php:646
+msgid "Off"
+msgstr "Off"
+
+#: ../../mod/settings.php:646
+msgid "On"
+msgstr "On"
+
+#: ../../mod/settings.php:653
+msgid "Additional Features"
+msgstr "Funzionalità aggiuntive"
+
+#: ../../mod/settings.php:678
+msgid "Connector Settings"
+msgstr "Impostazioni del connettore"
+
+#: ../../mod/settings.php:708 ../../mod/admin.php:379
+msgid "No special theme for mobile devices"
+msgstr "Nessun tema per dispositivi mobili"
+
+#: ../../mod/settings.php:749
+msgid "Display Settings"
+msgstr "Impostazioni grafiche"
+
+#: ../../mod/settings.php:755
+msgid "Display Theme:"
+msgstr "Tema per monitor:"
+
+#: ../../mod/settings.php:756
+msgid "Mobile Theme:"
+msgstr "Tema per dispositivi mobili:"
+
+#: ../../mod/settings.php:757
+msgid "Update browser every xx seconds"
+msgstr "Aggiorna il browser ogni x secondi"
+
+#: ../../mod/settings.php:757
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimo 10 secondi, nessun limite massimo"
+
+#: ../../mod/settings.php:758
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Massimo numero di conversazioni da mostrare ogni volta:"
+
+#: ../../mod/settings.php:758
+msgid "Maximum of 100 items"
+msgstr "Massimo 100"
+
+#: ../../mod/settings.php:759
+msgid "Don't show emoticons"
+msgstr "Non mostrare le emoticons"
+
+#: ../../mod/settings.php:760
+msgid "Do not view remote profiles in frames"
+msgstr "Non mostrare i profili degli altri utenti dentro riquadri"
+
+#: ../../mod/settings.php:760
+msgid "By default open in a sub-window of your own site"
+msgstr "Se non selezionato, i profili degli altri utenti sono mostrati dentro un riquadro nella pagina"
+
+#: ../../mod/settings.php:795
+msgid "Nobody except yourself"
+msgstr "Nessuno tranne te"
+
+#: ../../mod/settings.php:796
+msgid "Only those you specifically allow"
+msgstr "Solo chi riceve il mio permesso"
+
+#: ../../mod/settings.php:797
+msgid "Anybody in your address book"
+msgstr "Chiunque tra i miei contatti"
+
+#: ../../mod/settings.php:798
+msgid "Anybody on this website"
+msgstr "Chiunque su questo sito"
+
+#: ../../mod/settings.php:799
+msgid "Anybody in this network"
+msgstr "Chiunque su Red"
+
+#: ../../mod/settings.php:800
+msgid "Anybody authenticated"
+msgstr "Chiunque sia autenticato"
+
+#: ../../mod/settings.php:801
+msgid "Anybody on the internet"
+msgstr "Chiunque su internet"
+
+#: ../../mod/settings.php:878
+msgid "Publish your default profile in the network directory"
+msgstr "Pubblica il mio profilo predefinito sull'elenco pubblico dei canali"
+
+#: ../../mod/settings.php:878 ../../mod/settings.php:883
+#: ../../mod/settings.php:954 ../../mod/api.php:106 ../../mod/profiles.php:484
+msgid "No"
+msgstr "No"
+
+#: ../../mod/settings.php:878 ../../mod/settings.php:883
+#: ../../mod/settings.php:954 ../../mod/api.php:105 ../../mod/profiles.php:483
+msgid "Yes"
+msgstr "Si"
+
+#: ../../mod/settings.php:883
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Vuoi essere suggerito come potenziale amico ai nuovi membri?"
+
+#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "o"
+
+#: ../../mod/settings.php:892
+msgid "Your channel address is"
+msgstr "L'indirizzo del tuo canale è"
+
+#: ../../mod/settings.php:926
+msgid "Channel Settings"
+msgstr "Impostazioni del canale"
+
+#: ../../mod/settings.php:935
+msgid "Basic Settings"
+msgstr "Impostazioni di base"
+
+#: ../../mod/settings.php:938
+msgid "Your Timezone:"
+msgstr "Il tuo fuso orario:"
+
+#: ../../mod/settings.php:939
+msgid "Default Post Location:"
+msgstr "Località predefinita:"
+
+#: ../../mod/settings.php:940
+msgid "Use Browser Location:"
+msgstr "Usa la località rilevata dal browser:"
+
+#: ../../mod/settings.php:942
+msgid "Adult Content"
+msgstr "Contenuto per adulti"
+
+#: ../../mod/settings.php:942
+msgid ""
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Questo canale pubblica frequentemente contenuto per adulti. (Il contenuto per adulti deve essere marcato con il tag #NSFW - Not Safe For Work)"
+
+#: ../../mod/settings.php:944
+msgid "Security and Privacy Settings"
+msgstr "Impostazioni di sicurezza e privacy"
+
+#: ../../mod/settings.php:946
+msgid "Hide my online presence"
+msgstr "Non mostrare la mia presenza online"
+
+#: ../../mod/settings.php:946
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Non mostra sul tuo profilo che sei online"
+
+#: ../../mod/settings.php:948
+msgid "Simple Privacy Settings:"
+msgstr "Impostazioni di privacy semplificate"
+
+#: ../../mod/settings.php:949
+msgid ""
+"Very Public - extremely permissive (should be used with caution)"
+msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)"
+
+#: ../../mod/settings.php:950
+msgid ""
+"Typical - default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)"
+msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"
+
+#: ../../mod/settings.php:951
+msgid "Private - default private, never open or public"
+msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico"
+
+#: ../../mod/settings.php:952
+msgid "Blocked - default blocked to/from everybody"
+msgstr "Bloccato - bloccato in ricezione e invio"
+
+#: ../../mod/settings.php:954
+msgid "Allow others to tag your posts"
+msgstr "Permetti ad altri di taggare i tuoi articoli"
+
+#: ../../mod/settings.php:954
+msgid ""
+"Often used by the community to retro-actively flag inappropriate content"
+msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"
+
+#: ../../mod/settings.php:956
+msgid "Advanced Privacy Settings"
+msgstr "Impostazioni di privacy avanzate"
+
+#: ../../mod/settings.php:958
+msgid "Maximum Friend Requests/Day:"
+msgstr "Numero massimo giornaliero di richieste di amicizia:"
+
+#: ../../mod/settings.php:958
+msgid "May reduce spam activity"
+msgstr "Serve e ridurre lo spam"
+
+#: ../../mod/settings.php:959
+msgid "Default Post Permissions"
+msgstr "Permessi predefiniti per gli articoli"
+
+#: ../../mod/settings.php:960 ../../mod/mitem.php:134 ../../mod/mitem.php:177
+msgid "(click to open/close)"
+msgstr "(clicca per aprire/chiudere)"
+
+#: ../../mod/settings.php:971
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"
+
+#: ../../mod/settings.php:971
+msgid "Useful to reduce spamming"
+msgstr "Serve e ridurre lo spam"
+
+#: ../../mod/settings.php:974
+msgid "Notification Settings"
+msgstr "Impostazioni di notifica"
+
+#: ../../mod/settings.php:975
+msgid "By default post a status message when:"
+msgstr "Pubblica un messaggio di stato quando:"
+
+#: ../../mod/settings.php:976
+msgid "accepting a friend request"
+msgstr "accetto una nuova amicizia"
+
+#: ../../mod/settings.php:977
+msgid "joining a forum/community"
+msgstr "entro a far parte di un forum"
+
+#: ../../mod/settings.php:978
+msgid "making an interesting profile change"
+msgstr "faccio un cambiamento interessante al mio profilo"
+
+#: ../../mod/settings.php:979
+msgid "Send a notification email when:"
+msgstr "Invia una email di notifica quando:"
+
+#: ../../mod/settings.php:980
+msgid "You receive an introduction"
+msgstr "Ricevi una richiesta di amicizia"
+
+#: ../../mod/settings.php:981
+msgid "Your introductions are confirmed"
+msgstr "Le tue richieste di amicizia sono state accettate"
+
+#: ../../mod/settings.php:982
+msgid "Someone writes on your profile wall"
+msgstr "Qualcuno scrive sulla tua bacheca"
+
+#: ../../mod/settings.php:983
+msgid "Someone writes a followup comment"
+msgstr "Qualcuno scrive un commento a un tuo articolo"
+
+#: ../../mod/settings.php:984
+msgid "You receive a private message"
+msgstr "Ricevi un messaggio privato"
+
+#: ../../mod/settings.php:985
+msgid "You receive a friend suggestion"
+msgstr "Ti viene suggerito un amico"
+
+#: ../../mod/settings.php:986
+msgid "You are tagged in a post"
+msgstr "Sei taggato in un articolo"
+
+#: ../../mod/settings.php:987
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Ricevi un poke in un articolo"
+
+#: ../../mod/settings.php:990
+msgid "Advanced Account/Page Type Settings"
+msgstr "Impostazioni avanzate"
+
+#: ../../mod/settings.php:991
+msgid "Change the behaviour of this account for special situations"
+msgstr "Cambia il funzionamento di questo account in situazioni particolari"
+
+#: ../../mod/settings.php:994
+msgid ""
+"Please enable expert mode (in Settings > "
+"Additional features) to adjust!"
+msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità aggiuntive)"
+
+#: ../../mod/settings.php:995
+msgid "Miscellaneous Settings"
+msgstr "Impostazioni varie"
+
+#: ../../mod/settings.php:997
+msgid "Personal menu to display in your channel pages"
+msgstr "Menu personale da mostrare sulle pagine del tuo canale"
#: ../../mod/menu.php:21
msgid "Menu updated."
@@ -3539,7 +3969,7 @@ msgstr "Modifica"
msgid "Not found."
msgstr "Non trovato."
-#: ../../mod/webpages.php:121 ../../mod/layouts.php:105
+#: ../../mod/webpages.php:121 ../../mod/layouts.php:100
#: ../../mod/blocks.php:96
msgid "View"
msgstr "Guarda"
@@ -3562,16 +3992,6 @@ msgid ""
" and/or create new posts for you?"
msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"
-#: ../../mod/api.php:105 ../../mod/profiles.php:483 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "Yes"
-msgstr "Si"
-
-#: ../../mod/api.php:106 ../../mod/profiles.php:484 ../../mod/settings.php:878
-#: ../../mod/settings.php:883
-msgid "No"
-msgstr "No"
-
#: ../../mod/apps.php:8
msgid "No installed applications."
msgstr "Nessuna app installata."
@@ -3586,7 +4006,7 @@ msgstr "Modifica articolo"
#: ../../mod/cloud.php:112
msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
-msgstr "Red Matrix - Ospiti: Nome utente: {il tuo indirizzo email}, Password: +++"
+msgstr "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password."
#: ../../mod/bookmarks.php:38
msgid "Bookmark added"
@@ -3600,6 +4020,36 @@ msgstr "I miei segnalibri"
msgid "My Connections Bookmarks"
msgstr "I segnalibri dei miei contatti"
+#: ../../mod/item.php:145
+msgid "Unable to locate original post."
+msgstr "Impossibile trovare il messaggio originale."
+
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "L'articolo vuoto è stato ignorato."
+
+#: ../../mod/item.php:388
+msgid "Executable content type not permitted to this channel."
+msgstr "I contenuti eseguibili non sono permessi su questo canale."
+
+#: ../../mod/item.php:845
+msgid "System error. Post not saved."
+msgstr "Errore di sistema. Articolo non salvato."
+
+#: ../../mod/item.php:1112 ../../mod/wall_upload.php:34
+msgid "Wall Photos"
+msgstr "Foto della bacheca"
+
+#: ../../mod/item.php:1192
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale."
+
+#: ../../mod/item.php:1198
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web."
+
#: ../../mod/subthread.php:105
#, php-format
msgid "%1$s is following %2$s's %3$s"
@@ -3612,7 +4062,7 @@ msgid "[Embedded content - reload page to view]"
msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
-#: ../../mod/wall_upload.php:35
+#: ../../mod/wall_upload.php:28
msgid "Channel not found."
msgstr "Canale non trovato."
@@ -3625,31 +4075,39 @@ msgstr "attiva/disattiva schermo intero"
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s ha taggato %3$s di %2$s con %4$s"
-#: ../../mod/chat.php:18 ../../mod/channel.php:25
+#: ../../mod/chat.php:19 ../../mod/channel.php:25
msgid "You must be logged in to see this page."
msgstr "Devi aver effettuato l'accesso per vedere questa pagina."
-#: ../../mod/chat.php:163
+#: ../../mod/chat.php:165
+msgid "Room not found"
+msgstr "Chat non trovata"
+
+#: ../../mod/chat.php:175
msgid "Leave Room"
msgstr "Lascia la chat"
-#: ../../mod/chat.php:164
+#: ../../mod/chat.php:176
msgid "I am away right now"
msgstr "Non sono presente al momento"
-#: ../../mod/chat.php:165
+#: ../../mod/chat.php:177
msgid "I am online"
msgstr "Sono online"
-#: ../../mod/chat.php:189 ../../mod/chat.php:209
+#: ../../mod/chat.php:179
+msgid "Bookmark this room"
+msgstr "Aggiungi chat ai segnalibri"
+
+#: ../../mod/chat.php:203 ../../mod/chat.php:223
msgid "New Chatroom"
msgstr "Nuova chat"
-#: ../../mod/chat.php:190
+#: ../../mod/chat.php:204
msgid "Chatroom Name"
msgstr "Nome della chat"
-#: ../../mod/chat.php:205
+#: ../../mod/chat.php:219
#, php-format
msgid "%1$s's Chatrooms"
msgstr "Le chat di %1$s"
@@ -3768,14 +4226,6 @@ msgstr "Aggiungi"
msgid "No entries."
msgstr "Nessun risultato."
-#: ../../mod/chatsvc.php:102
-msgid "Away"
-msgstr "Assente"
-
-#: ../../mod/chatsvc.php:106
-msgid "Online"
-msgstr "Online"
-
#: ../../mod/attach.php:9
msgid "Item not available."
msgstr "Elemento non disponibile."
@@ -3840,10 +4290,6 @@ msgstr "Nuovo elemento del menù"
msgid "Menu Item Permissions"
msgstr "Permessi del menu"
-#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:947
-msgid "(click to open/close)"
-msgstr "(clicca per aprire/chiudere)"
-
#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
msgid "Link text"
msgstr "Testo del link"
@@ -3960,15 +4406,15 @@ msgstr "Le impostazioni del tema sono state aggiornate."
msgid "Site"
msgstr "Sito"
-#: ../../mod/admin.php:89 ../../mod/admin.php:737 ../../mod/admin.php:749
+#: ../../mod/admin.php:89 ../../mod/admin.php:738 ../../mod/admin.php:750
msgid "Users"
msgstr "Utenti"
-#: ../../mod/admin.php:90 ../../mod/admin.php:835 ../../mod/admin.php:877
+#: ../../mod/admin.php:90 ../../mod/admin.php:836 ../../mod/admin.php:878
msgid "Plugins"
msgstr "Plugin"
-#: ../../mod/admin.php:91 ../../mod/admin.php:1040 ../../mod/admin.php:1076
+#: ../../mod/admin.php:91 ../../mod/admin.php:1041 ../../mod/admin.php:1077
msgid "Themes"
msgstr "Temi"
@@ -3980,7 +4426,7 @@ msgstr "Server"
msgid "DB updates"
msgstr "Aggiornamenti al DB"
-#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1163
+#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1164
msgid "Logs"
msgstr "Log"
@@ -3997,8 +4443,8 @@ msgid "Message queues"
msgstr "Messaggi in attesa di recapito"
#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
-#: ../../mod/admin.php:736 ../../mod/admin.php:834 ../../mod/admin.php:876
-#: ../../mod/admin.php:1039 ../../mod/admin.php:1075 ../../mod/admin.php:1162
+#: ../../mod/admin.php:737 ../../mod/admin.php:835 ../../mod/admin.php:877
+#: ../../mod/admin.php:1040 ../../mod/admin.php:1076 ../../mod/admin.php:1163
msgid "Administration"
msgstr "Amministrazione"
@@ -4026,10 +4472,6 @@ msgstr "Plugin attivi"
msgid "Site settings updated."
msgstr "Impostazioni del sito aggiornate."
-#: ../../mod/admin.php:379 ../../mod/settings.php:709
-msgid "No special theme for mobile devices"
-msgstr "Nessun tema per dispositivi mobili"
-
#: ../../mod/admin.php:381
msgid "No special theme for accessibility"
msgstr "Nessun tema speciale per l'accessibilità"
@@ -4272,7 +4714,7 @@ msgstr "Carico di sistema massimo perché i processi di recapito e polling siano
msgid "No server found"
msgstr "Server non trovato"
-#: ../../mod/admin.php:527 ../../mod/admin.php:750
+#: ../../mod/admin.php:527 ../../mod/admin.php:751
msgid "ID"
msgstr "ID"
@@ -4361,136 +4803,136 @@ msgstr "Utente '%s' sbloccato"
msgid "User '%s' blocked"
msgstr "Utente '%s' bloccato"
-#: ../../mod/admin.php:739
+#: ../../mod/admin.php:740
msgid "select all"
msgstr "seleziona tutti"
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:741
msgid "User registrations waiting for confirm"
msgstr "Richieste di registrazione in attesa di conferma"
-#: ../../mod/admin.php:741
+#: ../../mod/admin.php:742
msgid "Request date"
msgstr "Data richiesta"
-#: ../../mod/admin.php:742
+#: ../../mod/admin.php:743
msgid "No registrations."
msgstr "Nessuna registrazione."
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:744
msgid "Approve"
msgstr "Approva"
-#: ../../mod/admin.php:744
+#: ../../mod/admin.php:745
msgid "Deny"
msgstr "Nega"
-#: ../../mod/admin.php:746 ../../mod/connedit.php:333
+#: ../../mod/admin.php:747 ../../mod/connedit.php:333
#: ../../mod/connedit.php:475
msgid "Block"
msgstr "Blocca"
-#: ../../mod/admin.php:747 ../../mod/connedit.php:333
+#: ../../mod/admin.php:748 ../../mod/connedit.php:333
#: ../../mod/connedit.php:475
msgid "Unblock"
msgstr "Sblocca"
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
msgid "Register date"
msgstr "Data registrazione"
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
msgid "Last login"
msgstr "Ultimo accesso"
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
msgid "Expires"
msgstr "Scadenza"
-#: ../../mod/admin.php:750
+#: ../../mod/admin.php:751
msgid "Service Class"
msgstr "Service Class"
-#: ../../mod/admin.php:752
+#: ../../mod/admin.php:753
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Gli utenti selezionati saranno eliminati!\\n\\nTutto quello che gli utenti hanno pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"
-#: ../../mod/admin.php:753
+#: ../../mod/admin.php:754
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 "L'utente {0} sarà eliminato!\\n\\nTutto quello che ha pubblicato su questo sito sarà permanentemente eliminato!\\n\\nConfermi?"
-#: ../../mod/admin.php:794
+#: ../../mod/admin.php:795
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s non attivo."
-#: ../../mod/admin.php:798
+#: ../../mod/admin.php:799
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s attivo."
-#: ../../mod/admin.php:808 ../../mod/admin.php:1010
+#: ../../mod/admin.php:809 ../../mod/admin.php:1011
msgid "Disable"
msgstr "Disattiva"
-#: ../../mod/admin.php:810 ../../mod/admin.php:1012
+#: ../../mod/admin.php:811 ../../mod/admin.php:1013
msgid "Enable"
msgstr "Attiva"
-#: ../../mod/admin.php:836 ../../mod/admin.php:1041
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
msgid "Toggle"
msgstr "Attiva/disattiva"
-#: ../../mod/admin.php:844 ../../mod/admin.php:1051
+#: ../../mod/admin.php:845 ../../mod/admin.php:1052
msgid "Author: "
msgstr "Autore:"
-#: ../../mod/admin.php:845 ../../mod/admin.php:1052
+#: ../../mod/admin.php:846 ../../mod/admin.php:1053
msgid "Maintainer: "
msgstr "Gestore:"
-#: ../../mod/admin.php:974
+#: ../../mod/admin.php:975
msgid "No themes found."
msgstr "Nessun tema trovato."
-#: ../../mod/admin.php:1033
+#: ../../mod/admin.php:1034
msgid "Screenshot"
msgstr "Istantanea dello schermo"
-#: ../../mod/admin.php:1081
+#: ../../mod/admin.php:1082
msgid "[Experimental]"
msgstr "[Sperimentale]"
-#: ../../mod/admin.php:1082
+#: ../../mod/admin.php:1083
msgid "[Unsupported]"
msgstr "[Non supportato]"
-#: ../../mod/admin.php:1109
+#: ../../mod/admin.php:1110
msgid "Log settings updated."
msgstr "Impostazioni di log aggiornate."
-#: ../../mod/admin.php:1165
+#: ../../mod/admin.php:1166
msgid "Clear"
msgstr "Pulisci"
-#: ../../mod/admin.php:1171
+#: ../../mod/admin.php:1172
msgid "Debugging"
msgstr "Debugging"
-#: ../../mod/admin.php:1172
+#: ../../mod/admin.php:1173
msgid "Log file"
msgstr "File di log"
-#: ../../mod/admin.php:1172
+#: ../../mod/admin.php:1173
msgid ""
"Must be writable by web server. Relative to your Red top-level directory."
msgstr "Deve essere scrivibile dal web server. È relativa alla cartella dove è installato Red."
-#: ../../mod/admin.php:1173
+#: ../../mod/admin.php:1174
msgid "Log level"
msgstr "Livello di log"
@@ -4516,17 +4958,17 @@ msgstr "L'elemento non è modificabile"
msgid "Delete item?"
msgstr "Eliminare questo elemento?"
-#: ../../mod/editpost.php:107 ../../mod/editlayout.php:110
+#: ../../mod/editpost.php:116 ../../mod/editlayout.php:110
#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
msgid "Insert YouTube video"
msgstr "Inserisci video da YouTube"
-#: ../../mod/editpost.php:108 ../../mod/editlayout.php:111
+#: ../../mod/editpost.php:117 ../../mod/editlayout.php:111
#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
msgid "Insert Vorbis [.ogg] video"
msgstr "Inserisci video Vorbis [.ogg]"
-#: ../../mod/editpost.php:109 ../../mod/editlayout.php:112
+#: ../../mod/editpost.php:118 ../../mod/editlayout.php:112
#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
msgid "Insert Vorbis [.ogg] audio"
msgstr "Inserisci audio Vorbis [.ogg]"
@@ -4871,15 +5313,15 @@ msgid ""
"Replies/likes to your public posts may still be visible"
msgstr "Le risposte ai tuoi articoli pubblici potrebbero restare comunque visibili"
-#: ../../mod/layouts.php:52
+#: ../../mod/layouts.php:45
msgid "Layout Help"
msgstr "Guida al layout"
-#: ../../mod/layouts.php:55
+#: ../../mod/layouts.php:48
msgid "Help with this feature"
msgstr "La guida per questa funzionalità"
-#: ../../mod/layouts.php:74
+#: ../../mod/layouts.php:69
msgid "Layout Name"
msgstr "Nome layout"
@@ -4887,24 +5329,38 @@ msgstr "Nome layout"
msgid "Help:"
msgstr "Guida:"
-#: ../../mod/help.php:68 ../../index.php:223
+#: ../../mod/help.php:69 ../../index.php:223
msgid "Not Found"
msgstr "Non disponibile"
-#: ../../mod/help.php:71 ../../mod/page.php:83 ../../mod/display.php:100
+#: ../../mod/help.php:72 ../../mod/page.php:83 ../../mod/display.php:100
#: ../../index.php:226
msgid "Page not found."
msgstr "Pagina non trovata."
-#: ../../mod/rmagic.php:56
+#: ../../mod/rmagic.php:38
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente."
+
+#: ../../mod/rmagic.php:38
+msgid "The error message was:"
+msgstr "Messaggio di errore ricevuto:"
+
+#: ../../mod/rmagic.php:42
+msgid "Authentication failed."
+msgstr "Autenticazione fallita."
+
+#: ../../mod/rmagic.php:78
msgid "Remote Authentication"
msgstr "Autenticazione a distanza"
-#: ../../mod/rmagic.php:57
+#: ../../mod/rmagic.php:79
msgid "Enter your channel address (e.g. channel@example.com)"
msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"
-#: ../../mod/rmagic.php:58
+#: ../../mod/rmagic.php:80
msgid "Authenticate"
msgstr "Autenticazione"
@@ -5194,7 +5650,7 @@ msgid ""
" logout and retry."
msgstr "L'autenticazione remota non è disponibile. Hai accesso solamente a questo sito. Puoi provare ad uscire per tentare di nuovo."
-#: ../../mod/post.php:256
+#: ../../mod/post.php:256 ../../mod/openid.php:71 ../../mod/openid.php:176
#, php-format
msgid "Welcome %s. Remote authentication successful."
msgstr "Ciao %s. La tua autenticazione da remoto è avvenuta con successo."
@@ -5643,9 +6099,10 @@ msgstr "Donazioni al progetto"
#: ../../mod/siteinfo.php:94
msgid ""
"
The Red Matrix is provided for you by volunteers working in their spare "
-"time. Your support will help us to build a better web. Select the following "
-"option for a one-time donation of your choosing
"
-msgstr "
Red Matrix è realizzato da volontari che impiegano il loro tempo libero nel progetto. Il tuo contributo ci aiuterà a rendere migliore il web. Scegli l'opzione seguente per fare un'offerta singola dell'importo che preferisci
"
+"time. Your support will help us to build a better, freer, and privacy "
+"respecting web. Select the following option for a one-time donation of your "
+"choosing"
+msgstr "
Red Matrix è realizzato da volontari che impiegano il loro tempo libero nel progetto. Il tuo contributo ci aiuterà a rendere il web migliore, più libero e più rispettoso della privacy. Scegli l'opzione seguente per fare un'offerta singola dell'importo che preferisci
"
#: ../../mod/siteinfo.php:95
msgid "
or
"
@@ -5743,7 +6200,7 @@ msgid ""
"Password reset failed."
msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non può essere reimpostata."
-#: ../../mod/lostpass.php:85 ../../boot.php:1434
+#: ../../mod/lostpass.php:85 ../../boot.php:1436
msgid "Password Reset"
msgstr "Reimposta la password"
@@ -5792,406 +6249,25 @@ msgstr "Indirizzo email"
msgid "Reset"
msgstr "Reimposta"
-#: ../../mod/settings.php:71
-msgid "Name is required"
-msgstr "Il nome è obbligatorio"
+#: ../../mod/rbmark.php:88
+msgid "Select a bookmark folder"
+msgstr "Scegli una cartella di segnalibri"
-#: ../../mod/settings.php:75
-msgid "Key and Secret are required"
-msgstr "Chiave e Segreto sono richiesti"
+#: ../../mod/rbmark.php:93
+msgid "Save Bookmark"
+msgstr "Salva segnalibro"
-#: ../../mod/settings.php:79 ../../mod/settings.php:542
-msgid "Update"
-msgstr "Aggiorna"
+#: ../../mod/rbmark.php:94
+msgid "URL of bookmark"
+msgstr "URL del segnalibro"
-#: ../../mod/settings.php:195
-msgid "Passwords do not match. Password unchanged."
-msgstr "Le password non corrispondono. Password non cambiata."
+#: ../../mod/rbmark.php:95
+msgid "Description"
+msgstr "Descrizione"
-#: ../../mod/settings.php:199
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Le password non possono essere vuote. Password non cambiata."
-
-#: ../../mod/settings.php:212
-msgid "Password changed."
-msgstr "Password cambiata."
-
-#: ../../mod/settings.php:214
-msgid "Password update failed. Please try again."
-msgstr "Aggiornamento password fallito. Prova ancora."
-
-#: ../../mod/settings.php:228
-msgid "Not valid email."
-msgstr "Email non valida."
-
-#: ../../mod/settings.php:231
-msgid "Protected email address. Cannot change to that email."
-msgstr "È un indirizzo email riservato. Non puoi sceglierlo."
-
-#: ../../mod/settings.php:240
-msgid "System failure storing new email. Please try again."
-msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."
-
-#: ../../mod/settings.php:444
-msgid "Settings updated."
-msgstr "Impostazioni aggiornate."
-
-#: ../../mod/settings.php:515 ../../mod/settings.php:541
-#: ../../mod/settings.php:577
-msgid "Add application"
-msgstr "Aggiungi una app"
-
-#: ../../mod/settings.php:518 ../../mod/settings.php:544
-msgid "Name"
-msgstr "Nome"
-
-#: ../../mod/settings.php:518
-msgid "Name of application"
-msgstr "Nome dell'applicazione"
-
-#: ../../mod/settings.php:519 ../../mod/settings.php:545
-msgid "Consumer Key"
-msgstr "Consumer Key"
-
-#: ../../mod/settings.php:519 ../../mod/settings.php:520
-msgid "Automatically generated - change if desired. Max length 20"
-msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"
-
-#: ../../mod/settings.php:520 ../../mod/settings.php:546
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
-
-#: ../../mod/settings.php:521 ../../mod/settings.php:547
-msgid "Redirect"
-msgstr "Redirect"
-
-#: ../../mod/settings.php:521
-msgid ""
-"Redirect URI - leave blank unless your application specifically requires "
-"this"
-msgstr "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione."
-
-#: ../../mod/settings.php:522 ../../mod/settings.php:548
-msgid "Icon url"
-msgstr "Url icona"
-
-#: ../../mod/settings.php:522
-msgid "Optional"
-msgstr "Opzionale"
-
-#: ../../mod/settings.php:533
-msgid "You can't edit this application."
-msgstr "Non puoi modificare questa applicazione."
-
-#: ../../mod/settings.php:576
-msgid "Connected Apps"
-msgstr "App connesse"
-
-#: ../../mod/settings.php:580
-msgid "Client key starts with"
-msgstr "La client key inizia con"
-
-#: ../../mod/settings.php:581
-msgid "No name"
-msgstr "Nessun nome"
-
-#: ../../mod/settings.php:582
-msgid "Remove authorization"
-msgstr "Revoca l'autorizzazione"
-
-#: ../../mod/settings.php:593
-msgid "No feature settings configured"
-msgstr "Non ci sono funzionalità aggiuntive personalizzabili"
-
-#: ../../mod/settings.php:601
-msgid "Feature Settings"
-msgstr "Impostazioni aggiuntive"
-
-#: ../../mod/settings.php:624
-msgid "Account Settings"
-msgstr "Impostazioni account"
-
-#: ../../mod/settings.php:625
-msgid "Password Settings"
-msgstr "Impostazioni password"
-
-#: ../../mod/settings.php:626
-msgid "New Password:"
-msgstr "Nuova password:"
-
-#: ../../mod/settings.php:627
-msgid "Confirm:"
-msgstr "Conferma:"
-
-#: ../../mod/settings.php:627
-msgid "Leave password fields blank unless changing"
-msgstr "Lascia questi campi in bianco per non cambiare la password"
-
-#: ../../mod/settings.php:629 ../../mod/settings.php:925
-msgid "Email Address:"
-msgstr "Indirizzo email:"
-
-#: ../../mod/settings.php:630
-msgid "Remove Account"
-msgstr "Elimina l'account"
-
-#: ../../mod/settings.php:631
-msgid "Warning: This action is permanent and cannot be reversed."
-msgstr "Attenzione: questa azione è permanente e non potrà più essere annullata."
-
-#: ../../mod/settings.php:647
-msgid "Off"
-msgstr "Off"
-
-#: ../../mod/settings.php:647
-msgid "On"
-msgstr "On"
-
-#: ../../mod/settings.php:654
-msgid "Additional Features"
-msgstr "Funzionalità aggiuntive"
-
-#: ../../mod/settings.php:679
-msgid "Connector Settings"
-msgstr "Impostazioni del connettore"
-
-#: ../../mod/settings.php:750
-msgid "Display Settings"
-msgstr "Impostazioni grafiche"
-
-#: ../../mod/settings.php:756
-msgid "Display Theme:"
-msgstr "Tema per monitor:"
-
-#: ../../mod/settings.php:757
-msgid "Mobile Theme:"
-msgstr "Tema per dispositivi mobili:"
-
-#: ../../mod/settings.php:758
-msgid "Update browser every xx seconds"
-msgstr "Aggiorna il browser ogni x secondi"
-
-#: ../../mod/settings.php:758
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimo 10 secondi, nessun limite massimo"
-
-#: ../../mod/settings.php:759
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Massimo numero di conversazioni da mostrare ogni volta:"
-
-#: ../../mod/settings.php:759
-msgid "Maximum of 100 items"
-msgstr "Massimo 100"
-
-#: ../../mod/settings.php:760
-msgid "Don't show emoticons"
-msgstr "Non mostrare le emoticons"
-
-#: ../../mod/settings.php:761
-msgid "Do not view remote profiles in frames"
-msgstr "Visualizza gli altri profili come normali pagine web"
-
-#: ../../mod/settings.php:761
-msgid "By default open in a sub-window of your own site"
-msgstr "Se non selezionato, i profili degli altri utenti sono mostrati dentro un riquadro nella pagina"
-
-#: ../../mod/settings.php:796
-msgid "Nobody except yourself"
-msgstr "Nessuno tranne te"
-
-#: ../../mod/settings.php:797
-msgid "Only those you specifically allow"
-msgstr "Solo chi riceve il mio permesso"
-
-#: ../../mod/settings.php:798
-msgid "Anybody in your address book"
-msgstr "Chiunque tra i miei contatti"
-
-#: ../../mod/settings.php:799
-msgid "Anybody on this website"
-msgstr "Chiunque su questo sito"
-
-#: ../../mod/settings.php:800
-msgid "Anybody in this network"
-msgstr "Chiunque su Red"
-
-#: ../../mod/settings.php:801
-msgid "Anybody on the internet"
-msgstr "Chiunque su internet"
-
-#: ../../mod/settings.php:878
-msgid "Publish your default profile in the network directory"
-msgstr "Pubblica il mio profilo predefinito sull'elenco pubblico dei canali"
-
-#: ../../mod/settings.php:883
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Vuoi essere suggerito come potenziale amico ai nuovi membri?"
-
-#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
-msgid "or"
-msgstr "o"
-
-#: ../../mod/settings.php:892
-msgid "Your channel address is"
-msgstr "L'indirizzo del tuo canale è"
-
-#: ../../mod/settings.php:914
-msgid "Channel Settings"
-msgstr "Impostazioni del canale"
-
-#: ../../mod/settings.php:923
-msgid "Basic Settings"
-msgstr "Impostazioni di base"
-
-#: ../../mod/settings.php:926
-msgid "Your Timezone:"
-msgstr "Il tuo fuso orario:"
-
-#: ../../mod/settings.php:927
-msgid "Default Post Location:"
-msgstr "Località predefinita:"
-
-#: ../../mod/settings.php:928
-msgid "Use Browser Location:"
-msgstr "Usa la località rilevata dal browser:"
-
-#: ../../mod/settings.php:930
-msgid "Adult Content"
-msgstr "Contenuto per adulti"
-
-#: ../../mod/settings.php:930
-msgid ""
-"This channel frequently or regularly publishes adult content. (Please tag "
-"any adult material and/or nudity with #NSFW)"
-msgstr "Questo canale pubblica frequentemente contenuto per adulti. (Il contenuto per adulti deve essere marcato con il tag #NSFW - Not Safe For Work)"
-
-#: ../../mod/settings.php:932
-msgid "Security and Privacy Settings"
-msgstr "Impostazioni di sicurezza e privacy"
-
-#: ../../mod/settings.php:934
-msgid "Hide my online presence"
-msgstr "Non mostrare la mia presenza online"
-
-#: ../../mod/settings.php:934
-msgid "Prevents displaying in your profile that you are online"
-msgstr "Non mostra sul tuo profilo che sei online"
-
-#: ../../mod/settings.php:936
-msgid "Simple Privacy Settings:"
-msgstr "Impostazioni di privacy semplificate"
-
-#: ../../mod/settings.php:937
-msgid ""
-"Very Public - extremely permissive (should be used with caution)"
-msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)"
-
-#: ../../mod/settings.php:938
-msgid ""
-"Typical - default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)"
-msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"
-
-#: ../../mod/settings.php:939
-msgid "Private - default private, never open or public"
-msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico"
-
-#: ../../mod/settings.php:940
-msgid "Blocked - default blocked to/from everybody"
-msgstr "Bloccato - bloccato in ricezione e invio"
-
-#: ../../mod/settings.php:943
-msgid "Advanced Privacy Settings"
-msgstr "Impostazioni di privacy avanzate"
-
-#: ../../mod/settings.php:945
-msgid "Maximum Friend Requests/Day:"
-msgstr "Numero massimo giornaliero di richieste di amicizia:"
-
-#: ../../mod/settings.php:945
-msgid "May reduce spam activity"
-msgstr "Serve e ridurre lo spam"
-
-#: ../../mod/settings.php:946
-msgid "Default Post Permissions"
-msgstr "Permessi predefiniti per gli articoli"
-
-#: ../../mod/settings.php:958
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"
-
-#: ../../mod/settings.php:958
-msgid "Useful to reduce spamming"
-msgstr "Serve e ridurre lo spam"
-
-#: ../../mod/settings.php:961
-msgid "Notification Settings"
-msgstr "Impostazioni di notifica"
-
-#: ../../mod/settings.php:962
-msgid "By default post a status message when:"
-msgstr "Pubblica un messaggio di stato quando:"
-
-#: ../../mod/settings.php:963
-msgid "accepting a friend request"
-msgstr "accetto una nuova amicizia"
-
-#: ../../mod/settings.php:964
-msgid "joining a forum/community"
-msgstr "entro a far parte di un forum"
-
-#: ../../mod/settings.php:965
-msgid "making an interesting profile change"
-msgstr "faccio un cambiamento interessante al mio profilo"
-
-#: ../../mod/settings.php:966
-msgid "Send a notification email when:"
-msgstr "Invia una email di notifica quando:"
-
-#: ../../mod/settings.php:967
-msgid "You receive an introduction"
-msgstr "Ricevi una richiesta di amicizia"
-
-#: ../../mod/settings.php:968
-msgid "Your introductions are confirmed"
-msgstr "Le tue richieste di amicizia sono state accettate"
-
-#: ../../mod/settings.php:969
-msgid "Someone writes on your profile wall"
-msgstr "Qualcuno scrive sulla tua bacheca"
-
-#: ../../mod/settings.php:970
-msgid "Someone writes a followup comment"
-msgstr "Qualcuno scrive un commento a un tuo articolo"
-
-#: ../../mod/settings.php:971
-msgid "You receive a private message"
-msgstr "Ricevi un messaggio privato"
-
-#: ../../mod/settings.php:972
-msgid "You receive a friend suggestion"
-msgstr "Ti viene suggerito un amico"
-
-#: ../../mod/settings.php:973
-msgid "You are tagged in a post"
-msgstr "Sei taggato in un articolo"
-
-#: ../../mod/settings.php:974
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Ricevi un poke in un articolo"
-
-#: ../../mod/settings.php:977
-msgid "Advanced Account/Page Type Settings"
-msgstr "Impostazioni avanzate"
-
-#: ../../mod/settings.php:978
-msgid "Change the behaviour of this account for special situations"
-msgstr "Cambia il funzionamento di questo account in situazioni particolari"
-
-#: ../../mod/settings.php:981
-msgid ""
-"Please enable expert mode (in Settings > Additional features) to adjust!"
-msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità aggiuntive)"
+#: ../../mod/rbmark.php:99
+msgid "Or enter new bookmark folder name"
+msgstr "O inserisci il nome di una nuova cartella di segnalibri"
#: ../../mod/import.php:36
msgid "Nothing to import."
@@ -6270,32 +6346,32 @@ msgstr "Per ciascuna opzione, scegli se vuoi rendere questo server il tuo indiri
msgid "Make this hub my primary location"
msgstr "Rendi questo server il mio indirizzo primario"
-#: ../../mod/manage.php:63
+#: ../../mod/manage.php:64
#, php-format
msgid "You have created %1$.0f of %2$.0f allowed channels."
msgstr "Hai creato %1$.0f dei %2$.0f canali permessi."
-#: ../../mod/manage.php:71
+#: ../../mod/manage.php:72
msgid "Create a new channel"
msgstr "Crea un nuovo canale"
-#: ../../mod/manage.php:76
+#: ../../mod/manage.php:77
msgid "Channel Manager"
msgstr "Gestione canali"
-#: ../../mod/manage.php:77
+#: ../../mod/manage.php:78
msgid "Current Channel"
msgstr "Canale attuale"
-#: ../../mod/manage.php:79
+#: ../../mod/manage.php:80
msgid "Attach to one of your channels by selecting it."
msgstr "Seleziona il canale a cui vuoi passare."
-#: ../../mod/manage.php:80
+#: ../../mod/manage.php:81
msgid "Default Channel"
msgstr "Canale predefinito"
-#: ../../mod/manage.php:81
+#: ../../mod/manage.php:82
msgid "Make Default"
msgstr "Rendi predefinito"
@@ -6327,6 +6403,14 @@ msgstr "Nessun risultato"
msgid "invalid target signature"
msgstr "la firma riscontrata non è valida"
+#: ../../mod/chatsvc.php:102
+msgid "Away"
+msgstr "Assente"
+
+#: ../../mod/chatsvc.php:106
+msgid "Online"
+msgstr "Online"
+
#: ../../mod/mail.php:33
msgid "Unable to lookup recipient."
msgstr "Impossibile associare un destinatario."
@@ -6401,6 +6485,10 @@ msgstr "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi ver
msgid "Send Reply"
msgstr "Invia la risposta"
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."
+
#: ../../mod/editlayout.php:72
msgid "Edit Layout"
msgstr "Modifica il layout"
@@ -7042,109 +7130,113 @@ msgstr "ha aggiunto il tuo canale"
msgid "posted an event"
msgstr "ha creato un evento"
-#: ../../view/theme/redbasic/php/config.php:76
+#: ../../view/theme/redbasic/php/config.php:78
msgid "Scheme Default"
msgstr "Schema predefinito"
-#: ../../view/theme/redbasic/php/config.php:87
+#: ../../view/theme/redbasic/php/config.php:89
msgid "silver"
msgstr "argento"
-#: ../../view/theme/redbasic/php/config.php:98
-#: ../../view/theme/apw/php/config.php:234
+#: ../../view/theme/redbasic/php/config.php:100
+#: ../../view/theme/apw/php/config.php:250
#: ../../view/theme/blogga/view/theme/blog/config.php:69
#: ../../view/theme/blogga/php/config.php:69
msgid "Theme settings"
msgstr "Impostazioni del tema"
-#: ../../view/theme/redbasic/php/config.php:99
-#: ../../view/theme/apw/php/config.php:235
+#: ../../view/theme/redbasic/php/config.php:101
+#: ../../view/theme/apw/php/config.php:251
msgid "Set scheme"
msgstr "Schema"
-#: ../../view/theme/redbasic/php/config.php:100
+#: ../../view/theme/redbasic/php/config.php:102
+msgid "Narrow navbar"
+msgstr "Barra di navigazione ristretta"
+
+#: ../../view/theme/redbasic/php/config.php:103
msgid "Navigation bar colour"
msgstr "Colore della barra di navigazione"
-#: ../../view/theme/redbasic/php/config.php:101
+#: ../../view/theme/redbasic/php/config.php:104
msgid "link colour"
msgstr "colore dei link"
-#: ../../view/theme/redbasic/php/config.php:102
+#: ../../view/theme/redbasic/php/config.php:105
msgid "Set font-colour for banner"
msgstr "Colore del font del banner"
-#: ../../view/theme/redbasic/php/config.php:103
+#: ../../view/theme/redbasic/php/config.php:106
msgid "Set the background colour"
msgstr "Colore di sfondo"
-#: ../../view/theme/redbasic/php/config.php:104
+#: ../../view/theme/redbasic/php/config.php:107
msgid "Set the background image"
msgstr "Immagine di sfondo"
-#: ../../view/theme/redbasic/php/config.php:105
+#: ../../view/theme/redbasic/php/config.php:108
msgid "Set the background colour of items"
msgstr "Colore di sfondo degli elementi della pagina"
-#: ../../view/theme/redbasic/php/config.php:106
+#: ../../view/theme/redbasic/php/config.php:109
msgid "Set the opacity of items"
msgstr "Opacità degli oggetti"
-#: ../../view/theme/redbasic/php/config.php:107
+#: ../../view/theme/redbasic/php/config.php:110
msgid "Set the basic colour for item icons"
msgstr "Colore di base per le icone"
-#: ../../view/theme/redbasic/php/config.php:108
+#: ../../view/theme/redbasic/php/config.php:111
msgid "Set the hover colour for item icons"
msgstr "Colore per le icone in evidenza"
-#: ../../view/theme/redbasic/php/config.php:109
+#: ../../view/theme/redbasic/php/config.php:112
msgid "Set font-size for the entire application"
msgstr "Dimensione font per tutto il sito"
-#: ../../view/theme/redbasic/php/config.php:110
-#: ../../view/theme/apw/php/config.php:236
+#: ../../view/theme/redbasic/php/config.php:113
+#: ../../view/theme/apw/php/config.php:252
msgid "Set font-size for posts and comments"
msgstr "Dimensioni del carattere per articoli e commenti"
-#: ../../view/theme/redbasic/php/config.php:111
+#: ../../view/theme/redbasic/php/config.php:114
msgid "Set font-colour for posts and comments"
msgstr "Colore del carattere per articoli e commenti"
-#: ../../view/theme/redbasic/php/config.php:112
+#: ../../view/theme/redbasic/php/config.php:115
msgid "Set radius of corners"
msgstr "Raggio degli angoli stondati"
-#: ../../view/theme/redbasic/php/config.php:113
+#: ../../view/theme/redbasic/php/config.php:116
msgid "Set shadow depth of photos"
msgstr "Profondità dell'ombra delle foto"
-#: ../../view/theme/redbasic/php/config.php:114
+#: ../../view/theme/redbasic/php/config.php:117
msgid "Set maximum width of conversation regions"
msgstr "Larghezza massima delle aree delle conversazioni"
-#: ../../view/theme/redbasic/php/config.php:115
+#: ../../view/theme/redbasic/php/config.php:118
msgid "Set minimum opacity of nav bar - to hide it"
msgstr "Imposta l'opacità minima della barra di navigazione per nasconderla"
-#: ../../view/theme/redbasic/php/config.php:116
+#: ../../view/theme/redbasic/php/config.php:119
msgid "Set size of conversation author photo"
msgstr "Dimensione foto dell'autore della conversazione"
-#: ../../view/theme/redbasic/php/config.php:117
+#: ../../view/theme/redbasic/php/config.php:120
msgid "Set size of followup author photos"
msgstr "Dimensione foto dei partecipanti alla conversazione"
-#: ../../view/theme/redbasic/php/config.php:118
+#: ../../view/theme/redbasic/php/config.php:121
msgid "Sloppy photo albums"
msgstr "Album con foto storte"
-#: ../../view/theme/redbasic/php/config.php:118
+#: ../../view/theme/redbasic/php/config.php:121
msgid "Are you a clean desk or a messy desk person?"
msgstr "La tua scrivania è sempre a posto? Sei una persona disordinata?"
#: ../../view/theme/apw/php/config.php:193
-#: ../../view/theme/apw/php/config.php:211
+#: ../../view/theme/apw/php/config.php:227
msgid "Schema Default"
msgstr "Schema predefinito"
@@ -7156,115 +7248,115 @@ msgstr "Sans-Serif"
msgid "Monospace"
msgstr "Monospace"
-#: ../../view/theme/apw/php/config.php:237
+#: ../../view/theme/apw/php/config.php:253
msgid "Set font face"
msgstr "Tipo di carattere"
-#: ../../view/theme/apw/php/config.php:238
+#: ../../view/theme/apw/php/config.php:254
msgid "Set iconset"
msgstr "Icone"
-#: ../../view/theme/apw/php/config.php:239
+#: ../../view/theme/apw/php/config.php:255
msgid "Set big shadow size, default 15px 15px 15px"
msgstr "Ombra grande, predefinita 15px 15px 15px"
-#: ../../view/theme/apw/php/config.php:240
+#: ../../view/theme/apw/php/config.php:256
msgid "Set small shadow size, default 5px 5px 5px"
msgstr "Ombra piccola, predefinita 5px 5px 5px"
-#: ../../view/theme/apw/php/config.php:241
+#: ../../view/theme/apw/php/config.php:257
msgid "Set shadow colour, default #000"
msgstr "Colore dell'ombra, predefinito #000"
-#: ../../view/theme/apw/php/config.php:242
+#: ../../view/theme/apw/php/config.php:258
msgid "Set radius size, default 5px"
msgstr "Raggio degli angoli, predefinito 5px"
-#: ../../view/theme/apw/php/config.php:243
+#: ../../view/theme/apw/php/config.php:259
msgid "Set line-height for posts and comments"
msgstr "Altezza della riga per articoli e commenti"
-#: ../../view/theme/apw/php/config.php:244
+#: ../../view/theme/apw/php/config.php:260
msgid "Set background image"
msgstr "Immagine di sfondo"
-#: ../../view/theme/apw/php/config.php:245
+#: ../../view/theme/apw/php/config.php:261
msgid "Set background colour"
msgstr "Colore di sfondo"
-#: ../../view/theme/apw/php/config.php:246
+#: ../../view/theme/apw/php/config.php:262
msgid "Set section background image"
msgstr "Immagine di sfondo della sezione"
-#: ../../view/theme/apw/php/config.php:247
+#: ../../view/theme/apw/php/config.php:263
msgid "Set section background colour"
msgstr "Colore di sfondo della sezione"
-#: ../../view/theme/apw/php/config.php:248
+#: ../../view/theme/apw/php/config.php:264
msgid "Set colour of items - use hex"
msgstr "Colore degli elementi della pagina - esadecimale"
-#: ../../view/theme/apw/php/config.php:249
+#: ../../view/theme/apw/php/config.php:265
msgid "Set colour of links - use hex"
msgstr "Colore dei link - esadecimale"
-#: ../../view/theme/apw/php/config.php:250
+#: ../../view/theme/apw/php/config.php:266
msgid "Set max-width for items. Default 400px"
msgstr "Larghezza massima degli elementi della pagina. Predefinita: 400px"
-#: ../../view/theme/apw/php/config.php:251
+#: ../../view/theme/apw/php/config.php:267
msgid "Set min-width for items. Default 240px"
msgstr "Larghezza minima degli elementi della pagina. Predefinita: 240px"
-#: ../../view/theme/apw/php/config.php:252
+#: ../../view/theme/apw/php/config.php:268
msgid "Set the generic content wrapper width. Default 48%"
msgstr "Larghezza di tutta l'area dei contenuti. Predefinita: 48%"
-#: ../../view/theme/apw/php/config.php:253
+#: ../../view/theme/apw/php/config.php:269
msgid "Set colour of fonts - use hex"
msgstr "Colore dei caratteri - esadecimale"
-#: ../../view/theme/apw/php/config.php:254
+#: ../../view/theme/apw/php/config.php:270
msgid "Set background-size element"
msgstr "Background-size element"
-#: ../../view/theme/apw/php/config.php:255
+#: ../../view/theme/apw/php/config.php:271
msgid "Item opacity"
msgstr "Opacità degli elementi della pagina"
-#: ../../view/theme/apw/php/config.php:256
+#: ../../view/theme/apw/php/config.php:272
msgid "Display post previews only"
msgstr "Mostra le anteprime solo degli articoli"
-#: ../../view/theme/apw/php/config.php:257
+#: ../../view/theme/apw/php/config.php:273
msgid "Display side bar on channel page"
msgstr "Mostra la colonna laterale sulla pagina del canale"
-#: ../../view/theme/apw/php/config.php:258
+#: ../../view/theme/apw/php/config.php:274
msgid "Colour of the navigation bar"
msgstr "Colore della barra di navigazione"
-#: ../../view/theme/apw/php/config.php:259
+#: ../../view/theme/apw/php/config.php:275
msgid "Item float"
msgstr "Float degli oggetti della pagina"
-#: ../../view/theme/apw/php/config.php:260
+#: ../../view/theme/apw/php/config.php:276
msgid "Left offset of the section element"
msgstr "Spazio a sinistra dell'elemento section"
-#: ../../view/theme/apw/php/config.php:261
+#: ../../view/theme/apw/php/config.php:277
msgid "Right offset of the section element"
msgstr "Spazio a destra dell'elemento section"
-#: ../../view/theme/apw/php/config.php:262
+#: ../../view/theme/apw/php/config.php:278
msgid "Section width"
msgstr "Larghezza section"
-#: ../../view/theme/apw/php/config.php:263
+#: ../../view/theme/apw/php/config.php:279
msgid "Left offset of the aside"
msgstr "Spazio a sinistra del aside"
-#: ../../view/theme/apw/php/config.php:264
+#: ../../view/theme/apw/php/config.php:280
msgid "Right offset of the aside element"
msgstr "Spazio a destra del aside"
@@ -7283,41 +7375,41 @@ msgstr "Immagine dell'intestazione"
msgid "Header image only on profile pages"
msgstr "È possibile mettere un'immagine solo nell'intestazione dei profili"
-#: ../../boot.php:1232
+#: ../../boot.php:1234
#, php-format
msgid "Update %s failed. See error logs."
msgstr "%s: aggiornamento fallito. Controlla i log di errore."
-#: ../../boot.php:1235
+#: ../../boot.php:1237
#, php-format
msgid "Update Error at %s"
msgstr "Errore di aggiornamento su %s"
-#: ../../boot.php:1399
+#: ../../boot.php:1401
msgid ""
"Create an account to access services and applications within the Red Matrix"
msgstr "Registrati per accedere ai servizi e alle applicazioni di Red Matrix"
-#: ../../boot.php:1427
+#: ../../boot.php:1429
msgid "Password"
msgstr "Password"
-#: ../../boot.php:1428
+#: ../../boot.php:1430
msgid "Remember me"
msgstr "Resta connesso"
-#: ../../boot.php:1433
+#: ../../boot.php:1435
msgid "Forgot your password?"
msgstr "Hai dimenticato la password?"
-#: ../../boot.php:1498
+#: ../../boot.php:1500
msgid "permission denied"
msgstr "permesso negato"
-#: ../../boot.php:1499
+#: ../../boot.php:1501
msgid "Got Zot?"
msgstr "Hai Zot?"
-#: ../../boot.php:1899
+#: ../../boot.php:1920
msgid "toggle mobile"
msgstr "attiva/disattiva versione mobile"
diff --git a/view/it/strings.php b/view/it/strings.php
index 42b91f2fa..011655048 100644
--- a/view/it/strings.php
+++ b/view/it/strings.php
@@ -43,6 +43,8 @@ $a->strings["Settings"] = "Impostazioni";
$a->strings["Check Mail"] = "Controlla i messaggi";
$a->strings["New Message"] = "Nuovo messaggio";
$a->strings["Chat Rooms"] = "Chat attive";
+$a->strings["Bookmarked Chatrooms"] = "Chat nei segnalibri";
+$a->strings["Suggested Chatrooms"] = "Chat suggerite";
$a->strings["Visible to everybody"] = "Visibile a tutti";
$a->strings["show"] = "mostra";
$a->strings["don't show"] = "non mostrare";
@@ -202,7 +204,7 @@ $a->strings["Pages"] = "Pagine";
$a->strings["Image/photo"] = "Immagine";
$a->strings["Encrypted content"] = "Contenuto crittografato";
$a->strings["QR code"] = "QR code";
-$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s seguente %3\$s";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s";
$a->strings["post"] = "l'articolo";
$a->strings["$1 wrote:"] = "$1 ha scritto:";
$a->strings["New window"] = "Nuova finestra";
@@ -315,13 +317,15 @@ $a->strings["Delete this item?"] = "Eliminare questo elemento?";
$a->strings["Comment"] = "Commento";
$a->strings["show more"] = "mostra tutto";
$a->strings["show fewer"] = "riduci";
+$a->strings["+ Show More"] = "+ Mostra tutto";
+$a->strings["- Show Less"] = "- Mostra ridotto";
$a->strings["Password too short"] = "Password troppo corta";
$a->strings["Passwords do not match"] = "Le password non corrispondono";
$a->strings["everybody"] = "tutti";
$a->strings["Secret Passphrase"] = "Chiave segreta";
$a->strings["Passphrase hint"] = "Suggerimento per la chiave segreta";
$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
-$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
+$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
$a->strings["ago"] = "fa";
$a->strings["from now"] = "da adesso";
$a->strings["less than a minute"] = "meno di un minuto";
@@ -469,8 +473,8 @@ $a->strings["Nickname has unsupported characters or is already being used on thi
$a->strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata";
$a->strings["Default Profile"] = "Profilo predefinito";
$a->strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile.";
-$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Purtroppo non hai il permesso di vedere questo profilo.";
$a->strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile.";
+$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Purtroppo non hai il permesso di vedere questo profilo.";
$a->strings["Change profile photo"] = "Cambia la foto del profilo";
$a->strings["Profiles"] = "Profili";
$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
@@ -652,8 +656,8 @@ $a->strings["redmatrix"] = "redmatrix";
$a->strings["Thank You,"] = "Grazie,";
$a->strings["%s Administrator"] = "Amministratore %s";
$a->strings["%s "] = "%s ";
-$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notifica] Nuovo messaggio ricevuto alle %s";
-$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato alle %3\$s.";
+$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notifica] Nuovo messaggio ricevuto su %s";
+$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s.";
$a->strings["a private message"] = "un messaggio privato";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere.";
@@ -664,24 +668,24 @@ $a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Noti
$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione.";
$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notifica] %s ha scritto sulla tua bacheca";
-$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo alle %3\$s";
+$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s";
$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]";
$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notifica] %s ti ha taggato";
-$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato alle %3\$s";
+$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s";
$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl].";
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notifica] %1\$s ti ha mandato un poke";
-$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke alle %3\$s";
+$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s";
$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl].";
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notifica] %s ha taggato il tuo articolo";
-$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo alle %3\$s";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo articolo su %3\$s";
$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo articolo[/zrl]";
$a->strings["[Red:Notify] Introduction received"] = "[Red:Notifica] Hai una richiesta di amicizia";
-$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di contatto da '%2\$s' alle %3\$s";
+$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di contatto da '%2\$s' su %3\$s";
$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "%1\$s, hai ricevuto [zrl=%2\$s]una richiesta di amicizia[/zrl] da %3\$s.";
$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la richiesta.";
$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notifica] Ti è stato suggerito un amico";
-$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' alle %3\$s";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s";
$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico.";
$a->strings["Name:"] = "Nome:";
$a->strings["Photo:"] = "Foto:";
@@ -714,9 +718,8 @@ $a->strings["This action exceeds the limits set by your subscription plan."] = "
$a->strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento.";
$a->strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito.";
$a->strings["Channel location missing."] = "Manca l'indirizzo del canale.";
-$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "La ricerca del canale è fallita. Il sito potrebbe avere problemi o una configurazione sbagliata.";
-$a->strings["Response from remote channel was not understood."] = "La risposta dal canale non è comprensibile.";
$a->strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa.";
+$a->strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo.";
$a->strings["local account not found."] = "l'account locale non è stato trovato.";
$a->strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso.";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "L'identificativo di sicurezza del modulo che hai riempito non è corretto. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto.";
@@ -745,6 +748,7 @@ $a->strings["Can send me bookmarks"] = "Può inviarmi dei segnalibri";
$a->strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale";
$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri";
$a->strings["Permission denied"] = "Permesso negato";
+$a->strings["(Unknown)"] = "(Sconosciuto)";
$a->strings["Item not found."] = "Elemento non trovato.";
$a->strings["Collection not found."] = "Insieme non trovato.";
$a->strings["Collection is empty."] = "L'insieme di canali è vuoto.";
@@ -808,13 +812,113 @@ $a->strings["Please visit my channel at"] = "Puoi visitare il mio canale su";
$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Una volta che avrai completato la registrazione (su QUALSIASI sito Red Matrix - sono tutti interconnessi), potrai connetterti al mio canale:";
$a->strings["Click the [Register] link on the following page to join."] = "Fai clic su [Registrati] nella pagina seguente per iscriverti.";
$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Per saperne di più sul progetto Red Matrix e sul perché potrebbe cambiare internet per come la conosciamo, visita http://getzot.com";
-$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
-$a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato.";
-$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale.";
-$a->strings["System error. Post not saved."] = "Errore di sistema. Articolo non salvato.";
-$a->strings["Wall Photos"] = "Foto della bacheca";
-$a->strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale.";
-$a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web.";
+$a->strings["Name is required"] = "Il nome è obbligatorio";
+$a->strings["Key and Secret are required"] = "Chiave e Segreto sono richiesti";
+$a->strings["Update"] = "Aggiorna";
+$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata.";
+$a->strings["Password changed."] = "Password cambiata.";
+$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora.";
+$a->strings["Not valid email."] = "Email non valida.";
+$a->strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo.";
+$a->strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore.";
+$a->strings["Settings updated."] = "Impostazioni aggiornate.";
+$a->strings["Add application"] = "Aggiungi una app";
+$a->strings["Name"] = "Nome";
+$a->strings["Name of application"] = "Nome dell'applicazione";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Redirect";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione.";
+$a->strings["Icon url"] = "Url icona";
+$a->strings["Optional"] = "Opzionale";
+$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione.";
+$a->strings["Connected Apps"] = "App connesse";
+$a->strings["Client key starts with"] = "La client key inizia con";
+$a->strings["No name"] = "Nessun nome";
+$a->strings["Remove authorization"] = "Revoca l'autorizzazione";
+$a->strings["No feature settings configured"] = "Non ci sono funzionalità aggiuntive personalizzabili";
+$a->strings["Feature Settings"] = "Impostazioni aggiuntive";
+$a->strings["Account Settings"] = "Impostazioni account";
+$a->strings["Password Settings"] = "Impostazioni password";
+$a->strings["New Password:"] = "Nuova password:";
+$a->strings["Confirm:"] = "Conferma:";
+$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non cambiare la password";
+$a->strings["Email Address:"] = "Indirizzo email:";
+$a->strings["Remove Account"] = "Elimina l'account";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attenzione: questa azione è permanente e non potrà più essere annullata.";
+$a->strings["Off"] = "Off";
+$a->strings["On"] = "On";
+$a->strings["Additional Features"] = "Funzionalità aggiuntive";
+$a->strings["Connector Settings"] = "Impostazioni del connettore";
+$a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili";
+$a->strings["Display Settings"] = "Impostazioni grafiche";
+$a->strings["Display Theme:"] = "Tema per monitor:";
+$a->strings["Mobile Theme:"] = "Tema per dispositivi mobili:";
+$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo";
+$a->strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:";
+$a->strings["Maximum of 100 items"] = "Massimo 100";
+$a->strings["Don't show emoticons"] = "Non mostrare le emoticons";
+$a->strings["Do not view remote profiles in frames"] = "Non mostrare i profili degli altri utenti dentro riquadri";
+$a->strings["By default open in a sub-window of your own site"] = "Se non selezionato, i profili degli altri utenti sono mostrati dentro un riquadro nella pagina";
+$a->strings["Nobody except yourself"] = "Nessuno tranne te";
+$a->strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso";
+$a->strings["Anybody in your address book"] = "Chiunque tra i miei contatti";
+$a->strings["Anybody on this website"] = "Chiunque su questo sito";
+$a->strings["Anybody in this network"] = "Chiunque su Red";
+$a->strings["Anybody authenticated"] = "Chiunque sia autenticato";
+$a->strings["Anybody on the internet"] = "Chiunque su internet";
+$a->strings["Publish your default profile in the network directory"] = "Pubblica il mio profilo predefinito sull'elenco pubblico dei canali";
+$a->strings["No"] = "No";
+$a->strings["Yes"] = "Si";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come potenziale amico ai nuovi membri?";
+$a->strings["or"] = "o";
+$a->strings["Your channel address is"] = "L'indirizzo del tuo canale è";
+$a->strings["Channel Settings"] = "Impostazioni del canale";
+$a->strings["Basic Settings"] = "Impostazioni di base";
+$a->strings["Your Timezone:"] = "Il tuo fuso orario:";
+$a->strings["Default Post Location:"] = "Località predefinita:";
+$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:";
+$a->strings["Adult Content"] = "Contenuto per adulti";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (Il contenuto per adulti deve essere marcato con il tag #NSFW - Not Safe For Work)";
+$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy";
+$a->strings["Hide my online presence"] = "Non mostrare la mia presenza online";
+$a->strings["Prevents displaying in your profile that you are online"] = "Non mostra sul tuo profilo che sei online";
+$a->strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate";
+$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)";
+$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)";
+$a->strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico";
+$a->strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in ricezione e invio";
+$a->strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi articoli";
+$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti";
+$a->strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate";
+$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:";
+$a->strings["May reduce spam activity"] = "Serve e ridurre lo spam";
+$a->strings["Default Post Permissions"] = "Permessi predefiniti per gli articoli";
+$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)";
+$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:";
+$a->strings["Useful to reduce spamming"] = "Serve e ridurre lo spam";
+$a->strings["Notification Settings"] = "Impostazioni di notifica";
+$a->strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:";
+$a->strings["accepting a friend request"] = "accetto una nuova amicizia";
+$a->strings["joining a forum/community"] = "entro a far parte di un forum";
+$a->strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo";
+$a->strings["Send a notification email when:"] = "Invia una email di notifica quando:";
+$a->strings["You receive an introduction"] = "Ricevi una richiesta di amicizia";
+$a->strings["Your introductions are confirmed"] = "Le tue richieste di amicizia sono state accettate";
+$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca";
+$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo articolo";
+$a->strings["You receive a private message"] = "Ricevi un messaggio privato";
+$a->strings["You receive a friend suggestion"] = "Ti viene suggerito un amico";
+$a->strings["You are tagged in a post"] = "Sei taggato in un articolo";
+$a->strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un articolo";
+$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate";
+$a->strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account in situazioni particolari";
+$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità aggiuntive)";
+$a->strings["Miscellaneous Settings"] = "Impostazioni varie";
+$a->strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale";
$a->strings["Menu updated."] = "Menù aggiornato.";
$a->strings["Unable to update menu."] = "Impossibile aggiornare il menù.";
$a->strings["Menu created."] = "Menù creato.";
@@ -845,24 +949,31 @@ $a->strings["Authorize application connection"] = "Autorizza la app";
$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla app e inserisci questo codice di sicurezza:";
$a->strings["Please login to continue."] = "Accedi al sito per continuare.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?";
-$a->strings["Yes"] = "Si";
-$a->strings["No"] = "No";
$a->strings["No installed applications."] = "Nessuna app installata.";
$a->strings["Applications"] = "Applicazioni";
$a->strings["Edit post"] = "Modifica articolo";
-$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix - Ospiti: Nome utente: {il tuo indirizzo email}, Password: +++";
+$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Accesso a Red Matrix. Inserisci l'email con cui sei registrato e la password.";
$a->strings["Bookmark added"] = "Segnalibro aggiunto";
$a->strings["My Bookmarks"] = "I miei segnalibri";
$a->strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti";
+$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
+$a->strings["Empty post discarded."] = "L'articolo vuoto è stato ignorato.";
+$a->strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale.";
+$a->strings["System error. Post not saved."] = "Errore di sistema. Articolo non salvato.";
+$a->strings["Wall Photos"] = "Foto della bacheca";
+$a->strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f articoli sulla pagina principale.";
+$a->strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web.";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
$a->strings["Channel not found."] = "Canale non trovato.";
$a->strings["toggle full screen mode"] = "attiva/disattiva schermo intero";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
$a->strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina.";
+$a->strings["Room not found"] = "Chat non trovata";
$a->strings["Leave Room"] = "Lascia la chat";
$a->strings["I am away right now"] = "Non sono presente al momento";
$a->strings["I am online"] = "Sono online";
+$a->strings["Bookmark this room"] = "Aggiungi chat ai segnalibri";
$a->strings["New Chatroom"] = "Nuova chat";
$a->strings["Chatroom Name"] = "Nome della chat";
$a->strings["%1\$s's Chatrooms"] = "Le chat di %1\$s";
@@ -891,8 +1002,6 @@ $a->strings["Existing Page Delegates"] = "Delegati attuali della pagina";
$a->strings["Potential Delegates"] = "Delegati potenziali";
$a->strings["Add"] = "Aggiungi";
$a->strings["No entries."] = "Nessun risultato.";
-$a->strings["Away"] = "Assente";
-$a->strings["Online"] = "Online";
$a->strings["Item not available."] = "Elemento non disponibile.";
$a->strings["Menu element updated."] = "L'elemento del menù è stato aggiornato.";
$a->strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù.";
@@ -909,7 +1018,6 @@ $a->strings["Delete this menu item"] = "Elimina questo elemento del menù";
$a->strings["Edit this menu item"] = "Modifica questo elemento del menù";
$a->strings["New Menu Element"] = "Nuovo elemento del menù";
$a->strings["Menu Item Permissions"] = "Permessi del menu";
-$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)";
$a->strings["Link text"] = "Testo del link";
$a->strings["URL of link"] = "Indirizzo del link";
$a->strings["Use Red magic-auth if available"] = "Usa l'autenticazione magica di Red, se disponibile";
@@ -955,7 +1063,6 @@ $a->strings["Pending registrations"] = "Registrazioni da approvare";
$a->strings["Version"] = "Versione";
$a->strings["Active plugins"] = "Plugin attivi";
$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate.";
-$a->strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili";
$a->strings["No special theme for accessibility"] = "Nessun tema speciale per l'accessibilità";
$a->strings["Closed"] = "Chiusa";
$a->strings["Requires approval"] = "Richiede l'approvazione";
@@ -1160,6 +1267,9 @@ $a->strings["Layout Name"] = "Nome layout";
$a->strings["Help:"] = "Guida:";
$a->strings["Not Found"] = "Non disponibile";
$a->strings["Page not found."] = "Pagina non trovata.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente.";
+$a->strings["The error message was:"] = "Messaggio di errore ricevuto:";
+$a->strings["Authentication failed."] = "Autenticazione fallita.";
$a->strings["Remote Authentication"] = "Autenticazione a distanza";
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)";
$a->strings["Authenticate"] = "Autenticazione";
@@ -1330,7 +1440,7 @@ $a->strings["Version %s"] = "Versione %s";
$a->strings["Installed plugins/addons/apps:"] = "App e componenti aggiuntivi instalati:";
$a->strings["No installed plugins/addons/apps"] = "Nessuna app o componente aggiuntivo installato";
$a->strings["Project Donations"] = "Donazioni al progetto";
-$a->strings["
The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better web. Select the following option for a one-time donation of your choosing
"] = "
Red Matrix è realizzato da volontari che impiegano il loro tempo libero nel progetto. Il tuo contributo ci aiuterà a rendere migliore il web. Scegli l'opzione seguente per fare un'offerta singola dell'importo che preferisci
";
+$a->strings["
The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better, freer, and privacy respecting web. Select the following option for a one-time donation of your choosing
"] = "
Red Matrix è realizzato da volontari che impiegano il loro tempo libero nel progetto. Il tuo contributo ci aiuterà a rendere il web migliore, più libero e più rispettoso della privacy. Scegli l'opzione seguente per fare un'offerta singola dell'importo che preferisci
";
$a->strings["
or
"] = "
oppure
";
$a->strings["Recurring Donation Options"] = "Opzioni per offerte periodiche";
$a->strings["Red"] = "Red";
@@ -1362,104 +1472,11 @@ $a->strings["Forgot your Password?"] = "Hai dimenticato la password?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare.";
$a->strings["Email Address"] = "Indirizzo email";
$a->strings["Reset"] = "Reimposta";
-$a->strings["Name is required"] = "Il nome è obbligatorio";
-$a->strings["Key and Secret are required"] = "Chiave e Segreto sono richiesti";
-$a->strings["Update"] = "Aggiorna";
-$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata.";
-$a->strings["Password changed."] = "Password cambiata.";
-$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora.";
-$a->strings["Not valid email."] = "Email non valida.";
-$a->strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo.";
-$a->strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore.";
-$a->strings["Settings updated."] = "Impostazioni aggiornate.";
-$a->strings["Add application"] = "Aggiungi una app";
-$a->strings["Name"] = "Nome";
-$a->strings["Name of application"] = "Nome dell'applicazione";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Redirect";
-$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione.";
-$a->strings["Icon url"] = "Url icona";
-$a->strings["Optional"] = "Opzionale";
-$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione.";
-$a->strings["Connected Apps"] = "App connesse";
-$a->strings["Client key starts with"] = "La client key inizia con";
-$a->strings["No name"] = "Nessun nome";
-$a->strings["Remove authorization"] = "Revoca l'autorizzazione";
-$a->strings["No feature settings configured"] = "Non ci sono funzionalità aggiuntive personalizzabili";
-$a->strings["Feature Settings"] = "Impostazioni aggiuntive";
-$a->strings["Account Settings"] = "Impostazioni account";
-$a->strings["Password Settings"] = "Impostazioni password";
-$a->strings["New Password:"] = "Nuova password:";
-$a->strings["Confirm:"] = "Conferma:";
-$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non cambiare la password";
-$a->strings["Email Address:"] = "Indirizzo email:";
-$a->strings["Remove Account"] = "Elimina l'account";
-$a->strings["Warning: This action is permanent and cannot be reversed."] = "Attenzione: questa azione è permanente e non potrà più essere annullata.";
-$a->strings["Off"] = "Off";
-$a->strings["On"] = "On";
-$a->strings["Additional Features"] = "Funzionalità aggiuntive";
-$a->strings["Connector Settings"] = "Impostazioni del connettore";
-$a->strings["Display Settings"] = "Impostazioni grafiche";
-$a->strings["Display Theme:"] = "Tema per monitor:";
-$a->strings["Mobile Theme:"] = "Tema per dispositivi mobili:";
-$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo";
-$a->strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:";
-$a->strings["Maximum of 100 items"] = "Massimo 100";
-$a->strings["Don't show emoticons"] = "Non mostrare le emoticons";
-$a->strings["Do not view remote profiles in frames"] = "Visualizza gli altri profili come normali pagine web";
-$a->strings["By default open in a sub-window of your own site"] = "Se non selezionato, i profili degli altri utenti sono mostrati dentro un riquadro nella pagina";
-$a->strings["Nobody except yourself"] = "Nessuno tranne te";
-$a->strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso";
-$a->strings["Anybody in your address book"] = "Chiunque tra i miei contatti";
-$a->strings["Anybody on this website"] = "Chiunque su questo sito";
-$a->strings["Anybody in this network"] = "Chiunque su Red";
-$a->strings["Anybody on the internet"] = "Chiunque su internet";
-$a->strings["Publish your default profile in the network directory"] = "Pubblica il mio profilo predefinito sull'elenco pubblico dei canali";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come potenziale amico ai nuovi membri?";
-$a->strings["or"] = "o";
-$a->strings["Your channel address is"] = "L'indirizzo del tuo canale è";
-$a->strings["Channel Settings"] = "Impostazioni del canale";
-$a->strings["Basic Settings"] = "Impostazioni di base";
-$a->strings["Your Timezone:"] = "Il tuo fuso orario:";
-$a->strings["Default Post Location:"] = "Località predefinita:";
-$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:";
-$a->strings["Adult Content"] = "Contenuto per adulti";
-$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (Il contenuto per adulti deve essere marcato con il tag #NSFW - Not Safe For Work)";
-$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy";
-$a->strings["Hide my online presence"] = "Non mostrare la mia presenza online";
-$a->strings["Prevents displaying in your profile that you are online"] = "Non mostra sul tuo profilo che sei online";
-$a->strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate";
-$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)";
-$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)";
-$a->strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico";
-$a->strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in ricezione e invio";
-$a->strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate";
-$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:";
-$a->strings["May reduce spam activity"] = "Serve e ridurre lo spam";
-$a->strings["Default Post Permissions"] = "Permessi predefiniti per gli articoli";
-$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:";
-$a->strings["Useful to reduce spamming"] = "Serve e ridurre lo spam";
-$a->strings["Notification Settings"] = "Impostazioni di notifica";
-$a->strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:";
-$a->strings["accepting a friend request"] = "accetto una nuova amicizia";
-$a->strings["joining a forum/community"] = "entro a far parte di un forum";
-$a->strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo";
-$a->strings["Send a notification email when:"] = "Invia una email di notifica quando:";
-$a->strings["You receive an introduction"] = "Ricevi una richiesta di amicizia";
-$a->strings["Your introductions are confirmed"] = "Le tue richieste di amicizia sono state accettate";
-$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca";
-$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo articolo";
-$a->strings["You receive a private message"] = "Ricevi un messaggio privato";
-$a->strings["You receive a friend suggestion"] = "Ti viene suggerito un amico";
-$a->strings["You are tagged in a post"] = "Sei taggato in un articolo";
-$a->strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un articolo";
-$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate";
-$a->strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account in situazioni particolari";
-$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità aggiuntive)";
+$a->strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri";
+$a->strings["Save Bookmark"] = "Salva segnalibro";
+$a->strings["URL of bookmark"] = "URL del segnalibro";
+$a->strings["Description"] = "Descrizione";
+$a->strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri";
$a->strings["Nothing to import."] = "Non c'è niente da importare.";
$a->strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio server";
$a->strings["Imported file is empty."] = "Il file da importare è vuoto.";
@@ -1491,6 +1508,8 @@ $a->strings["No keywords to match. Please add keywords to your default profile."
$a->strings["is interested in:"] = "interessi personali:";
$a->strings["No matches"] = "Nessun risultato";
$a->strings["invalid target signature"] = "la firma riscontrata non è valida";
+$a->strings["Away"] = "Assente";
+$a->strings["Online"] = "Online";
$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario.";
$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto.";
$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto.";
@@ -1509,6 +1528,7 @@ $a->strings["Private Conversation"] = "Conversazione privata";
$a->strings["Delete conversation"] = "Elimina la conversazione";
$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun sistema per comunicare in modo sicuro. Puoi verificare se eventualmente è possibile rispondere dalla pagina del profilo del mittente.";
$a->strings["Send Reply"] = "Invia la risposta";
+$a->strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta.";
$a->strings["Edit Layout"] = "Modifica il layout";
$a->strings["Delete layout?"] = "Vuoi eliminare questo layout?";
$a->strings["Delete Layout"] = "Elimina il layout";
@@ -1666,6 +1686,7 @@ $a->strings["Scheme Default"] = "Schema predefinito";
$a->strings["silver"] = "argento";
$a->strings["Theme settings"] = "Impostazioni del tema";
$a->strings["Set scheme"] = "Schema";
+$a->strings["Narrow navbar"] = "Barra di navigazione ristretta";
$a->strings["Navigation bar colour"] = "Colore della barra di navigazione";
$a->strings["link colour"] = "colore dei link";
$a->strings["Set font-colour for banner"] = "Colore del font del banner";
diff --git a/view/js/icon_translate.js b/view/js/icon_translate.js
index 45deef05b..930d3b265 100644
--- a/view/js/icon_translate.js
+++ b/view/js/icon_translate.js
@@ -53,4 +53,5 @@ $(document).ready(function() {
$('.icon-circle').addClass('');
$('.icon-bookmark').addClass('');
$('.icon-fullscreen').addClass('');
+ $('.icon-share').addClass('');
});
\ No newline at end of file
diff --git a/view/js/main.js b/view/js/main.js
index fa96596f4..5f88ea9ca 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -535,7 +535,7 @@ function updateConvItems(mode,data) {
$(".wall-item-body").each(function() {
if($(this).height() > 410) {
if(! $(this).hasClass('divmore')) {
- $(this).divgrow({ initialHeight: 400, showBrackets: false });
+ $(this).divgrow({ initialHeight: 400, moreText: aStr['divgrowmore'], lessText: aStr['divgrowless'], showBrackets: false });
$(this).addClass('divmore');
}
}
diff --git a/view/js/mod_connedit.js b/view/js/mod_connedit.js
index 7a33952dc..64240abb8 100644
--- a/view/js/mod_connedit.js
+++ b/view/js/mod_connedit.js
@@ -1,4 +1,20 @@
+$(document).ready(function() {
+ if(typeof(after_following) !== 'undefined' && after_following)
+ connectFullShare();
+
+ $('#id_pending').click(function() {
+ connectFullShare();
+ });
+
+ $('.abook-edit-me').click(function() {
+ $('.abook-permschange').show();
+ $('.abook-permschange').html(aStr['permschange']);
+ });
+
+
+});
+
function connectFullShare() {
$('.abook-edit-me').each(function() {
if(! $(this).is(':disabled'))
@@ -18,6 +34,8 @@ function connectFullShare() {
$('#me_id_perms_view_storage').attr('checked','checked');
$('#me_id_perms_republish').attr('checked','checked');
+ $('.abook-permschange').show();
+ $('.abook-permschange').html(aStr['permschange']);
}
function connectCautiousShare() {
@@ -34,6 +52,9 @@ function connectCautiousShare() {
$('#me_id_perms_send_stream').attr('checked','checked');
$('#me_id_perms_post_comments').attr('checked','checked');
$('#me_id_perms_post_mail').attr('checked','checked');
+ $('.abook-permschange').show();
+ $('.abook-permschange').html(aStr['permschange']);
+
}
function connectForum() {
@@ -54,6 +75,8 @@ function connectForum() {
$('#me_id_perms_post_mail').attr('checked','checked');
$('#me_id_perms_tag_deliver').attr('checked','checked');
$('#me_id_perms_republish').attr('checked','checked');
+ $('.abook-permschange').show();
+ $('.abook-permschange').html(aStr['permschange']);
}
@@ -69,6 +92,8 @@ function connectSoapBox() {
$('#me_id_perms_view_contacts').attr('checked','checked');
$('#me_id_perms_view_storage').attr('checked','checked');
$('#me_id_perms_view_pages').attr('checked','checked');
+ $('.abook-permschange').show();
+ $('.abook-permschange').html(aStr['permschange']);
}
@@ -79,5 +104,8 @@ function connectFollowOnly() {
});
$('#me_id_perms_send_stream').attr('checked','checked');
+ $('.abook-permschange').show();
+ $('.abook-permschange').html(aStr['permschange']);
+
}
diff --git a/view/pdl/mod_channel.pdl b/view/pdl/mod_channel.pdl
index dde8830ee..6cbc0c0e4 100644
--- a/view/pdl/mod_channel.pdl
+++ b/view/pdl/mod_channel.pdl
@@ -4,3 +4,4 @@
[widget=categories][/widget]
[widget=tagcloud_wall][var=limit]24[/var][/widget]
[/region]
+
diff --git a/view/pdl/mod_chat.pdl b/view/pdl/mod_chat.pdl
index 6b1d2a15e..cdc66dd3d 100644
--- a/view/pdl/mod_chat.pdl
+++ b/view/pdl/mod_chat.pdl
@@ -1,3 +1,5 @@
[region=aside]
[widget=profile][/widget]
+[widget=bookmarkedchats][/widget]
+[widget=suggestedchats][/widget]
[/region]
diff --git a/view/pdl/mod_network.pdl b/view/pdl/mod_network.pdl
index 7624ace01..11cadb5aa 100644
--- a/view/pdl/mod_network.pdl
+++ b/view/pdl/mod_network.pdl
@@ -12,4 +12,5 @@
[region=content]
[widget=affinity][/widget]
$content
-[/region]
\ No newline at end of file
+[/region]
+
diff --git a/view/pdl/mod_new_channel.pdl b/view/pdl/mod_new_channel.pdl
index 733bc248a..90026f7fe 100644
--- a/view/pdl/mod_new_channel.pdl
+++ b/view/pdl/mod_new_channel.pdl
@@ -1 +1 @@
-[layout]full[/layout]
+[template]full[/template]
diff --git a/view/pdl/mod_register.pdl b/view/pdl/mod_register.pdl
index 733bc248a..90026f7fe 100644
--- a/view/pdl/mod_register.pdl
+++ b/view/pdl/mod_register.pdl
@@ -1 +1 @@
-[layout]full[/layout]
+[template]full[/template]
diff --git a/view/php/choklet.php b/view/php/choklet.php
new file mode 100644
index 000000000..fcfaf7804
--- /dev/null
+++ b/view/php/choklet.php
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/view/php/default.php b/view/php/default.php
index 3573bf829..87b92161b 100644
--- a/view/php/default.php
+++ b/view/php/default.php
@@ -1,19 +1,21 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/view/php/full.php b/view/php/full.php
index d8643d5a1..99653c06d 100644
--- a/view/php/full.php
+++ b/view/php/full.php
@@ -6,7 +6,8 @@
-
+
+
diff --git a/view/php/theme_init.php b/view/php/theme_init.php
index b6aa5de0f..45eb2fc1d 100644
--- a/view/php/theme_init.php
+++ b/view/php/theme_init.php
@@ -2,8 +2,6 @@
require_once('include/plugin.php');
-head_add_css('library/bootstrap/css/bootstrap-theme.min.css');
-head_add_css('library/bootstrap/css/bootstrap.min.css');
head_add_css('library/fancybox/jquery.fancybox-1.3.4.css');
head_add_css('library/tiptip/tipTip.css');
head_add_css('library/jgrowl/jquery.jgrowl.css');
@@ -11,13 +9,10 @@ head_add_css('library/jslider/css/jslider.css');
head_add_css('library/colorbox/colorbox.css');
head_add_css('view/css/conversation.css');
-head_add_css('view/css/bootstrap-red.css');
head_add_css('view/css/widgets.css');
-head_add_css('library/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css');
+
head_add_js('jquery.js');
-head_add_js('library/bootstrap/js/bootstrap.min.js');
-head_add_js('library/bootstrap/js/bootbox.min.js');
head_add_js('jquery-migrate-1.1.1.js');
//head_add_js('jquery-compat.js');
head_add_js('spin.js');
@@ -42,8 +37,6 @@ head_add_js('crypto.js');
head_add_js('library/jslider/bin/jquery.slider.min.js');
head_add_js('docready.js');
head_add_js('library/colorbox/jquery.colorbox-min.js');
-head_add_js('library/bootstrap-datetimepicker/js/moment.js');
-head_add_js('library/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js');
/**
* Those who require this feature will know what to do with it.
diff --git a/view/pt-br/follow_notify_eml.tpl b/view/pt-br/follow_notify_eml.tpl
index ba07b19da..bc86e5fe1 100644
--- a/view/pt-br/follow_notify_eml.tpl
+++ b/view/pt-br/follow_notify_eml.tpl
@@ -1,14 +1,14 @@
-Dear {{$myname}},
+Caro/a {{$myname}},
-You have a new follower at {{$sitename}} - '{{$requestor}}'.
+Você tem um novo seguidor em {{$sitename}} - '{{$requestor}}'.
-You may visit their profile at {{$url}}.
+Você pode ver o perfil dele em {{$url}}.
-Please login to your site to approve or ignore/cancel the request.
+Por favor, autentique-se no seu site para aprovara ou ignorar/cancelar esta solicitação.
{{$siteurl}}
-Regards,
+Gratidão,
- {{$sitename}} administrator
+ {{$sitename}} administrador
diff --git a/view/pt-br/friend_complete_eml.tpl b/view/pt-br/friend_complete_eml.tpl
index 1c647b994..51adf23e3 100644
--- a/view/pt-br/friend_complete_eml.tpl
+++ b/view/pt-br/friend_complete_eml.tpl
@@ -1,22 +1,23 @@
-Dear {{$username}},
+Caro/a {{$username}},
- Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
-your connection request at '{{$sitename}}'.
+ Boas notícias... '{{$fn}}' em '{{$dfrn_url}}' aceitou
+seu pedido de conexão em '{{$sitename}}'.
-You are now mutual friends and may exchange status updates, photos, and email
-without restriction.
+Vocês agora são amigos mútuos e podem trocar atualizações de status, fotos,
+e email sem restrição.
-Please visit your 'Connnections' page at {{$sitename}} if you wish to make
-any changes to this relationship.
+Por favor, visite sua página 'Conexões' em {{$sitename}} se quiser efetuar
+quaisquer mudanças nesse relacionamento.
{{$siteurl}}
-[For instance, you may create a separate profile with information that is not
-available to the general public - and assign viewing rights to '{{$fn}}'].
+[Por exemplo, você pode criar um perfil à parte com informações que não
+estão disponíveis para o público geral - e conceder permissões de acesso
+para '{{$fn}}'].
-Sincerely,
+Atenciosamente,
- {{$sitename}} Administrator
+ {{$sitename}} Administrador
diff --git a/view/pt-br/intro_complete_eml.tpl b/view/pt-br/intro_complete_eml.tpl
index 2c2428d68..bd20e0a6e 100644
--- a/view/pt-br/intro_complete_eml.tpl
+++ b/view/pt-br/intro_complete_eml.tpl
@@ -1,22 +1,22 @@
-Dear {{$username}},
+Caro/a {{$username}},
- '{{$fn}}' at '{{$dfrn_url}}' has accepted
-your connection request at '{{$sitename}}'.
+ '{{$fn}}' em '{{$dfrn_url}}' aceitou sua solicitação de conexão
+em '{{$sitename}}'.
- '{{$fn}}' has chosen to accept you a "fan", which restricts
-some forms of communication - such as private messaging and some profile
-interactions. If this is a celebrity or community page, these settings were
-applied automatically.
+ '{{$fn}}' optou por aceitá-lo como "fã", o que restringe algumas
+formas de comunicação - como mensagens privadas e certas interações com o
+perfil. Se esta é uma página de celebridade ou comunidade, essa
+configuração é aplicada automaticamente.
- '{{$fn}}' may choose to extend this into a two-way or more permissive
-relationship in the future.
+ '{{$fn}}' pode escolher no futuro transformar essa relação em uma
+mais permissiva, de duas vias.
- You will start receiving public status updates from '{{$fn}}',
-which will appear on your 'Matrix' page at
+ Você começará a receber atualizações de status públicas de '{{$fn}}',
+que aparecerão na sua Matriz em
{{$siteurl}}
-Sincerely,
+Atenciosamente,
- {{$sitename}} Administrator
+ {{$sitename}} Administrador
diff --git a/view/pt-br/lostpass_eml.tpl b/view/pt-br/lostpass_eml.tpl
index 3b79d2791..15a72ffb6 100644
--- a/view/pt-br/lostpass_eml.tpl
+++ b/view/pt-br/lostpass_eml.tpl
@@ -1,32 +1,33 @@
-Dear {{$username}},
- A request was recently received at {{$sitename}} to reset your account
-password. In order to confirm this request, please select the verification link
-below or paste it into your web browser address bar.
+Caro/a {{$username}},
-If you did NOT request this change, please DO NOT follow the link
-provided and ignore and/or delete this email.
+ Uma solicitação para reiniciar a senha da sua conta foi recebida em
+{{$sitename}}. Para confirmar este pedido, acesse o link de verificação clicando
+nele abaixo ou copiando na barra de endereço do seu navegador.
-Your password will not be changed unless we can verify that you
-issued this request.
+Se você NÃO solicitou essa mudança, por favor NÃO SIGA o link a seguir e
+ignore e/ou delete este e-mail.
-Follow this link to verify your identity:
+Sua senha não será modificada até que você confirme este pedido.
+
+Siga este link para confirmá-lo:
{{$reset_link}}
-You will then receive a follow-up message containing the new password.
+Você receberá então um outro e-mail contendo uma nova senha.
-You may change that password from your account settings page after logging in.
+Você poderá trocar essa senha a partir das suas configurações de conta,
+após autenticar-se.
-The login details are as follows:
+Os detalhes de autenticação são os seguintes:
-Site Location: {{$siteurl}}
-Login Name: {{$email}}
+Localização do site: {{$siteurl}}
+Nome: {{$email}}
-Sincerely,
- {{$sitename}} Administrator
+Atenciosamente,
+ {{$sitename}} Administrador
diff --git a/view/pt-br/messages.po b/view/pt-br/messages.po
index 2808d8760..1a9fc7b70 100644
--- a/view/pt-br/messages.po
+++ b/view/pt-br/messages.po
@@ -1,3094 +1,2380 @@
-# FRIENDICA Distributed Social Network
-# Copyright (C) 2010, 2011 Mike Macgirvin
-# This file is distributed under the same license as the Friendika package.
+# Red Matrix Project
+# Copyright (C) 2012-2014 the Red Matrix Project
+# This file is distributed under the same license as the Red package.
#
-# , 2011
-# FULL NAME , 2011
+# Translators:
# Frederico Aracnus , 2011
-# aracnus , 2011.0, 2011
-# aracnus , 2011
+# Frederico Aracnus , 2011
+# Frederico Aracnus , 2011,2013
+# Frederico Aracnus , 2013
+# Frederico Aracnus , 2011
+# FULL NAME , 2011
+# solstag , 2014
+# tony baldwin , 2014
msgid ""
msgstr ""
-"Project-Id-Version: friendika\n"
-"Report-Msgid-Bugs-To: http://bugs.friendika.com/\n"
-"POT-Creation-Date: 2011-05-26 06:46-0700\n"
-"PO-Revision-Date: 2011-06-01 03:07+0000\n"
-"Last-Translator: aracnus \n"
-"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/friendika/team/pt_BR/)\n"
+"Project-Id-Version: Red Matrix\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2014-02-28 00:02-0800\n"
+"PO-Revision-Date: 2014-03-01 05:55+0000\n"
+"Last-Translator: solstag \n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/red-matrix/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1)\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: ../../mod/oexchange.php:27
-msgid "Post successful."
-msgstr "Publicado com sucesso."
+#: ../../include/widgets.php:29 ../../include/contact_widgets.php:87
+msgid "Categories"
+msgstr "Categorias"
-#: ../../mod/crepair.php:42
-msgid "Contact settings applied."
-msgstr "As configurações do contato foram aplicadas."
+#: ../../include/widgets.php:115 ../../include/widgets.php:155
+#: ../../include/Contact.php:107 ../../include/identity.php:643
+#: ../../mod/directory.php:184 ../../mod/match.php:62
+#: ../../mod/dirprofile.php:170 ../../mod/suggest.php:51
+msgid "Connect"
+msgstr "Conectar"
-#: ../../mod/crepair.php:44
-msgid "Contact update failed."
-msgstr "Não foi possível atualizar o contato."
+#: ../../include/widgets.php:117 ../../mod/suggest.php:53
+msgid "Ignore/Hide"
+msgstr "Ignorar/Ocultar"
-#: ../../mod/crepair.php:54 ../../mod/wall_attach.php:43
-#: ../../mod/photos.php:89 ../../mod/photos.php:802 ../../mod/editpost.php:10
-#: ../../mod/install.php:93 ../../mod/notifications.php:56
-#: ../../mod/contacts.php:106 ../../mod/settings.php:15
-#: ../../mod/settings.php:20 ../../mod/settings.php:251
-#: ../../mod/manage.php:75 ../../mod/network.php:6 ../../mod/notes.php:20
-#: ../../mod/attach.php:64 ../../mod/group.php:19
-#: ../../mod/viewconnections.php:21 ../../mod/register.php:27
-#: ../../mod/regmod.php:18 ../../mod/item.php:57 ../../mod/item.php:801
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133
-#: ../../mod/profile_photo.php:144 ../../mod/profile_photo.php:155
-#: ../../mod/message.php:8 ../../mod/message.php:116
-#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8
-#: ../../mod/display.php:138 ../../mod/profiles.php:7
-#: ../../mod/profiles.php:230 ../../mod/invite.php:13 ../../mod/invite.php:54
-#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:242
-#: ../../index.php:256
-msgid "Permission denied."
-msgstr "Permissão negada."
+#: ../../include/widgets.php:123 ../../mod/connections.php:238
+msgid "Suggestions"
+msgstr "Sugestões"
-#: ../../mod/crepair.php:68 ../../mod/contacts.php:214
-#: ../../mod/dfrn_confirm.php:114
-msgid "Contact not found."
-msgstr "O contato não foi encontrado."
+#: ../../include/widgets.php:124
+msgid "See more..."
+msgstr "Veja mais..."
-#: ../../mod/crepair.php:74
-msgid "Repair Contact Settings"
-msgstr "Reparar configurações do contato"
+#: ../../include/widgets.php:146
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Você tem %1$.0f de %2$.0f conexões permitidas."
-#: ../../mod/crepair.php:76
-msgid ""
-"WARNING: This is highly advanced and if you enter incorrect"
-" information your communications with this contact will stop working."
-msgstr ""
-"AVISO: Essas são configurações mais avançadas e caso você "
-"entre com alguma informação incorreta, suas comunicações com este contato "
-"deixarão de funcionar."
+#: ../../include/widgets.php:152
+msgid "Add New Connection"
+msgstr "Adicionar nova conexão"
-#: ../../mod/crepair.php:77
-msgid ""
-"Please use your browser 'Back' button now if you are "
-"uncertain what to do on this page."
-msgstr ""
-"Por favor, use o botão 'Voltar' do seu navegador agora, "
-"caso você não tenha certeza do que está fazendo."
+#: ../../include/widgets.php:153
+msgid "Enter the channel address"
+msgstr "Digite o endereço do canal"
-#: ../../mod/crepair.php:85
-msgid "Name"
-msgstr "Nome"
+#: ../../include/widgets.php:154
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
-#: ../../mod/crepair.php:86
-msgid "Account Nickname"
-msgstr "Identificação da conta"
+#: ../../include/widgets.php:171
+msgid "Notes"
+msgstr "Notas"
-#: ../../mod/crepair.php:87
-msgid "Account URL"
-msgstr "URL da conta"
+#: ../../include/widgets.php:173 ../../include/text.php:759
+#: ../../include/text.php:773 ../../mod/filer.php:36 ../../mod/rbmark.php:28
+#: ../../mod/rbmark.php:98
+msgid "Save"
+msgstr "Salvar"
-#: ../../mod/crepair.php:88
-msgid "Friend Request URL"
-msgstr "URL da requisição de amizade"
+#: ../../include/widgets.php:243
+msgid "Remove term"
+msgstr "Remover termo"
-#: ../../mod/crepair.php:89
-msgid "Friend Confirm URL"
-msgstr "URL da confirmação de amizade"
+#: ../../include/widgets.php:252 ../../include/features.php:52
+msgid "Saved Searches"
+msgstr "Pesquisas salvas"
-#: ../../mod/crepair.php:90
-msgid "Notification Endpoint URL"
-msgstr "URL do ponto final da notificação"
+#: ../../include/widgets.php:253 ../../include/group.php:290
+msgid "add"
+msgstr "adicionar"
-#: ../../mod/crepair.php:91
-msgid "Poll/Feed URL"
-msgstr "URL do inquisidor (poll)/fonte de notícias"
+#: ../../include/widgets.php:283 ../../include/features.php:66
+#: ../../include/contact_widgets.php:53
+msgid "Saved Folders"
+msgstr "Pastas salvas"
-#: ../../mod/crepair.php:100 ../../mod/photos.php:830 ../../mod/photos.php:887
-#: ../../mod/photos.php:1095 ../../mod/photos.php:1135
-#: ../../mod/photos.php:1174 ../../mod/photos.php:1205
-#: ../../mod/install.php:133 ../../mod/contacts.php:264
-#: ../../mod/settings.php:426 ../../mod/manage.php:106 ../../mod/group.php:76
-#: ../../mod/group.php:159 ../../mod/profiles.php:383 ../../mod/invite.php:68
-#: ../../addon/facebook/facebook.php:289
-#: ../../addon/randplace/randplace.php:179 ../../addon/oembed/oembed.php:49
-#: ../../addon/statusnet/statusnet.php:216
-#: ../../addon/statusnet/statusnet.php:230
-#: ../../addon/statusnet/statusnet.php:256
-#: ../../addon/statusnet/statusnet.php:263
-#: ../../addon/statusnet/statusnet.php:285 ../../addon/twitter/twitter.php:156
-#: ../../addon/twitter/twitter.php:175 ../../include/conversation.php:383
-msgid "Submit"
-msgstr "Enviar"
+#: ../../include/widgets.php:286 ../../include/contact_widgets.php:56
+#: ../../include/contact_widgets.php:90
+msgid "Everything"
+msgstr "Tudo"
-#: ../../mod/help.php:27
-msgid "Help:"
-msgstr "Ajuda:"
+#: ../../include/widgets.php:318
+msgid "Archives"
+msgstr "Arquivos"
-#: ../../mod/help.php:31 ../../include/nav.php:64
+#: ../../include/widgets.php:370
+msgid "Refresh"
+msgstr "Atualizar"
+
+#: ../../include/widgets.php:371 ../../mod/connedit.php:389
+msgid "Me"
+msgstr "Eu"
+
+#: ../../include/widgets.php:372 ../../mod/connedit.php:391
+msgid "Best Friends"
+msgstr "Melhores amigos"
+
+#: ../../include/widgets.php:373 ../../include/identity.php:314
+#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:392
+msgid "Friends"
+msgstr "Amigos"
+
+#: ../../include/widgets.php:374
+msgid "Co-workers"
+msgstr "Colegas de trabalho"
+
+#: ../../include/widgets.php:375 ../../mod/connedit.php:393
+msgid "Former Friends"
+msgstr "Amigos afastados"
+
+#: ../../include/widgets.php:376 ../../mod/connedit.php:394
+msgid "Acquaintances"
+msgstr "Conhecidos"
+
+#: ../../include/widgets.php:377
+msgid "Everybody"
+msgstr "Todos"
+
+#: ../../include/widgets.php:409
+msgid "Account settings"
+msgstr "Configurações da conta"
+
+#: ../../include/widgets.php:415
+msgid "Channel settings"
+msgstr "Configurações do canal"
+
+#: ../../include/widgets.php:421
+msgid "Additional features"
+msgstr "Recursos adicionais"
+
+#: ../../include/widgets.php:427
+msgid "Feature settings"
+msgstr "Configurações dos recursos"
+
+#: ../../include/widgets.php:433
+msgid "Display settings"
+msgstr "Configurações de exibição"
+
+#: ../../include/widgets.php:439
+msgid "Connected apps"
+msgstr "Aplicações conectadas"
+
+#: ../../include/widgets.php:445
+msgid "Export channel"
+msgstr "Exportar o canal"
+
+#: ../../include/widgets.php:457
+msgid "Automatic Permissions (Advanced)"
+msgstr "Permissões automáticas (avançado)"
+
+#: ../../include/widgets.php:467
+msgid "Premium Channel Settings"
+msgstr "Configurações de canal premium"
+
+#: ../../include/widgets.php:476 ../../include/features.php:43
+#: ../../mod/sources.php:88
+msgid "Channel Sources"
+msgstr "Fontes do canal"
+
+#: ../../include/widgets.php:487 ../../include/nav.php:181
+#: ../../mod/admin.php:838 ../../mod/admin.php:1043
+msgid "Settings"
+msgstr "Configurações"
+
+#: ../../include/widgets.php:504
+msgid "Check Mail"
+msgstr "Checar mensagens"
+
+#: ../../include/widgets.php:509 ../../include/nav.php:172
+msgid "New Message"
+msgstr "Nova mensagem"
+
+#: ../../include/widgets.php:585
+msgid "Chat Rooms"
+msgstr "Salas de bate-papo"
+
+#: ../../include/widgets.php:603
+msgid "Bookmarked Chatrooms"
+msgstr "Salas de bate-papo guardadas"
+
+#: ../../include/widgets.php:621
+msgid "Suggested Chatrooms"
+msgstr "Salas de bate-papo sugeridas"
+
+#: ../../include/acl_selectors.php:235
+msgid "Visible to everybody"
+msgstr "Visível para todos"
+
+#: ../../include/acl_selectors.php:236
+msgid "show"
+msgstr "exibir"
+
+#: ../../include/acl_selectors.php:237
+msgid "don't show"
+msgstr "não exibir"
+
+#: ../../include/activities.php:39
+msgid " and "
+msgstr " e "
+
+#: ../../include/activities.php:47
+msgid "public profile"
+msgstr "perfil público"
+
+#: ../../include/activities.php:52
+#, php-format
+msgid "%1$s changed %2$s to “%3$s”"
+msgstr "%1$s mudou %2$s para “%3$s”"
+
+#: ../../include/activities.php:53
+#, php-format
+msgid "Visit %1$s's %2$s"
+msgstr "Visite o %2$s de %1$s"
+
+#: ../../include/activities.php:56
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s atualizou %2$s, alterando %3$s."
+
+#: ../../include/nav.php:72 ../../include/nav.php:91 ../../boot.php:1425
+msgid "Logout"
+msgstr "Sair"
+
+#: ../../include/nav.php:72 ../../include/nav.php:91
+msgid "End this session"
+msgstr "Encerrar essa sessão"
+
+#: ../../include/nav.php:75 ../../include/nav.php:125
+msgid "Home"
+msgstr "Ver canal"
+
+#: ../../include/nav.php:75
+msgid "Your posts and conversations"
+msgstr "Suas publicações e conversas"
+
+#: ../../include/nav.php:76 ../../include/conversation.php:933
+#: ../../mod/connedit.php:312 ../../mod/connedit.php:426
+msgid "View Profile"
+msgstr "Ver perfil"
+
+#: ../../include/nav.php:76
+msgid "Your profile page"
+msgstr "A página do seu perfil"
+
+#: ../../include/nav.php:78
+msgid "Edit Profiles"
+msgstr "Editar perfis"
+
+#: ../../include/nav.php:78
+msgid "Manage/Edit profiles"
+msgstr "Administrar/Editar perfis"
+
+#: ../../include/nav.php:79 ../../include/conversation.php:1475
+#: ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Fotos"
+
+#: ../../include/nav.php:79
+msgid "Your photos"
+msgstr "Suas fotos"
+
+#: ../../include/nav.php:80 ../../include/conversation.php:1484
+#: ../../mod/fbrowser.php:114
+msgid "Files"
+msgstr "Arquivos"
+
+#: ../../include/nav.php:80
+msgid "Your files"
+msgstr "Seus arquivos"
+
+#: ../../include/nav.php:81
+msgid "Chat"
+msgstr "Bate-papo"
+
+#: ../../include/nav.php:81
+msgid "Your chatrooms"
+msgstr "Suas salas de bate-papo"
+
+#: ../../include/nav.php:82 ../../include/nav.php:175
+#: ../../include/conversation.php:1506 ../../mod/events.php:354
+msgid "Events"
+msgstr "Eventos"
+
+#: ../../include/nav.php:82
+msgid "Your events"
+msgstr "Seus eventos"
+
+#: ../../include/nav.php:83 ../../include/conversation.php:1514
+msgid "Bookmarks"
+msgstr "Links guardados"
+
+#: ../../include/nav.php:83
+msgid "Your bookmarks"
+msgstr "Seus links guardados"
+
+#: ../../include/nav.php:85 ../../include/conversation.php:1525
+msgid "Webpages"
+msgstr "Páginas web"
+
+#: ../../include/nav.php:85
+msgid "Your webpages"
+msgstr "Suas páginas web"
+
+#: ../../include/nav.php:89 ../../boot.php:1426
+msgid "Login"
+msgstr "Entrar"
+
+#: ../../include/nav.php:89
+msgid "Sign in"
+msgstr "Entrar"
+
+#: ../../include/nav.php:106
+#, php-format
+msgid "%s - click to logout"
+msgstr "%s - clique para sair"
+
+#: ../../include/nav.php:111
+msgid "Click to authenticate to your home hub"
+msgstr "Clique para se autenticar com seu hub de origem"
+
+#: ../../include/nav.php:125
+msgid "Home Page"
+msgstr "Página inicial"
+
+#: ../../include/nav.php:129 ../../mod/register.php:206 ../../boot.php:1402
+msgid "Register"
+msgstr "Registrar"
+
+#: ../../include/nav.php:129
+msgid "Create an account"
+msgstr "Criar uma conta"
+
+#: ../../include/nav.php:134 ../../mod/help.php:60 ../../mod/help.php:65
msgid "Help"
msgstr "Ajuda"
-#: ../../mod/wall_attach.php:57
+#: ../../include/nav.php:134
+msgid "Help and documentation"
+msgstr "Ajuda e documentação"
+
+#: ../../include/nav.php:137
+msgid "Apps"
+msgstr "Aplicações"
+
+#: ../../include/nav.php:137
+msgid "Addon applications, utilities, games"
+msgstr "Aplicações adicionais, utilitários, jogos"
+
+#: ../../include/nav.php:139 ../../include/text.php:757
+#: ../../include/text.php:771 ../../mod/search.php:29
+msgid "Search"
+msgstr "Pesquisar"
+
+#: ../../include/nav.php:139
+msgid "Search site content"
+msgstr "Pesquisar o conteúdo do site"
+
+#: ../../include/nav.php:142 ../../mod/directory.php:211
+msgid "Directory"
+msgstr "Diretório"
+
+#: ../../include/nav.php:142
+msgid "Channel Locator"
+msgstr "Localizador de canais"
+
+#: ../../include/nav.php:153
+msgid "Matrix"
+msgstr "Matriz"
+
+#: ../../include/nav.php:153
+msgid "Your matrix"
+msgstr "Sua matriz"
+
+#: ../../include/nav.php:154
+msgid "Mark all matrix notifications seen"
+msgstr "Marcar todas as notificações da matriz como vistas"
+
+#: ../../include/nav.php:156
+msgid "Channel Home"
+msgstr "Página inicial do canal"
+
+#: ../../include/nav.php:156
+msgid "Channel home"
+msgstr "Página inicial do canal"
+
+#: ../../include/nav.php:157
+msgid "Mark all channel notifications seen"
+msgstr "Marcar todas as notificações de canais como vistas"
+
+#: ../../include/nav.php:160
+msgid "Intros"
+msgstr "Apresentações"
+
+#: ../../include/nav.php:160 ../../mod/connections.php:244
+msgid "New Connections"
+msgstr "Novas conexões"
+
+#: ../../include/nav.php:163
+msgid "Notices"
+msgstr "Notificações"
+
+#: ../../include/nav.php:163
+msgid "Notifications"
+msgstr "Notificações"
+
+#: ../../include/nav.php:164
+msgid "See all notifications"
+msgstr "Ver todas as notificações"
+
+#: ../../include/nav.php:165
+msgid "Mark all system notifications seen"
+msgstr "Marcar todas as notificações de sistema como vistas"
+
+#: ../../include/nav.php:167
+msgid "Mail"
+msgstr "Mensagens"
+
+#: ../../include/nav.php:167
+msgid "Private mail"
+msgstr "Mensagens privadas"
+
+#: ../../include/nav.php:168
+msgid "See all private messages"
+msgstr "Ver todas as mensagens privadas"
+
+#: ../../include/nav.php:169
+msgid "Mark all private messages seen"
+msgstr "Marcar todas as mensagens privadas como vistas"
+
+#: ../../include/nav.php:170
+msgid "Inbox"
+msgstr "Recebidas"
+
+#: ../../include/nav.php:171
+msgid "Outbox"
+msgstr "Enviadas"
+
+#: ../../include/nav.php:175
+msgid "Event Calendar"
+msgstr "Agenda de eventos"
+
+#: ../../include/nav.php:176
+msgid "See all events"
+msgstr "Ver todos os eventos"
+
+#: ../../include/nav.php:177
+msgid "Mark all events seen"
+msgstr "Marcar todos os eventos como vistos"
+
+#: ../../include/nav.php:179
+msgid "Channel Select"
+msgstr "Seleção de canal"
+
+#: ../../include/nav.php:179
+msgid "Manage Your Channels"
+msgstr "Gerencie os seus canais"
+
+#: ../../include/nav.php:181
+msgid "Account/Channel Settings"
+msgstr "Configurações da conta/canal"
+
+#: ../../include/nav.php:183 ../../mod/connections.php:351
+msgid "Connections"
+msgstr "Conexões"
+
+#: ../../include/nav.php:183
+msgid "Manage/Edit Friends and Connections"
+msgstr "Gerenciar/editar os amigos e as conexões"
+
+#: ../../include/nav.php:190 ../../mod/admin.php:112
+msgid "Admin"
+msgstr "Admin"
+
+#: ../../include/nav.php:190
+msgid "Site Setup and Configuration"
+msgstr "Configuração do site"
+
+#: ../../include/nav.php:216
+msgid "Nothing new here"
+msgstr "Nada de novo aqui"
+
+#: ../../include/nav.php:221
+msgid "Please wait..."
+msgstr "Por favor, aguarde..."
+
+#: ../../include/text.php:315
+msgid "prev"
+msgstr "anterior"
+
+#: ../../include/text.php:317
+msgid "first"
+msgstr "primeiro"
+
+#: ../../include/text.php:346
+msgid "last"
+msgstr "último"
+
+#: ../../include/text.php:349
+msgid "next"
+msgstr "próximo"
+
+#: ../../include/text.php:361
+msgid "older"
+msgstr "mais antigo"
+
+#: ../../include/text.php:363
+msgid "newer"
+msgstr "mais recente"
+
+#: ../../include/text.php:675
+msgid "No connections"
+msgstr "Nenhuma conexão"
+
+#: ../../include/text.php:686
+#, php-format
+msgid "%d Connection"
+msgid_plural "%d Connections"
+msgstr[0] "%d conexão"
+msgstr[1] "%d conexões"
+
+#: ../../include/text.php:698
+msgid "View Connections"
+msgstr "Ver conexões"
+
+#: ../../include/text.php:839
+msgid "poke"
+msgstr "cutucar"
+
+#: ../../include/text.php:839 ../../include/conversation.php:240
+msgid "poked"
+msgstr "cutucado"
+
+#: ../../include/text.php:840
+msgid "ping"
+msgstr "pingar"
+
+#: ../../include/text.php:840
+msgid "pinged"
+msgstr "pingou"
+
+#: ../../include/text.php:841
+msgid "prod"
+msgstr "espetar"
+
+#: ../../include/text.php:841
+msgid "prodded"
+msgstr "espetou"
+
+#: ../../include/text.php:842
+msgid "slap"
+msgstr "estapear"
+
+#: ../../include/text.php:842
+msgid "slapped"
+msgstr "estapeou"
+
+#: ../../include/text.php:843
+msgid "finger"
+msgstr "dar um toque"
+
+#: ../../include/text.php:843
+msgid "fingered"
+msgstr "deu um toque"
+
+#: ../../include/text.php:844
+msgid "rebuff"
+msgstr "rebater"
+
+#: ../../include/text.php:844
+msgid "rebuffed"
+msgstr "rebateu"
+
+#: ../../include/text.php:856
+msgid "happy"
+msgstr "feliz"
+
+#: ../../include/text.php:857
+msgid "sad"
+msgstr "triste"
+
+#: ../../include/text.php:858
+msgid "mellow"
+msgstr "suave"
+
+#: ../../include/text.php:859
+msgid "tired"
+msgstr "cansado"
+
+#: ../../include/text.php:860
+msgid "perky"
+msgstr "animado/a"
+
+#: ../../include/text.php:861
+msgid "angry"
+msgstr "nervoso"
+
+#: ../../include/text.php:862
+msgid "stupified"
+msgstr "embasbacado/a"
+
+#: ../../include/text.php:863
+msgid "puzzled"
+msgstr "confuso/a"
+
+#: ../../include/text.php:864
+msgid "interested"
+msgstr "interessado"
+
+#: ../../include/text.php:865
+msgid "bitter"
+msgstr "amargo/a"
+
+#: ../../include/text.php:866
+msgid "cheerful"
+msgstr "alegre"
+
+#: ../../include/text.php:867
+msgid "alive"
+msgstr "vivo"
+
+#: ../../include/text.php:868
+msgid "annoyed"
+msgstr "aborrecido"
+
+#: ../../include/text.php:869
+msgid "anxious"
+msgstr "ansioso"
+
+#: ../../include/text.php:870
+msgid "cranky"
+msgstr "irritado/a"
+
+#: ../../include/text.php:871
+msgid "disturbed"
+msgstr "perturbado"
+
+#: ../../include/text.php:872
+msgid "frustrated"
+msgstr "frustrado"
+
+#: ../../include/text.php:873
+msgid "motivated"
+msgstr "motivado"
+
+#: ../../include/text.php:874
+msgid "relaxed"
+msgstr "relaxado"
+
+#: ../../include/text.php:875
+msgid "surprised"
+msgstr "surpreso"
+
+#: ../../include/text.php:1036
+msgid "Monday"
+msgstr "Segunda"
+
+#: ../../include/text.php:1036
+msgid "Tuesday"
+msgstr "Terça"
+
+#: ../../include/text.php:1036
+msgid "Wednesday"
+msgstr "Quarta"
+
+#: ../../include/text.php:1036
+msgid "Thursday"
+msgstr "Quinta"
+
+#: ../../include/text.php:1036
+msgid "Friday"
+msgstr "Sexta"
+
+#: ../../include/text.php:1036
+msgid "Saturday"
+msgstr "Sábado"
+
+#: ../../include/text.php:1036
+msgid "Sunday"
+msgstr "Domingo"
+
+#: ../../include/text.php:1040
+msgid "January"
+msgstr "Janeiro"
+
+#: ../../include/text.php:1040
+msgid "February"
+msgstr "Fevereiro"
+
+#: ../../include/text.php:1040
+msgid "March"
+msgstr "Março"
+
+#: ../../include/text.php:1040
+msgid "April"
+msgstr "Abril"
+
+#: ../../include/text.php:1040
+msgid "May"
+msgstr "Maio"
+
+#: ../../include/text.php:1040
+msgid "June"
+msgstr "Junho"
+
+#: ../../include/text.php:1040
+msgid "July"
+msgstr "Julho"
+
+#: ../../include/text.php:1040
+msgid "August"
+msgstr "Agosto"
+
+#: ../../include/text.php:1040
+msgid "September"
+msgstr "Setembro"
+
+#: ../../include/text.php:1040
+msgid "October"
+msgstr "Outubro"
+
+#: ../../include/text.php:1040
+msgid "November"
+msgstr "Novembro"
+
+#: ../../include/text.php:1040
+msgid "December"
+msgstr "Dezembro"
+
+#: ../../include/text.php:1118
+msgid "unknown.???"
+msgstr "desconhecido.???"
+
+#: ../../include/text.php:1119
+msgid "bytes"
+msgstr "bytes"
+
+#: ../../include/text.php:1154
+msgid "remove category"
+msgstr "remover categoria"
+
+#: ../../include/text.php:1176
+msgid "remove from file"
+msgstr "remover do arquivo"
+
+#: ../../include/text.php:1234 ../../include/text.php:1246
+msgid "Click to open/close"
+msgstr "Clique para abrir/fechar"
+
+#: ../../include/text.php:1401 ../../mod/events.php:332
+msgid "link to source"
+msgstr "Link para a origem"
+
+#: ../../include/text.php:1420
+msgid "Select a page layout: "
+msgstr "Selecione um layout de página:"
+
+#: ../../include/text.php:1423 ../../include/text.php:1488
+msgid "default"
+msgstr "default"
+
+#: ../../include/text.php:1459
+msgid "Page content type: "
+msgstr "Tipo de conteúdo da página: "
+
+#: ../../include/text.php:1500
+msgid "Select an alternate language"
+msgstr "Selecione um idioma alternativo"
+
+#: ../../include/text.php:1621 ../../include/conversation.php:117
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:45
+msgid "photo"
+msgstr "foto"
+
+#: ../../include/text.php:1624 ../../include/conversation.php:120
+#: ../../mod/tagger.php:49
+msgid "event"
+msgstr "evento"
+
+#: ../../include/text.php:1627 ../../include/conversation.php:145
+#: ../../mod/like.php:103 ../../mod/subthread.php:89 ../../mod/tagger.php:53
+msgid "status"
+msgstr "status"
+
+#: ../../include/text.php:1629 ../../include/conversation.php:147
+#: ../../mod/tagger.php:55
+msgid "comment"
+msgstr "comentário"
+
+#: ../../include/text.php:1634
+msgid "activity"
+msgstr "atividade"
+
+#: ../../include/text.php:1891
+msgid "Design"
+msgstr "Design"
+
+#: ../../include/text.php:1893
+msgid "Blocks"
+msgstr "Blocos"
+
+#: ../../include/text.php:1894
+msgid "Menus"
+msgstr "Menus"
+
+#: ../../include/text.php:1895
+msgid "Layouts"
+msgstr "Layouts"
+
+#: ../../include/text.php:1896
+msgid "Pages"
+msgstr "Páginas"
+
+#: ../../include/bbcode.php:128 ../../include/bbcode.php:601
+#: ../../include/bbcode.php:604 ../../include/bbcode.php:609
+#: ../../include/bbcode.php:612 ../../include/bbcode.php:615
+#: ../../include/bbcode.php:618 ../../include/bbcode.php:623
+#: ../../include/bbcode.php:626 ../../include/bbcode.php:631
+#: ../../include/bbcode.php:634 ../../include/bbcode.php:637
+#: ../../include/bbcode.php:640
+msgid "Image/photo"
+msgstr "Imagem/foto"
+
+#: ../../include/bbcode.php:163 ../../include/bbcode.php:651
+msgid "Encrypted content"
+msgstr "Conteúdo criptografado"
+
+#: ../../include/bbcode.php:170
+msgid "QR code"
+msgstr "código QR"
+
+#: ../../include/bbcode.php:213
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s escreveu a seguinte %2$s %3$s"
+
+#: ../../include/bbcode.php:215
+msgid "post"
+msgstr "publicação"
+
+#: ../../include/bbcode.php:569 ../../include/bbcode.php:589
+msgid "$1 wrote:"
+msgstr "$1 escreveu:"
+
+#: ../../include/Contact.php:123
+msgid "New window"
+msgstr "Nova janela"
+
+#: ../../include/Contact.php:124
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Abre a localização selecionada em outra aba ou janela"
+
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Recursos gerais"
+
+#: ../../include/features.php:25
+msgid "Content Expiration"
+msgstr "Expiração de conteúdo"
+
+#: ../../include/features.php:25
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Remover publicações/comentários e/ou mensagens privadas num momento futuro."
+
+#: ../../include/features.php:26
+msgid "Multiple Profiles"
+msgstr "Múltiplos perfis"
+
+#: ../../include/features.php:26
+msgid "Ability to create multiple profiles"
+msgstr "Possibilidade de criar múltiplos perfis"
+
+#: ../../include/features.php:27
+msgid "Web Pages"
+msgstr "Páginas web"
+
+#: ../../include/features.php:27
+msgid "Provide managed web pages on your channel"
+msgstr "Fornece páginas web gerenciáveis no seu canal"
+
+#: ../../include/features.php:28
+msgid "Private Notes"
+msgstr "Notas privadas"
+
+#: ../../include/features.php:28
+msgid "Enables a tool to store notes and reminders"
+msgstr "Habilita uma ferramenta para guardar notas e lembretes"
+
+#: ../../include/features.php:33
+msgid "Extended Identity Sharing"
+msgstr "Compartilhamento estendido de identidade"
+
+#: ../../include/features.php:33
+msgid ""
+"Share your identity with all websites on the internet. When disabled, "
+"identity is only shared with sites in the matrix."
+msgstr "Compartilhar sua identidade com todos os websites na internet. Quando desabilitado, sua identidade é compartilhada apenas com outros sites na matrix."
+
+#: ../../include/features.php:34
+msgid "Expert Mode"
+msgstr "Modo Expert"
+
+#: ../../include/features.php:34
+msgid "Enable Expert Mode to provide advanced configuration options"
+msgstr "O Modo Expert fornece opções de configurações avançadas"
+
+#: ../../include/features.php:35
+msgid "Premium Channel"
+msgstr "Canal premium"
+
+#: ../../include/features.php:35
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
+msgstr "Permite definir restrições e termos para aqueles que se conectarem ao seu canal"
+
+#: ../../include/features.php:40
+msgid "Post Composition Features"
+msgstr "Recursos de composição de publicações"
+
+#: ../../include/features.php:41
+msgid "Richtext Editor"
+msgstr "Editor richtext"
+
+#: ../../include/features.php:41
+msgid "Enable richtext editor"
+msgstr "Habilita o editor richtext"
+
+#: ../../include/features.php:42
+msgid "Post Preview"
+msgstr "Pré-visualizar a publicação"
+
+#: ../../include/features.php:42
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permite visualizar publicações e comentários antes de publicá-los"
+
+#: ../../include/features.php:43
+msgid "Automatically import channel content from other channels or feeds"
+msgstr "Importar automaticamente conteúdo de outros canais ou fontes"
+
+#: ../../include/features.php:44
+msgid "Even More Encryption"
+msgstr "Mais encriptação ainda"
+
+#: ../../include/features.php:44
+msgid ""
+"Allow optional encryption of content end-to-end with a shared secret key"
+msgstr "Permitir encriptação opcional de conteúdo, ponta-a-ponta com uma chave secreta compartilhada"
+
+#: ../../include/features.php:49
+msgid "Network and Stream Filtering"
+msgstr "Filtragem de rede e fluxo"
+
+#: ../../include/features.php:50
+msgid "Search by Date"
+msgstr "Pesquisar por data"
+
+#: ../../include/features.php:50
+msgid "Ability to select posts by date ranges"
+msgstr "capacidade de selecionar publicações por intervalos de datas"
+
+#: ../../include/features.php:51
+msgid "Collections Filter"
+msgstr "Filtros de coleções"
+
+#: ../../include/features.php:51
+msgid "Enable widget to display Network posts only from selected collections"
+msgstr "Habilita widget para exibir publicações da rede apenas para determinadas coleções"
+
+#: ../../include/features.php:52
+msgid "Save search terms for re-use"
+msgstr "Termos de pesquisa salvos para reutilização"
+
+#: ../../include/features.php:53
+msgid "Network Personal Tab"
+msgstr "Aba de interações na rede"
+
+#: ../../include/features.php:53
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Habilita uma aba para exibir apenas publicações da rede com as quais você interagiu"
+
+#: ../../include/features.php:54
+msgid "Network New Tab"
+msgstr "Aba de novidades da rede"
+
+#: ../../include/features.php:54
+msgid "Enable tab to display all new Network activity"
+msgstr "Habilita uma aba para exibir todas as novas atividades da rede"
+
+#: ../../include/features.php:55
+msgid "Affinity Tool"
+msgstr "Ferramenta de afinidade"
+
+#: ../../include/features.php:55
+msgid "Filter stream activity by depth of relationships"
+msgstr "Filtra o fluxo de atividades de acordo com o nível do relacionamento"
+
+#: ../../include/features.php:56
+msgid "Suggest Channels"
+msgstr "Sugerir canais"
+
+#: ../../include/features.php:56
+msgid "Show channel suggestions"
+msgstr "Exibir sugestões de canais"
+
+#: ../../include/features.php:61
+msgid "Post/Comment Tools"
+msgstr "Ferramentas de publicação/comentário"
+
+#: ../../include/features.php:63
+msgid "Edit Sent Posts"
+msgstr "Editar publicações enviadas"
+
+#: ../../include/features.php:63
+msgid "Edit and correct posts and comments after sending"
+msgstr "Edita e corrige publicações e comentários após terem sido enviados"
+
+#: ../../include/features.php:64
+msgid "Tagging"
+msgstr "Etiquetagem"
+
+#: ../../include/features.php:64
+msgid "Ability to tag existing posts"
+msgstr "Possibilidade de colocar etiquetas em publicações existentes"
+
+#: ../../include/features.php:65
+msgid "Post Categories"
+msgstr "Categorizar publicações"
+
+#: ../../include/features.php:65
+msgid "Add categories to your posts"
+msgstr "Adiciona categorias às suas publicações"
+
+#: ../../include/features.php:66
+msgid "Ability to file posts under folders"
+msgstr "Possibilidade de arquivar publicações em pastas"
+
+#: ../../include/features.php:67
+msgid "Dislike Posts"
+msgstr "Desgostar de publicações"
+
+#: ../../include/features.php:67
+msgid "Ability to dislike posts/comments"
+msgstr "Possibilidade de desgostar de publicações/comentários"
+
+#: ../../include/features.php:68
+msgid "Star Posts"
+msgstr "Destacar publicações"
+
+#: ../../include/features.php:68
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Possibilidade de marcar publicações em destaque com uma estrela indicadora"
+
+#: ../../include/features.php:69
+msgid "Tag Cloud"
+msgstr "Nuvem de etiquetas"
+
+#: ../../include/features.php:69
+msgid "Provide a personal tag cloud on your channel page"
+msgstr "Fornece uma nuvem de etiquetas pessoais à página do seu canal"
+
+#: ../../include/contact_selectors.php:30
+msgid "Unknown | Not categorised"
+msgstr "Desconhecido | Não categorizado"
+
+#: ../../include/contact_selectors.php:31
+msgid "Block immediately"
+msgstr "Bloquear imediatamente"
+
+#: ../../include/contact_selectors.php:32
+msgid "Shady, spammer, self-marketer"
+msgstr "Suspeito, spammer, propagandista"
+
+#: ../../include/contact_selectors.php:33
+msgid "Known to me, but no opinion"
+msgstr "Eu conheço, mas não tenho opinião a respeito"
+
+#: ../../include/contact_selectors.php:34
+msgid "OK, probably harmless"
+msgstr "Ok, provavelmente inofensivo"
+
+#: ../../include/contact_selectors.php:35
+msgid "Reputable, has my trust"
+msgstr "Boa reputação, tem minha confiança"
+
+#: ../../include/contact_selectors.php:54
+msgid "Frequently"
+msgstr "Frequentemente"
+
+#: ../../include/contact_selectors.php:55
+msgid "Hourly"
+msgstr "De hora em hora"
+
+#: ../../include/contact_selectors.php:56
+msgid "Twice daily"
+msgstr "Duas vezes ao dia"
+
+#: ../../include/contact_selectors.php:57
+msgid "Daily"
+msgstr "Diariamente"
+
+#: ../../include/contact_selectors.php:58
+msgid "Weekly"
+msgstr "Semanalmente"
+
+#: ../../include/contact_selectors.php:59
+msgid "Monthly"
+msgstr "Mensalmente"
+
+#: ../../include/contact_selectors.php:74
+msgid "Friendica"
+msgstr "Friendica"
+
+#: ../../include/contact_selectors.php:75
+msgid "OStatus"
+msgstr "OStatus"
+
+#: ../../include/contact_selectors.php:76
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
+
+#: ../../include/contact_selectors.php:77 ../../mod/admin.php:742
+#: ../../mod/admin.php:751 ../../boot.php:1428
+msgid "Email"
+msgstr "E-mail"
+
+#: ../../include/contact_selectors.php:78
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../include/contact_selectors.php:79
+msgid "Facebook"
+msgstr "Facebook"
+
+#: ../../include/contact_selectors.php:80
+msgid "Zot!"
+msgstr "Zot!"
+
+#: ../../include/contact_selectors.php:81
+msgid "LinkedIn"
+msgstr "LinkedIn"
+
+#: ../../include/contact_selectors.php:82
+msgid "XMPP/IM"
+msgstr "XMPP/MI"
+
+#: ../../include/contact_selectors.php:83
+msgid "MySpace"
+msgstr "MySpace"
+
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Miscelânea"
+
+#: ../../include/datetime.php:152 ../../include/datetime.php:284
+msgid "year"
+msgstr "ano"
+
+#: ../../include/datetime.php:157 ../../include/datetime.php:285
+msgid "month"
+msgstr "mês"
+
+#: ../../include/datetime.php:162 ../../include/datetime.php:287
+msgid "day"
+msgstr "dia"
+
+#: ../../include/datetime.php:275
+msgid "never"
+msgstr "nunca"
+
+#: ../../include/datetime.php:281
+msgid "less than a second ago"
+msgstr "menos de um segundo atrás"
+
+#: ../../include/datetime.php:284
+msgid "years"
+msgstr "anos"
+
+#: ../../include/datetime.php:285
+msgid "months"
+msgstr "meses"
+
+#: ../../include/datetime.php:286
+msgid "week"
+msgstr "semana"
+
+#: ../../include/datetime.php:286
+msgid "weeks"
+msgstr "semanas"
+
+#: ../../include/datetime.php:287
+msgid "days"
+msgstr "dias"
+
+#: ../../include/datetime.php:288
+msgid "hour"
+msgstr "hora"
+
+#: ../../include/datetime.php:288
+msgid "hours"
+msgstr "horas"
+
+#: ../../include/datetime.php:289
+msgid "minute"
+msgstr "minuto"
+
+#: ../../include/datetime.php:289
+msgid "minutes"
+msgstr "minutos"
+
+#: ../../include/datetime.php:290
+msgid "second"
+msgstr "segundo"
+
+#: ../../include/datetime.php:290
+msgid "seconds"
+msgstr "segundos"
+
+#: ../../include/datetime.php:299
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s atrás"
+
+#: ../../include/dba/dba_driver.php:50
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
+
+#: ../../include/event.php:11 ../../include/bb2diaspora.php:433
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
+
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:439
+msgid "Starts:"
+msgstr "Início:"
+
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:447
+msgid "Finishes:"
+msgstr "Fim:"
+
+#: ../../include/event.php:40 ../../include/identity.php:694
+#: ../../include/bb2diaspora.php:455 ../../mod/events.php:462
+#: ../../mod/directory.php:157 ../../mod/dirprofile.php:111
+msgid "Location:"
+msgstr "Localização:"
+
+#: ../../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 "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
+
+#: ../../include/group.php:223
+msgid "Default privacy group for new contacts"
+msgstr "Grupo de privacidade padrão para novos contatos"
+
+#: ../../include/group.php:242 ../../mod/admin.php:751
+msgid "All Channels"
+msgstr "Todos os canais"
+
+#: ../../include/group.php:264
+msgid "edit"
+msgstr "editar"
+
+#: ../../include/group.php:285
+msgid "Collections"
+msgstr "Coleções"
+
+#: ../../include/group.php:286
+msgid "Edit collection"
+msgstr "Editar coleção"
+
+#: ../../include/group.php:287
+msgid "Create a new collection"
+msgstr "Criar uma nova coleção"
+
+#: ../../include/group.php:288
+msgid "Channels not in any collection"
+msgstr "Canais que não estão em nenhuma coleção"
+
+#: ../../include/js_strings.php:5
+msgid "Delete this item?"
+msgstr "Excluir este item?"
+
+#: ../../include/js_strings.php:6 ../../include/ItemObject.php:547
+#: ../../mod/photos.php:993 ../../mod/photos.php:1080
+msgid "Comment"
+msgstr "Comentar"
+
+#: ../../include/js_strings.php:7 ../../include/ItemObject.php:281
+#: ../../include/contact_widgets.php:125
+msgid "show more"
+msgstr "exibir mais"
+
+#: ../../include/js_strings.php:8
+msgid "show fewer"
+msgstr "exibir menos"
+
+#: ../../include/js_strings.php:9
+msgid "+ Show More"
+msgstr "+ Exibir Mais"
+
+#: ../../include/js_strings.php:10
+msgid "- Show Less"
+msgstr "- Exibir Menos"
+
+#: ../../include/js_strings.php:11
+msgid "Password too short"
+msgstr "A senha é muito curta"
+
+#: ../../include/js_strings.php:12
+msgid "Passwords do not match"
+msgstr "As senhas não correspondem"
+
+#: ../../include/js_strings.php:13 ../../mod/photos.php:39
+msgid "everybody"
+msgstr "todos"
+
+#: ../../include/js_strings.php:14
+msgid "Secret Passphrase"
+msgstr "Frase secreta"
+
+#: ../../include/js_strings.php:15
+msgid "Passphrase hint"
+msgstr "Dica da frase secreta"
+
+#: ../../include/js_strings.php:17
+msgid "timeago.prefixAgo"
+msgstr "timeago.prefixAgo"
+
+#: ../../include/js_strings.php:18
+msgid "timeago.prefixFromNow"
+msgstr "timeago.prefixFromNow"
+
+#: ../../include/js_strings.php:19
+msgid "ago"
+msgstr "atrás"
+
+#: ../../include/js_strings.php:20
+msgid "from now"
+msgstr "de agora"
+
+#: ../../include/js_strings.php:21
+msgid "less than a minute"
+msgstr "menos de um minuto"
+
+#: ../../include/js_strings.php:22
+msgid "about a minute"
+msgstr "aproximadamente um minuto"
+
+#: ../../include/js_strings.php:23
+#, php-format
+msgid "%d minutes"
+msgstr "%d minutos"
+
+#: ../../include/js_strings.php:24
+msgid "about an hour"
+msgstr "aproximadamente uma hora"
+
+#: ../../include/js_strings.php:25
+#, php-format
+msgid "about %d hours"
+msgstr "aproximadamente %d horas"
+
+#: ../../include/js_strings.php:26
+msgid "a day"
+msgstr "um dia"
+
+#: ../../include/js_strings.php:27
+#, php-format
+msgid "%d days"
+msgstr "%d dias"
+
+#: ../../include/js_strings.php:28
+msgid "about a month"
+msgstr "aproximadamente um mês"
+
+#: ../../include/js_strings.php:29
+#, php-format
+msgid "%d months"
+msgstr "%d meses"
+
+#: ../../include/js_strings.php:30
+msgid "about a year"
+msgstr "aproximadamente um ano"
+
+#: ../../include/js_strings.php:31
+#, php-format
+msgid "%d years"
+msgstr "%d anos"
+
+#: ../../include/js_strings.php:32
+msgid " "
+msgstr " "
+
+#: ../../include/js_strings.php:33
+msgid "timeago.numbers"
+msgstr "timeago.numbers"
+
+#: ../../include/message.php:18
+msgid "No recipient provided."
+msgstr "Falta o destinatário."
+
+#: ../../include/message.php:23
+msgid "[no subject]"
+msgstr "[sem assunto]"
+
+#: ../../include/message.php:42
+msgid "Unable to determine sender."
+msgstr "Não foi possível determinar o remetente."
+
+#: ../../include/message.php:143
+msgid "Stored post could not be verified."
+msgstr "Não foi possível verificar a publicação armazenada."
+
+#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51
+#: ../../mod/profile_photo.php:78 ../../mod/profile_photo.php:225
+#: ../../mod/profile_photo.php:336 ../../mod/photos.php:91
+#: ../../mod/photos.php:656 ../../mod/photos.php:678
+msgid "Profile Photos"
+msgstr "Fotos do perfil"
+
+#: ../../include/attach.php:119 ../../include/attach.php:166
+#: ../../include/attach.php:229 ../../include/attach.php:243
+#: ../../include/attach.php:283 ../../include/attach.php:297
+#: ../../include/attach.php:322 ../../include/attach.php:513
+#: ../../include/attach.php:585 ../../include/chat.php:113
+#: ../../include/photos.php:15 ../../include/items.php:3575
+#: ../../mod/common.php:35 ../../mod/events.php:140 ../../mod/thing.php:247
+#: ../../mod/thing.php:263 ../../mod/thing.php:298 ../../mod/invite.php:13
+#: ../../mod/invite.php:104 ../../mod/settings.php:492 ../../mod/menu.php:44
+#: ../../mod/webpages.php:40 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/bookmarks.php:46 ../../mod/item.php:182 ../../mod/item.php:190
+#: ../../mod/chat.php:89 ../../mod/chat.php:94
+#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
+#: ../../mod/delegate.php:6 ../../mod/mitem.php:73 ../../mod/group.php:9
+#: ../../mod/viewsrc.php:12 ../../mod/editpost.php:13
+#: ../../mod/connedit.php:182 ../../mod/layouts.php:27
+#: ../../mod/layouts.php:39 ../../mod/page.php:30 ../../mod/page.php:80
+#: ../../mod/network.php:12 ../../mod/profiles.php:152
+#: ../../mod/profiles.php:453 ../../mod/sources.php:66 ../../mod/setup.php:200
+#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97
+#: ../../mod/achievements.php:27 ../../mod/manage.php:6 ../../mod/mail.php:108
+#: ../../mod/editlayout.php:48 ../../mod/profile_photo.php:187
+#: ../../mod/profile_photo.php:200 ../../mod/connections.php:169
+#: ../../mod/notifications.php:66 ../../mod/blocks.php:29
+#: ../../mod/blocks.php:44 ../../mod/editwebpage.php:44
+#: ../../mod/editwebpage.php:83 ../../mod/poke.php:128
+#: ../../mod/channel.php:88 ../../mod/channel.php:188
+#: ../../mod/channel.php:231 ../../mod/fsuggest.php:78
+#: ../../mod/editblock.php:48 ../../mod/filestorage.php:10
+#: ../../mod/filestorage.php:59 ../../mod/filestorage.php:75
+#: ../../mod/filestorage.php:98 ../../mod/suggest.php:26
+#: ../../mod/message.php:16 ../../mod/register.php:68 ../../mod/regmod.php:18
+#: ../../mod/authtest.php:13 ../../mod/photos.php:68 ../../mod/photos.php:526
+#: ../../mod/mood.php:119 ../../index.php:176 ../../index.php:351
+msgid "Permission denied."
+msgstr "Permissão negada."
+
+#: ../../include/attach.php:224 ../../include/attach.php:278
+msgid "Item was not found."
+msgstr "O item não foi encontrado."
+
+#: ../../include/attach.php:335
+msgid "No source file."
+msgstr "Nenhum arquivo de origem."
+
+#: ../../include/attach.php:352
+msgid "Cannot locate file to replace"
+msgstr "Não foi possível locar o arquivo a ser substituído"
+
+#: ../../include/attach.php:370
+msgid "Cannot locate file to revise/update"
+msgstr "Não foi possível localizar o arquivo a ser revisado/atualizado"
+
+#: ../../include/attach.php:381
#, php-format
msgid "File exceeds size limit of %d"
msgstr "O arquivo excedeu o tamanho limite de %d"
-#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98
-msgid "File upload failed."
-msgstr "Não foi possível enviar o arquivo."
-
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:41
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "A etiqueta foi removida"
-
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Remover a etiqueta de item"
-
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecione uma etiqueta para remover: "
-
-#: ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Remover"
-
-#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516
+#: ../../include/attach.php:393
#, php-format
-msgid "%s welcomes %s"
-msgstr "%s da as boas vindas a %s"
+msgid "You have reached your limit of %1$.0f Mbytes attachment storage."
+msgstr "Você atingiu o seu limite de %1$.0f Mbytes de armazenamento de anexos."
-#: ../../mod/photos.php:34
-msgid "Photo Albums"
-msgstr "Álbum de fotos"
+#: ../../include/attach.php:475
+msgid "File upload failed. Possible system limit or action terminated."
+msgstr "Não foi possível enviar o arquivo. Provável limite do sistema ou a ação foi encerrada."
-#: ../../mod/photos.php:38 ../../mod/photos.php:110 ../../mod/photos.php:810
-#: ../../mod/photos.php:879 ../../mod/photos.php:894 ../../mod/photos.php:1282
-#: ../../mod/photos.php:1293 ../../include/Photo.php:233
-#: ../../include/Photo.php:240 ../../include/Photo.php:247
-#: ../../include/items.php:1041 ../../include/items.php:1044
-#: ../../include/items.php:1047
-msgid "Contact Photos"
-msgstr "Fotos dos contatos"
+#: ../../include/attach.php:487
+msgid "Stored file could not be verified. Upload failed."
+msgstr "Não foi possível verificar o arquivo armazenado. Falha no envio."
-#: ../../mod/photos.php:99
-msgid "Contact information unavailable"
-msgstr "A informação de contato não está disponível"
+#: ../../include/attach.php:528 ../../include/attach.php:545
+msgid "Path not available."
+msgstr "O caminho não está disponível."
-#: ../../mod/photos.php:110 ../../mod/photos.php:535 ../../mod/photos.php:879
-#: ../../mod/photos.php:894 ../../mod/register.php:290
-#: ../../mod/register.php:297 ../../mod/register.php:304
-#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
-#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:160
-#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:245
-msgid "Profile Photos"
-msgstr "Fotos do perfil"
+#: ../../include/attach.php:590
+msgid "Empty pathname"
+msgstr "O nome do caminho está em branco"
-#: ../../mod/photos.php:120
-msgid "Album not found."
-msgstr "O álbum não foi encontrado."
+#: ../../include/attach.php:606
+msgid "duplicate filename or path"
+msgstr "nome de arquivo ou caminho duplicado"
-#: ../../mod/photos.php:138 ../../mod/photos.php:888
-msgid "Delete Album"
-msgstr "Excluir o álbum"
+#: ../../include/attach.php:630
+msgid "Path not found."
+msgstr "Caminho não encontrado."
-#: ../../mod/photos.php:201 ../../mod/photos.php:1096
-msgid "Delete Photo"
-msgstr "Excluir a foto"
+#: ../../include/attach.php:674
+msgid "mkdir failed."
+msgstr "mkdir falhou."
-#: ../../mod/photos.php:473
-msgid "was tagged in a"
-msgstr "foi etiquetada em uma"
+#: ../../include/attach.php:678
+msgid "database storage failed."
+msgstr "armazenamento de banco de dados falhou."
-#: ../../mod/photos.php:473 ../../mod/like.php:110
-#: ../../include/conversation.php:20
-msgid "photo"
-msgstr "foto"
-
-#: ../../mod/photos.php:473
-msgid "by"
-msgstr "por"
-
-#: ../../mod/photos.php:563 ../../addon/js_upload/js_upload.php:306
-msgid "Image exceeds size limit of "
-msgstr "A imagem excede o tamanho máximo de "
-
-#: ../../mod/photos.php:577 ../../mod/profile_photo.php:118
-#: ../../mod/wall_upload.php:65
-msgid "Unable to process image."
-msgstr "Não foi possível processar a imagem."
-
-#: ../../mod/photos.php:597 ../../mod/profile_photo.php:241
-#: ../../mod/wall_upload.php:82
-msgid "Image upload failed."
-msgstr "Não foi possível enviar a imagem."
-
-#: ../../mod/photos.php:680 ../../mod/dfrn_request.php:591
-#: ../../mod/viewconnections.php:16 ../../mod/display.php:7
-#: ../../mod/search.php:13 ../../mod/directory.php:20
-msgid "Public access denied."
-msgstr "Acesso público negado."
-
-#: ../../mod/photos.php:690
-msgid "No photos selected"
-msgstr "Não foi selecionada nenhuma foto"
-
-#: ../../mod/photos.php:837
-msgid "Upload Photos"
-msgstr "Enviar fotos"
-
-#: ../../mod/photos.php:840 ../../mod/photos.php:883
-msgid "New album name: "
-msgstr "Novo nome de álbum: "
-
-#: ../../mod/photos.php:841
-msgid "or existing album name: "
-msgstr "ou nome de um álbum já existente: "
-
-#: ../../mod/photos.php:843 ../../mod/photos.php:1091
-msgid "Permissions"
-msgstr "Permissões"
-
-#: ../../mod/photos.php:898
-msgid "Edit Album"
-msgstr "Editar o álbum"
-
-#: ../../mod/photos.php:908 ../../mod/photos.php:1311
-msgid "View Photo"
-msgstr "Ver a foto"
-
-#: ../../mod/photos.php:937
-msgid "Photo not available"
-msgstr "A foto não está disponível"
-
-#: ../../mod/photos.php:986
-msgid "Edit photo"
-msgstr "Editar a foto"
-
-#: ../../mod/photos.php:987
-msgid "Use as profile photo"
-msgstr "Usar como uma foto de perfil"
-
-#: ../../mod/photos.php:993 ../../include/conversation.php:316
-msgid "Private Message"
-msgstr "Mensagem privada"
-
-#: ../../mod/photos.php:1000
-msgid "<< Prev"
-msgstr "<< Anterior"
-
-#: ../../mod/photos.php:1004
-msgid "View Full Size"
-msgstr "Ver no tamanho real"
-
-#: ../../mod/photos.php:1009
-msgid "Next >>"
-msgstr "Próxima >>"
-
-#: ../../mod/photos.php:1071
-msgid "Tags: "
-msgstr "Etiquetas: "
-
-#: ../../mod/photos.php:1074
-msgid "[Remove any tag]"
-msgstr "[Remover qualquer etiqueta]"
-
-#: ../../mod/photos.php:1084
-msgid "New album name"
-msgstr "Novo nome para o álbum"
-
-#: ../../mod/photos.php:1087
-msgid "Caption"
-msgstr "Legenda"
-
-#: ../../mod/photos.php:1089
-msgid "Add a Tag"
-msgstr "Adicionar uma etiqueta"
-
-#: ../../mod/photos.php:1093
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr ""
-"Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, "
-"#acampamento"
-
-#: ../../mod/photos.php:1113 ../../include/conversation.php:364
-msgid "I like this (toggle)"
-msgstr "Eu gostei disso (alterna)"
-
-#: ../../mod/photos.php:1114 ../../include/conversation.php:365
-msgid "I don't like this (toggle)"
-msgstr "Eu não gostei disso (alterna)"
-
-#: ../../mod/photos.php:1115 ../../include/conversation.php:366
-#: ../../include/conversation.php:731
-msgid "Share"
-msgstr "Compartilhar"
-
-#: ../../mod/photos.php:1116 ../../mod/editpost.php:97
-#: ../../mod/message.php:190 ../../mod/message.php:324
-#: ../../include/conversation.php:367 ../../include/conversation.php:741
-msgid "Please wait"
-msgstr "Por favor, espere"
-
-#: ../../mod/photos.php:1132 ../../mod/photos.php:1171
-#: ../../mod/photos.php:1202 ../../include/conversation.php:380
-msgid "This is you"
-msgstr "Este(a) é você"
-
-#: ../../mod/photos.php:1134 ../../mod/photos.php:1173
-#: ../../mod/photos.php:1204 ../../include/conversation.php:382
-#: ../../boot.php:386
-msgid "Comment"
-msgstr "Comentar"
-
-#: ../../mod/photos.php:1232 ../../mod/group.php:146
-#: ../../include/conversation.php:179 ../../include/conversation.php:393
-msgid "Delete"
-msgstr "Excluir"
-
-#: ../../mod/photos.php:1298
-msgid "Recent Photos"
-msgstr "Fotos recentes"
-
-#: ../../mod/photos.php:1302
-msgid "Upload New Photos"
-msgstr "Enviar novas fotos"
-
-#: ../../mod/photos.php:1315
-msgid "View Album"
-msgstr "Ver álbum"
-
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "O item não foi encontrado"
-
-#: ../../mod/editpost.php:32
-msgid "Edit post"
-msgstr "Editar a publicação"
-
-#: ../../mod/editpost.php:75 ../../include/conversation.php:717
-msgid "Post to Email"
-msgstr "Publicar em e-mail"
-
-#: ../../mod/editpost.php:88 ../../include/group.php:169
-#: ../../include/conversation.php:391
-msgid "Edit"
-msgstr "Editar"
-
-#: ../../mod/editpost.php:89 ../../mod/message.php:188
-#: ../../mod/message.php:322 ../../include/conversation.php:732
-msgid "Upload photo"
-msgstr "Enviar foto"
-
-#: ../../mod/editpost.php:90 ../../include/conversation.php:733
-msgid "Attach file"
-msgstr "Anexar arquivo"
-
-#: ../../mod/editpost.php:91 ../../mod/message.php:189
-#: ../../mod/message.php:323 ../../include/conversation.php:734
-msgid "Insert web link"
-msgstr "Inserir link web"
-
-#: ../../mod/editpost.php:92 ../../include/conversation.php:735
-msgid "Insert YouTube video"
-msgstr "Inserir vídeo do YouTube"
-
-#: ../../mod/editpost.php:93 ../../include/conversation.php:736
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Inserir vídeo Vorbis (.ogg)"
-
-#: ../../mod/editpost.php:94 ../../include/conversation.php:737
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Inserir áudio Vorbis (.ogg)"
-
-#: ../../mod/editpost.php:95 ../../include/conversation.php:738
-msgid "Set your location"
-msgstr "Definir sua localização"
-
-#: ../../mod/editpost.php:96 ../../include/conversation.php:739
-msgid "Clear browser location"
-msgstr "Limpar a localização do navegador"
-
-#: ../../mod/editpost.php:98 ../../include/conversation.php:742
-msgid "Permission settings"
-msgstr "Configurações de permissão"
-
-#: ../../mod/editpost.php:106 ../../include/conversation.php:750
-msgid "CC: email addresses"
-msgstr "CC: endereço de e-mail"
-
-#: ../../mod/editpost.php:107 ../../include/conversation.php:751
-msgid "Public post"
-msgstr "Publicação pública"
-
-#: ../../mod/editpost.php:109 ../../include/conversation.php:753
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
-
-#: ../../mod/dfrn_request.php:96
-msgid "This introduction has already been accepted."
-msgstr "Esta introdução já foi aceita."
-
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:351
-msgid "Profile location is not valid or does not contain profile information."
-msgstr ""
-"A localização do perfil não é válida ou não contém informação de perfil."
-
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:356
-msgid "Warning: profile location has no identifiable owner name."
-msgstr ""
-"Aviso: a localização do perfil não possui nenhum nome identificável do seu "
-"dono."
-
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358
-msgid "Warning: profile location has no profile photo."
-msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
-
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:361
+#: ../../include/bookmarks.php:42
#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "O parâmetro requerido %d não foi encontrado na localização fornecida"
-msgstr[1] ""
-"Os parâmetros requeridos %d não foram encontrados na localização fornecida"
+msgid "%1$s's bookmarks"
+msgstr "Links guardados de %1$s"
-#: ../../mod/dfrn_request.php:168
-msgid "Introduction complete."
-msgstr "A introdução foi completada."
+#: ../../include/conversation.php:123
+msgid "channel"
+msgstr "canal"
-#: ../../mod/dfrn_request.php:192
-msgid "Unrecoverable protocol error."
-msgstr "Ocorreu um erro de protocolo irrecuperável."
-
-#: ../../mod/dfrn_request.php:220
-msgid "Profile unavailable."
-msgstr "O perfil não está disponível."
-
-#: ../../mod/dfrn_request.php:245
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s recebeu muitas solicitações de conexão hoje."
-
-#: ../../mod/dfrn_request.php:246
-msgid "Spam protection measures have been invoked."
-msgstr "As medidas de proteção contra spam foram ativadas."
-
-#: ../../mod/dfrn_request.php:247
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
-
-#: ../../mod/dfrn_request.php:277
-msgid "Invalid locator"
-msgstr "Localizador inválido"
-
-#: ../../mod/dfrn_request.php:296
-msgid "Unable to resolve your name at the provided location."
-msgstr "Não foi possível resolver o seu nome no localizador indicado."
-
-#: ../../mod/dfrn_request.php:309
-msgid "You have already introduced yourself here."
-msgstr "Você já fez a sua introdução aqui."
-
-#: ../../mod/dfrn_request.php:313
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Aparentemente você já é amigo de %s."
-
-#: ../../mod/dfrn_request.php:334
-msgid "Invalid profile URL."
-msgstr "URL de perfil inválida."
-
-#: ../../mod/dfrn_request.php:340 ../../mod/follow.php:20
-msgid "Disallowed profile URL."
-msgstr "URL de perfil não permitida."
-
-#: ../../mod/dfrn_request.php:406 ../../mod/contacts.php:90
-msgid "Failed to update contact record."
-msgstr "Não foi possível atualizar o registro do contato."
-
-#: ../../mod/dfrn_request.php:427
-msgid "Your introduction has been sent."
-msgstr "A sua introdução foi enviada."
-
-#: ../../mod/dfrn_request.php:481
-msgid "Please login to confirm introduction."
-msgstr "Por favor, autentique-se para confirmar a introdução."
-
-#: ../../mod/dfrn_request.php:495
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"this profile."
-msgstr ""
-"A identidade autenticada está incorreta. Por favor, entre como "
-"este perfil."
-
-#: ../../mod/dfrn_request.php:507
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bem-vindo(a) à sua página pessoal %s."
-
-#: ../../mod/dfrn_request.php:508
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Por favor, confirme sua solicitação de introdução/conexão para %s."
-
-#: ../../mod/dfrn_request.php:509
-msgid "Confirm"
-msgstr "Confirmar"
-
-#: ../../mod/dfrn_request.php:542 ../../include/items.php:1440
-msgid "[Name Withheld]"
-msgstr "[Nome não revelado]"
-
-#: ../../mod/dfrn_request.php:549
-msgid "Introduction received at "
-msgstr "Introdução recebida em "
-
-#: ../../mod/dfrn_request.php:551 ../../mod/lostpass.php:40
-#: ../../mod/lostpass.php:102 ../../mod/register.php:335
-#: ../../mod/register.php:385 ../../mod/regmod.php:98
-#: ../../mod/dfrn_notify.php:191 ../../mod/dfrn_notify.php:443
-#: ../../mod/dfrn_confirm.php:658 ../../include/items.php:1449
-msgid "Administrator"
-msgstr "Administrador"
-
-#: ../../mod/dfrn_request.php:630
-msgid "Friend/Connection Request"
-msgstr "Solicitação de amizade/conexão"
-
-#: ../../mod/dfrn_request.php:631
-msgid ""
-"Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr ""
-"Exemplos: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, "
-"teste@identi.ca"
-
-#: ../../mod/dfrn_request.php:632
-msgid "Please answer the following:"
-msgstr "Por favor, entre com as informações solicitadas:"
-
-#: ../../mod/dfrn_request.php:633
-msgid "Does $name know you?"
-msgstr "$name conhece você?"
-
-#: ../../mod/dfrn_request.php:634 ../../mod/settings.php:350
-#: ../../mod/settings.php:362 ../../mod/register.php:459
-#: ../../mod/profiles.php:358 ../../mod/profiles.php:367
-msgid "Yes"
-msgstr "Sim"
-
-#: ../../mod/dfrn_request.php:635 ../../mod/settings.php:351
-#: ../../mod/settings.php:363 ../../mod/register.php:460
-#: ../../mod/profiles.php:359 ../../mod/profiles.php:368
-msgid "No"
-msgstr "Não"
-
-#: ../../mod/dfrn_request.php:636
-msgid "Add a personal note:"
-msgstr "Adicione uma anotação pessoal:"
-
-#: ../../mod/dfrn_request.php:637
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"social networks:"
-msgstr ""
-"Por favor, digite o seu 'endereço de identificação' de uma das seguintes "
-"redes sociais suportadas:"
-
-#: ../../mod/dfrn_request.php:638
-msgid "Friendika"
-msgstr "Friendika"
-
-#: ../../mod/dfrn_request.php:639
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
-
-#: ../../mod/dfrn_request.php:640
-msgid "Private (secure) network"
-msgstr "Rede privada (segura)"
-
-#: ../../mod/dfrn_request.php:641
-msgid "Public (insecure) network"
-msgstr "Rede pública (insegura)"
-
-#: ../../mod/dfrn_request.php:642
-msgid "Your Identity Address:"
-msgstr "Seu endereço de identificação:"
-
-#: ../../mod/dfrn_request.php:643
-msgid "Submit Request"
-msgstr "Enviar solicitação"
-
-#: ../../mod/install.php:33
-msgid "Could not create/connect to database."
-msgstr "Não foi possível criar/conectar-se ao banco de dados."
-
-#: ../../mod/install.php:38
-msgid "Connected to database."
-msgstr "Conectado ao banco de dados."
-
-#: ../../mod/install.php:72
-msgid "Proceed with Installation"
-msgstr "Prossiga com a instalação"
-
-#: ../../mod/install.php:74
-msgid "Your Friendika site database has been installed."
-msgstr "O banco de dados do seu site Friendika foi instalado."
-
-#: ../../mod/install.php:75
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr ""
-"IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o "
-"pesquisador."
-
-#: ../../mod/install.php:76 ../../mod/install.php:86 ../../mod/install.php:199
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
-
-#: ../../mod/install.php:78
-msgid "Proceed to registration"
-msgstr "Prossiga com o registro"
-
-#: ../../mod/install.php:84
-msgid "Database import failed."
-msgstr "Não foi possível importar o banco de dados."
-
-#: ../../mod/install.php:85
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr ""
-"Você provavelmente precisará importar o arquivo \"database.sql\" "
-"manualmente, usando o phpmyadmin ou o mysql."
-
-#: ../../mod/install.php:98
-msgid "Welcome to Friendika."
-msgstr "Bem-vindo(a) ao Friendika."
-
-#: ../../mod/install.php:121
-msgid "Friendika Social Network"
-msgstr "Rede social Friendika"
-
-#: ../../mod/install.php:122
-msgid "Installation"
-msgstr "Instalação"
-
-#: ../../mod/install.php:123
-msgid ""
-"In order to install Friendika we need to know how to contact your database."
-msgstr ""
-"Para instalar o Friendika é necessário saber como contactar o seu banco de "
-"dados."
-
-#: ../../mod/install.php:124
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr ""
-"Por favor, entre em contato com a sua hospedagem ou com o administrador do "
-"site caso você tenha alguma dúvida em relação a isso."
-
-#: ../../mod/install.php:125
-msgid ""
-"The database you specify below must already exist. If it does not, please "
-"create it before continuing."
-msgstr ""
-"O banco de dados que você especificar abaixo já deve existir. Caso "
-"contrário, por favor crie-o antes de prosseguir."
-
-#: ../../mod/install.php:126
-msgid "Database Server Name"
-msgstr "Nome do servidor de banco de dados"
-
-#: ../../mod/install.php:127
-msgid "Database Login Name"
-msgstr "Nome do usuário do banco de dados"
-
-#: ../../mod/install.php:128
-msgid "Database Login Password"
-msgstr "Senha do usuário do banco de dados"
-
-#: ../../mod/install.php:129
-msgid "Database Name"
-msgstr "Nome do banco de dados"
-
-#: ../../mod/install.php:130
-msgid "Please select a default timezone for your website"
-msgstr "Por favor, selecione o fuso horário padrão para o seu site"
-
-#: ../../mod/install.php:148
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr ""
-"Não foi possível encontrar uma versão de linha de comando do PHP nos "
-"caminhos do seu servidor web."
-
-#: ../../mod/install.php:149
-msgid ""
-"This is required. Please adjust the configuration file .htconfig.php "
-"accordingly."
-msgstr ""
-"Isto é necessário. Por favor, faça os ajustes no arquivo de configurações "
-".htconfig.php."
-
-#: ../../mod/install.php:156
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr ""
-"\"register_argc_argv\" não está habilitado na versão de linha de comando do "
-"PHP no seu sistema."
-
-#: ../../mod/install.php:157
-msgid "This is required for message delivery to work."
-msgstr "Isto é requerido para o funcionamento do envio de mensagens."
-
-#: ../../mod/install.php:179
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr ""
-"Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as "
-"chaves de criptografia"
-
-#: ../../mod/install.php:180
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr ""
-"Se estiver usando o Windows, por favor dê uma olhada em "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-
-#: ../../mod/install.php:189
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr ""
-"Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
-
-#: ../../mod/install.php:191
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
-
-#: ../../mod/install.php:193
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr ""
-"Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não "
-"está instalado."
-
-#: ../../mod/install.php:195
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
-
-#: ../../mod/install.php:197
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
-
-#: ../../mod/install.php:208
-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 ""
-"O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta"
-" raiz da instalação e não está conseguindo."
-
-#: ../../mod/install.php:209
-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 ""
-"Geralmente isso está relacionado às definições de permissão, uma vez que o "
-"servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
-
-#: ../../mod/install.php:210
-msgid ""
-"Please check with your site documentation or support people to see if this "
-"situation can be corrected."
-msgstr ""
-"Por favor, verifique a documentação ou o suporte do seu site para verificar "
-"se esta situação pode ser corrigida."
-
-#: ../../mod/install.php:211
-msgid ""
-"If not, you may be required to perform a manual installation. Please see the"
-" file \"INSTALL.txt\" for instructions."
-msgstr ""
-"Caso contrário você terá que efetuar uma instalação manual. Por favor, "
-"verifique o arquivo \"INSTALL.TXT\" para mais instruções."
-
-#: ../../mod/install.php:220
-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 ""
-"Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por "
-"favor, use o texto incluso para criar um arquivo de configuração na raiz da "
-"instalação do Friendika em seu servidor web."
-
-#: ../../mod/install.php:235
-msgid "Errors encountered creating database tables."
-msgstr ""
-"Foram encontrados erros durante a criação das tabelas do banco de dados."
-
-#: ../../mod/match.php:10
-msgid "Profile Match"
-msgstr "Correspondência de perfil"
-
-#: ../../mod/match.php:50
-msgid "No matches"
-msgstr "Nenhuma correspondência"
-
-#: ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Não existe informação disponível sobre a privacidade remota."
-
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
-msgstr "Visível para:"
-
-#: ../../mod/home.php:23
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo(a) a %s"
-
-#: ../../mod/notifications.php:28
-msgid "Invalid request identifier."
-msgstr "Identificador de solicitação inválido"
-
-#: ../../mod/notifications.php:31 ../../mod/notifications.php:133
-msgid "Discard"
-msgstr "Descartar"
-
-#: ../../mod/notifications.php:41 ../../mod/notifications.php:132
-msgid "Ignore"
-msgstr "Ignorar"
-
-#: ../../mod/notifications.php:68
-msgid "Pending Friend/Connect Notifications"
-msgstr "Notificações pendentes de amigo/conexão"
-
-#: ../../mod/notifications.php:72
-msgid "Show Ignored Requests"
-msgstr "Exibir solicitações ignoradas"
-
-#: ../../mod/notifications.php:72
-msgid "Hide Ignored Requests"
-msgstr "Esconder solicitações ignoradas"
-
-#: ../../mod/notifications.php:104
-msgid "Claims to be known to you: "
-msgstr "Alega ser conhecido por você: "
-
-#: ../../mod/notifications.php:104
-msgid "yes"
-msgstr "sim"
-
-#: ../../mod/notifications.php:104
-msgid "no"
-msgstr "não"
-
-#: ../../mod/notifications.php:110
-msgid "Approve as: "
-msgstr "Aprovar como:"
-
-#: ../../mod/notifications.php:111
-msgid "Friend"
-msgstr "Amigo"
-
-#: ../../mod/notifications.php:112
-msgid "Fan/Admirer"
-msgstr "Fã/Admirador"
-
-#: ../../mod/notifications.php:119
-msgid "Notification type: "
-msgstr "Tipo de notificação:"
-
-#: ../../mod/notifications.php:120
-msgid "Friend/Connect Request"
-msgstr "Solicitação de amizade/conexão"
-
-#: ../../mod/notifications.php:120
-msgid "New Follower"
-msgstr "Novo acompanhante"
-
-#: ../../mod/notifications.php:130 ../../mod/notifications.php:153
-msgid "Approve"
-msgstr "Aprovar"
-
-#: ../../mod/notifications.php:139
-msgid "No notifications."
-msgstr "Nenhuma notificação"
-
-#: ../../mod/notifications.php:143
-msgid "User registrations waiting for confirm"
-msgstr "Registros de usuário aguardando confirmação"
-
-#: ../../mod/notifications.php:154
-msgid "Deny"
-msgstr "Negar"
-
-#: ../../mod/notifications.php:159
-msgid "No registrations."
-msgstr "Nenhum registro."
-
-#: ../../mod/contacts.php:12
-msgid "Invite Friends"
-msgstr "Convidar amigos"
-
-#: ../../mod/contacts.php:15
-msgid "Find People With Shared Interests"
-msgstr "Encontre pessoas com interesses similares"
-
-#: ../../mod/contacts.php:19
-msgid "Connect/Follow"
-msgstr "Conectar/Acompanhar"
-
-#: ../../mod/contacts.php:20
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
-
-#: ../../mod/contacts.php:21
-msgid "Follow"
-msgstr "Acompanhar"
-
-#: ../../mod/contacts.php:43 ../../mod/contacts.php:124
-msgid "Could not access contact record."
-msgstr "Não foi possível acessar o registro do contato."
-
-#: ../../mod/contacts.php:57
-msgid "Could not locate selected profile."
-msgstr "Não foi possível localizar o perfil selecionado."
-
-#: ../../mod/contacts.php:88
-msgid "Contact updated."
-msgstr "O contato foi atualizado."
-
-#: ../../mod/contacts.php:146
-msgid "Contact has been blocked"
-msgstr "O contato foi bloqueado"
-
-#: ../../mod/contacts.php:146
-msgid "Contact has been unblocked"
-msgstr "O contato foi desbloqueado"
-
-#: ../../mod/contacts.php:160
-msgid "Contact has been ignored"
-msgstr "O contato está sendo ignorado"
-
-#: ../../mod/contacts.php:160
-msgid "Contact has been unignored"
-msgstr "O contato deixou de ser ignorado"
-
-#: ../../mod/contacts.php:181
-msgid "stopped following"
-msgstr "parou de acompanhar"
-
-#: ../../mod/contacts.php:200
-msgid "Contact has been removed."
-msgstr "O contato foi removido."
-
-#: ../../mod/contacts.php:228 ../../mod/contacts.php:363
-msgid "Mutual Friendship"
-msgstr "Amizade mútua"
-
-#: ../../mod/contacts.php:232 ../../mod/contacts.php:367
-msgid "is a fan of yours"
-msgstr "é um fã seu"
-
-#: ../../mod/contacts.php:237 ../../mod/contacts.php:371
-msgid "you are a fan of"
-msgstr "você é um fã de"
-
-#: ../../mod/contacts.php:252
-msgid "Privacy Unavailable"
-msgstr "Privacidade não disponível"
-
-#: ../../mod/contacts.php:253
-msgid "Private communications are not available for this contact."
-msgstr "As comunicações privadas não estão disponíveis para este contato."
-
-#: ../../mod/contacts.php:256
-msgid "Never"
-msgstr "Nunca"
-
-#: ../../mod/contacts.php:260
-msgid "(Update was successful)"
-msgstr "(A atualização foi bem sucedida)"
-
-#: ../../mod/contacts.php:260
-msgid "(Update was not successful)"
-msgstr "(A atualização não foi bem sucedida)"
-
-#: ../../mod/contacts.php:263
-msgid "Contact Editor"
-msgstr "Editor de contatos"
-
-#: ../../mod/contacts.php:265
-msgid "Profile Visibility"
-msgstr "Visibilidade do perfil"
-
-#: ../../mod/contacts.php:266
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr ""
-"Por favor, selecione o perfil que você gostaria de exibir para %s quando "
-"estiver visualizando seu perfil de modo seguro."
-
-#: ../../mod/contacts.php:267
-msgid "Contact Information / Notes"
-msgstr "Informações de contato / Notas"
-
-#: ../../mod/contacts.php:268
-msgid "Online Reputation"
-msgstr "Reputação on-line"
-
-#: ../../mod/contacts.php:269
-msgid ""
-"Occasionally your friends may wish to inquire about this person's online "
-"legitimacy."
-msgstr ""
-"Ocasionalmente os seus amigos podem querer saber sobre a legitimidade on-"
-"line desta pessoa."
-
-#: ../../mod/contacts.php:270
-msgid ""
-"You may help them choose whether or not to interact with this person by "
-"providing a reputation to guide them."
-msgstr ""
-"Você pode então ajudá-los a decidir se eles devem ou não interagir com esta "
-"pessoa, fornecendo uma reputação para guiá-los."
-
-#: ../../mod/contacts.php:271
-msgid ""
-"Please take a moment to elaborate on this selection if you feel it could be "
-"helpful to others."
-msgstr ""
-"Por favor, dedique um momento para trabalhar nisso, caso você sinta que "
-"possa ser útil a outras pessoas."
-
-#: ../../mod/contacts.php:272
-msgid "Visit $name's profile"
-msgstr "Visite o perfil de $name"
-
-#: ../../mod/contacts.php:273
-msgid "Block/Unblock contact"
-msgstr "Bloquear/desbloquear o contato"
-
-#: ../../mod/contacts.php:274
-msgid "Ignore contact"
-msgstr "Ignorar o contato"
-
-#: ../../mod/contacts.php:275
-msgid "Repair contact URL settings"
-msgstr "Reparar as configurações de URL do contato"
-
-#: ../../mod/contacts.php:276
-msgid "Repair contact URL settings (WARNING: Advanced)"
-msgstr "Reparar as configurações de URL do contato (ATENÇÃO: Avançado)"
-
-#: ../../mod/contacts.php:277
-msgid "View conversations"
-msgstr "Ver as conversas"
-
-#: ../../mod/contacts.php:278
-msgid "Delete contact"
-msgstr "Excluir o contato"
-
-#: ../../mod/contacts.php:280
-msgid "Last updated: "
-msgstr "Última atualização: "
-
-#: ../../mod/contacts.php:281
-msgid "Update public posts: "
-msgstr "Atualizar publicações públicas: "
-
-#: ../../mod/contacts.php:283
-msgid "Update now"
-msgstr "Atualizar agora"
-
-#: ../../mod/contacts.php:286
-msgid "Unblock this contact"
-msgstr "Desbloquear este contato"
-
-#: ../../mod/contacts.php:286
-msgid "Block this contact"
-msgstr "Bloquear este contato"
-
-#: ../../mod/contacts.php:287
-msgid "Unignore this contact"
-msgstr "Deixar de ignorar este usuário"
-
-#: ../../mod/contacts.php:287
-msgid "Ignore this contact"
-msgstr "Ignorar este usuário"
-
-#: ../../mod/contacts.php:290
-msgid "Currently blocked"
-msgstr "Atualmente bloqueado"
-
-#: ../../mod/contacts.php:291
-msgid "Currently ignored"
-msgstr "Atualmente ignorado"
-
-#: ../../mod/contacts.php:322 ../../include/nav.php:109
-#: ../../include/acl_selectors.php:141 ../../include/acl_selectors.php:156
-msgid "Contacts"
-msgstr "Contatos"
-
-#: ../../mod/contacts.php:324
-msgid "Show Blocked Connections"
-msgstr "Exibir as conexões bloqueadas"
-
-#: ../../mod/contacts.php:324
-msgid "Hide Blocked Connections"
-msgstr "Esconder as conexões bloqueadas"
-
-#: ../../mod/contacts.php:326 ../../mod/directory.php:55
-msgid "Finding: "
-msgstr "Pesquisando: "
-
-#: ../../mod/contacts.php:327 ../../mod/directory.php:57
-msgid "Find"
-msgstr "Pesquisar"
-
-#: ../../mod/contacts.php:387 ../../mod/viewconnections.php:52
-msgid "Visit $username's profile"
-msgstr "Visitar o perfil de $username"
-
-#: ../../mod/contacts.php:388 ../../include/conversation.php:597
-msgid "Edit contact"
-msgstr "Editar o contato"
-
-#: ../../mod/lostpass.php:27
-msgid "Password reset request issued. Check your email."
-msgstr ""
-"A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail."
-
-#: ../../mod/lostpass.php:38
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Foi feita uma solicitação de restauração de senha em %s"
-
-#: ../../mod/lostpass.php:60
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr ""
-"Não foi possível verificar a solicitação (você pode tê-la submetido "
-"anteriormente). A senha não foi restaurada."
-
-#: ../../mod/lostpass.php:78 ../../boot.php:852
-msgid "Password Reset"
-msgstr "Reiniciar a senha"
-
-#: ../../mod/lostpass.php:79
-msgid "Your password has been reset as requested."
-msgstr "Sua senha foi restaurada, conforme solicitado."
-
-#: ../../mod/lostpass.php:80
-msgid "Your new password is"
-msgstr "Sua nova senha é"
-
-#: ../../mod/lostpass.php:81
-msgid "Save or copy your new password - and then"
-msgstr "Salve ou copie a sua nova senha e, então"
-
-#: ../../mod/lostpass.php:82
-msgid "click here to login"
-msgstr "clique aqui para entrar"
-
-#: ../../mod/lostpass.php:83
-msgid ""
-"Your password may be changed from the Settings page after "
-"successful login."
-msgstr ""
-"Sua senha pode ser alterada na página de Configurações após você "
-"entrar em seu perfil."
-
-#: ../../mod/lostpass.php:114
-msgid "Forgot your Password?"
-msgstr "Esqueceu a sua senha?"
-
-#: ../../mod/lostpass.php:115
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr ""
-"Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com "
-"a restauração da sua senha. Após isso, verifique seu e-mail para mais "
-"instruções."
-
-#: ../../mod/lostpass.php:116
-msgid "Nickname or Email: "
-msgstr "Identificação ou e-mail: "
-
-#: ../../mod/lostpass.php:117
-msgid "Reset"
-msgstr "Restaurar"
-
-#: ../../mod/settings.php:38
-msgid "Passwords do not match. Password unchanged."
-msgstr "As senhas não correspondem. A senha não foi modificada."
-
-#: ../../mod/settings.php:43
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
-
-#: ../../mod/settings.php:54
-msgid "Password changed."
-msgstr "A senha foi modificada."
-
-#: ../../mod/settings.php:56
-msgid "Password update failed. Please try again."
-msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
-
-#: ../../mod/settings.php:138
-msgid " Please use a shorter name."
-msgstr " Por favor, use um nome mais curto."
-
-#: ../../mod/settings.php:140
-msgid " Name too short."
-msgstr " O nome é muito curto."
-
-#: ../../mod/settings.php:146
-msgid " Not valid email."
-msgstr " Não é um e-mail válido."
-
-#: ../../mod/settings.php:148
-msgid " Cannot change to that email."
-msgstr " Não foi possível alterar para esse e-mail."
-
-#: ../../mod/settings.php:206
-msgid "Settings updated."
-msgstr "As configurações foram atualizadas."
-
-#: ../../mod/settings.php:256 ../../mod/settings.php:418
-#: ../../addon/widgets/widgets.php:123
-msgid "Plugin Settings"
-msgstr "Configurações do plugin"
-
-#: ../../mod/settings.php:257 ../../mod/settings.php:417
-msgid "Account Settings"
-msgstr "Configurações da conta"
-
-#: ../../mod/settings.php:263
-msgid "No Plugin settings configured"
-msgstr "Não foi definida nenhuma configuração de plugin"
-
-#: ../../mod/settings.php:323
-msgid "Normal Account"
-msgstr "Conta normal"
-
-#: ../../mod/settings.php:324
-msgid "This account is a normal personal profile"
-msgstr "Essa conta é um perfil pessoal normal"
-
-#: ../../mod/settings.php:325
-msgid "Soapbox Account"
-msgstr "Conta de palanque"
-
-#: ../../mod/settings.php:326
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr ""
-"Aprova automaticamente todas as solicitações de conexão/amizade como fãs de "
-"somente leitura"
-
-#: ../../mod/settings.php:327
-msgid "Community/Celebrity Account"
-msgstr "Conta de comunidade/celebridade"
-
-#: ../../mod/settings.php:328
-msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr ""
-"Aprova automaticamente todas as solicitações de conexão/amizade como fãs de "
-"leitura e escrita"
-
-#: ../../mod/settings.php:329
-msgid "Automatic Friend Account"
-msgstr "Conta de amigo automático"
-
-#: ../../mod/settings.php:330
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr ""
-"Aprova automaticamente todas as solicitações de conexão/amizade como amigos"
-
-#: ../../mod/settings.php:339
-msgid "OpenID: "
-msgstr "OpenID: "
-
-#: ../../mod/settings.php:339
-msgid " (Optional) Allow this OpenID to login to this account."
-msgstr " (Opcional) Permite a este OpenID autenticar-se nesta conta."
-
-#: ../../mod/settings.php:349
-msgid "Publish your default profile in site directory?"
-msgstr "Publicar seu perfil padrão no diretório do site?"
-
-#: ../../mod/settings.php:361
-msgid "Publish your default profile in global social directory?"
-msgstr "Publica seu perfil padrão no diretório social global?"
-
-#: ../../mod/settings.php:377
-msgid "Profile is not published."
-msgstr "O perfil não está publicado."
-
-#: ../../mod/settings.php:398 ../../mod/profile_photo.php:196
-msgid "or"
-msgstr "ou"
-
-#: ../../mod/settings.php:403
-msgid "Your Identity Address is"
-msgstr "O endereço da sua identidade é"
-
-#: ../../mod/settings.php:413
-msgid "Export Personal Data"
-msgstr "Exportar dados pessoais"
-
-#: ../../mod/settings.php:419
-msgid "Basic Settings"
-msgstr "Configurações básicas"
-
-#: ../../mod/settings.php:420 ../../include/profile_advanced.php:10
-msgid "Full Name:"
-msgstr "Nome completo:"
-
-#: ../../mod/settings.php:421
-msgid "Email Address:"
-msgstr "Endereço de e-mail:"
-
-#: ../../mod/settings.php:422
-msgid "Your Timezone:"
-msgstr "Seu fuso horário:"
-
-#: ../../mod/settings.php:423
-msgid "Default Post Location:"
-msgstr "Localização padrão de suas publicações:"
-
-#: ../../mod/settings.php:424
-msgid "Use Browser Location:"
-msgstr "Usar localizador do navegador:"
-
-#: ../../mod/settings.php:425
-msgid "Display Theme:"
-msgstr "Tema do perfil:"
-
-#: ../../mod/settings.php:427
-msgid "Security and Privacy Settings"
-msgstr "Configurações de segurança e privacidade"
-
-#: ../../mod/settings.php:428
-msgid "Maximum Friend Requests/Day:"
-msgstr "Número máximo de requisições de amizade por dia:"
-
-#: ../../mod/settings.php:429
-msgid "(to prevent spam abuse)"
-msgstr "(para prevenir abuso de spammers)"
-
-#: ../../mod/settings.php:430
-msgid "Allow friends to post to your profile page:"
-msgstr "Permite aos seus amigos publicarem na sua página de perfil:"
-
-#: ../../mod/settings.php:431
-msgid "Automatically expire (delete) posts older than"
-msgstr "Expira (exclui) automaticamente publicações mais velhas que"
-
-#: ../../mod/settings.php:432 ../../include/datetime.php:154
-msgid "days"
-msgstr "dias"
-
-#: ../../mod/settings.php:433
-msgid "Notification Settings"
-msgstr "Configurações de notificação"
-
-#: ../../mod/settings.php:434
-msgid "Send a notification email when:"
-msgstr "Enviar um e-mail de notificação quando:"
-
-#: ../../mod/settings.php:435
-msgid "You receive an introduction"
-msgstr "Você receber uma solicitação"
-
-#: ../../mod/settings.php:436
-msgid "Your introductions are confirmed"
-msgstr "Suas solicitações forem confirmadas"
-
-#: ../../mod/settings.php:437
-msgid "Someone writes on your profile wall"
-msgstr "Alguém escrever no mural do seu perfil"
-
-#: ../../mod/settings.php:438
-msgid "Someone writes a followup comment"
-msgstr "Alguém comentou a sua mensagem"
-
-#: ../../mod/settings.php:439
-msgid "You receive a private message"
-msgstr "Você receber uma mensagem privada"
-
-#: ../../mod/settings.php:440
-msgid "Password Settings"
-msgstr "Configurações da senha"
-
-#: ../../mod/settings.php:441
-msgid "Leave password fields blank unless changing"
-msgstr ""
-"Deixe os campos de senha em branco, a não ser que você queira alterá-la"
-
-#: ../../mod/settings.php:442
-msgid "New Password:"
-msgstr "Nova senha:"
-
-#: ../../mod/settings.php:443
-msgid "Confirm:"
-msgstr "Confirme:"
-
-#: ../../mod/settings.php:444
-msgid "Advanced Page Settings"
-msgstr "Configurações avançadas da página"
-
-#: ../../mod/settings.php:459
-msgid "Default Post Permissions"
-msgstr "Permissões padrão de publicação"
-
-#: ../../mod/settings.php:460
-msgid "(click to open/close)"
-msgstr "(clique para abrir/fechar)"
-
-#: ../../mod/settings.php:473
-msgid "Email/Mailbox Setup"
-msgstr "Configurações do e-mail/caixa postal"
-
-#: ../../mod/settings.php:474
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr ""
-"Caso você deseje se comunicar com contatos de e-mail usando este serviço "
-"(opcional), por favor especifique como se conectar à sua caixa postal."
-
-#: ../../mod/settings.php:475
-msgid "IMAP server name:"
-msgstr "Nome do servidor IMAP:"
-
-#: ../../mod/settings.php:477
-msgid "IMAP port:"
-msgstr "Porta do IMAP:"
-
-#: ../../mod/settings.php:479
-msgid "Security (TLS or SSL):"
-msgstr "Segurança (TLS ou SSL):"
-
-#: ../../mod/settings.php:481
-msgid "Email login name:"
-msgstr "Nome de usuário do e-mail:"
-
-#: ../../mod/settings.php:483
-msgid "Email password:"
-msgstr "Senha do e-mail:"
-
-#: ../../mod/settings.php:484
-msgid "Reply-to address (Optional):"
-msgstr "Endereço de resposta (Reply-to) (opcional):"
-
-#: ../../mod/settings.php:486
-msgid "Send public posts to all email contacts:"
-msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
-
-#: ../../mod/settings.php:488
-msgid "Email access is disabled on this site."
-msgstr "O acesso ao e-mail está desabilitado neste site."
-
-#: ../../mod/manage.php:37
-#, php-format
-msgid "Welcome back %s"
-msgstr "Bem-vindo(a) de volta %s"
-
-#: ../../mod/manage.php:87
-msgid "Manage Identities and/or Pages"
-msgstr "Gerenciar identidades e/ou páginas"
-
-#: ../../mod/manage.php:90
-msgid ""
-"(Toggle between different identities or community/group pages which share "
-"your account details.)"
-msgstr ""
-"(Alterna entre as diferentes páginas de identidades ou comunidades/grupos "
-"que compartilham os detalhes da sua conta.)"
-
-#: ../../mod/manage.php:92
-msgid "Select an identity to manage: "
-msgstr "Selecione uma identidade para gerenciar: "
-
-#: ../../mod/network.php:18
-msgid "Normal View"
-msgstr "Visão normal"
-
-#: ../../mod/network.php:20
-msgid "New Item View"
-msgstr "Visão de novos itens"
-
-#: ../../mod/network.php:64
-#, 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] "Aviso: Este grupo contém %s membro de uma rede insegura."
-msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
-
-#: ../../mod/network.php:67
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr ""
-"Mensagens privadas para este grupo correm o risco de sofrerem divulgação "
-"pública."
-
-#: ../../mod/network.php:129
-msgid "No such group"
-msgstr "Este grupo não existe"
-
-#: ../../mod/network.php:140
-msgid "Group is empty"
-msgstr "O grupo está vazio"
-
-#: ../../mod/network.php:144
-msgid "Group: "
-msgstr "Grupo: "
-
-#: ../../mod/network.php:154
-msgid "Contact: "
-msgstr "Contato: "
-
-#: ../../mod/network.php:156
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr ""
-"Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação "
-"pública."
-
-#: ../../mod/network.php:161
-msgid "Invalid contact."
-msgstr "Contato inválido."
-
-#: ../../mod/network.php:262 ../../mod/register.php:465
-#: ../../mod/profile.php:265 ../../mod/display.php:147
-msgid ""
-"Shared content is covered by the Creative Commons "
-"Attribution 3.0 license."
-msgstr ""
-"O conteúdo compartilhado está coberto pela licença Creative Commons "
-"Atribuição 3.0."
-
-#: ../../mod/notes.php:41 ../../mod/apps.php:8
-msgid "Private Notes"
-msgstr "Anotações privadas"
-
-#: ../../mod/notes.php:60
-msgid "Save"
-msgstr "Salvar"
-
-#: ../../mod/attach.php:6
-msgid "Item not available."
-msgstr "O item não está disponível."
-
-#: ../../mod/attach.php:16
-msgid "Item was not found."
-msgstr "O item não foi encontrado."
-
-#: ../../mod/group.php:27
-msgid "Group created."
-msgstr "O grupo foi criado."
-
-#: ../../mod/group.php:33
-msgid "Could not create group."
-msgstr "Não foi possível criar o grupo."
-
-#: ../../mod/group.php:43 ../../mod/group.php:115
-msgid "Group not found."
-msgstr "O grupo não foi encontrado."
-
-#: ../../mod/group.php:56
-msgid "Group name changed."
-msgstr "O nome do grupo foi alterado."
-
-#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:255
-msgid "Permission denied"
-msgstr "Permissão negada"
-
-#: ../../mod/group.php:74
-msgid "Create a group of contacts/friends."
-msgstr "Criar um grupo de contatos/amigos."
-
-#: ../../mod/group.php:75 ../../mod/group.php:158
-msgid "Group Name: "
-msgstr "Nome do grupo: "
-
-#: ../../mod/group.php:90
-msgid "Group removed."
-msgstr "O grupo foi removido."
-
-#: ../../mod/group.php:92
-msgid "Unable to remove group."
-msgstr "Não foi possível remover o grupo."
-
-#: ../../mod/group.php:156 ../../mod/profperm.php:96
-msgid "Click on a contact to add or remove."
-msgstr "Clique em um contato para adicionar ou remover."
-
-#: ../../mod/group.php:157
-msgid "Group Editor"
-msgstr "Editor de grupo"
-
-#: ../../mod/group.php:172
-msgid "Members"
-msgstr "Membros"
-
-#: ../../mod/group.php:186
-msgid "All Contacts"
-msgstr "Todos os contatos"
-
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:46
-msgid "Invalid profile identifier."
-msgstr "Identificador de perfil inválido."
-
-#: ../../mod/profperm.php:92
-msgid "Profile Visibility Editor"
-msgstr "Editor de visibilidade do perfil"
-
-#: ../../mod/profperm.php:94 ../../mod/profile.php:116
-#: ../../include/profile_advanced.php:7
-msgid "Profile"
-msgstr "Perfil "
-
-#: ../../mod/profperm.php:105
-msgid "Visible To"
-msgstr "Visível para"
-
-#: ../../mod/profperm.php:116
-msgid "All Contacts (with secure profile access)"
-msgstr "Todos os contatos (com acesso a perfil seguro)"
-
-#: ../../mod/viewconnections.php:25 ../../boot.php:2059
-msgid "View Contacts"
-msgstr "Ver contatos"
-
-#: ../../mod/viewconnections.php:40
-msgid "No contacts."
-msgstr "Nenhum contato."
-
-#: ../../mod/register.php:49
-msgid "Invalid OpenID url"
-msgstr "A URL do OpenID é inválida"
-
-#: ../../mod/register.php:64
-msgid "Please enter the required information."
-msgstr "Por favor, forneça a informação solicitada."
-
-#: ../../mod/register.php:76
-msgid "Please use a shorter name."
-msgstr "Por favor, use um nome mais curto."
-
-#: ../../mod/register.php:78
-msgid "Name too short."
-msgstr "O nome é muito curto."
-
-#: ../../mod/register.php:93
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
-
-#: ../../mod/register.php:97
-msgid "Your email domain is not among those allowed on this site."
-msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
-
-#: ../../mod/register.php:100
-msgid "Not a valid email address."
-msgstr "Não é um endereço de e-mail válido."
-
-#: ../../mod/register.php:106
-msgid "Cannot use that email."
-msgstr "Não é possível usar esse e-mail."
-
-#: ../../mod/register.php:111
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr ""
-"A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", "
-"\"-\", e \"_\", além disso, deve começar com uma letra."
-
-#: ../../mod/register.php:117 ../../mod/register.php:217
-msgid "Nickname is already registered. Please choose another."
-msgstr "Esta identificação já foi registrada. Por favor, escolha outro."
-
-#: ../../mod/register.php:136
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
-
-#: ../../mod/register.php:203
-msgid "An error occurred during registration. Please try again."
-msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
-
-#: ../../mod/register.php:239
-msgid "An error occurred creating your default profile. Please try again."
-msgstr ""
-"Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
-
-#: ../../mod/register.php:333 ../../mod/regmod.php:96
-#, php-format
-msgid "Registration details for %s"
-msgstr "Detalhes do registro de %s"
-
-#: ../../mod/register.php:341
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr ""
-"O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores "
-"informações."
-
-#: ../../mod/register.php:345
-msgid "Failed to send email message. Here is the message that failed."
-msgstr ""
-"Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não "
-"foi."
-
-#: ../../mod/register.php:350
-msgid "Your registration can not be processed."
-msgstr "Não foi possível processar o seu registro."
-
-#: ../../mod/register.php:383
-#, php-format
-msgid "Registration request at %s"
-msgstr "Solicitação de registro em %s"
-
-#: ../../mod/register.php:392
-msgid "Your registration is pending approval by the site owner."
-msgstr ""
-"A aprovação do seu registro está pendente junto ao administrador do site."
-
-#: ../../mod/register.php:440
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr ""
-"Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo "
-"seu OpenID e clicando em 'Registrar'."
-
-#: ../../mod/register.php:441
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr ""
-"Se você não está familiarizado com o OpenID, por favor, deixe esse campo em "
-"branco e preencha os outros itens."
-
-#: ../../mod/register.php:442
-msgid "Your OpenID (optional): "
-msgstr "Seu OpenID (opcional): "
-
-#: ../../mod/register.php:456
-msgid "Include your profile in member directory?"
-msgstr "Incluir o seu perfil no diretório de membros?"
-
-#: ../../mod/register.php:472
-msgid "Registration"
-msgstr "Registro"
-
-#: ../../mod/register.php:480
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Seu nome completo (por exemplo, José da Silva): "
-
-#: ../../mod/register.php:481
-msgid "Your Email Address: "
-msgstr "Seu endereço de e-mail: "
-
-#: ../../mod/register.php:482
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'nickname@$sitename'."
-msgstr ""
-"Selecione uma identificação para o perfil. Ela deve começar com um caractere"
-" alfabético. O endereço do seu perfil neste site será "
-"'identificação@$sitename'"
-
-#: ../../mod/register.php:483
-msgid "Choose a nickname: "
-msgstr "Escolha uma identificação: "
-
-#: ../../mod/register.php:486 ../../include/nav.php:59 ../../boot.php:835
-msgid "Register"
-msgstr "Registrar"
-
-#: ../../mod/like.php:110 ../../addon/facebook/facebook.php:774
-#: ../../include/conversation.php:20
-msgid "status"
-msgstr "status"
-
-#: ../../mod/like.php:127 ../../addon/facebook/facebook.php:778
-#: ../../include/conversation.php:25
+#: ../../include/conversation.php:161 ../../mod/like.php:134
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s gosta de %3$s de %2$s"
-#: ../../mod/like.php:129 ../../include/conversation.php:28
+#: ../../include/conversation.php:164 ../../mod/like.php:136
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s não gosta de %3$s de %2$s"
-#: ../../mod/friendika.php:43
-msgid "This is Friendika version"
-msgstr "Este é o Friendika versão"
-
-#: ../../mod/friendika.php:44
-msgid "running at web location"
-msgstr "sendo executado no endereço web"
-
-#: ../../mod/friendika.php:46
-msgid ""
-"Shared content within the Friendika network is provided under the Creative Commons "
-"Attribution 3.0 license"
-msgstr ""
-"O compartilhamento de conteúdo com a rede Friendika ocorre sob a licença Creative Commons "
-"Atribuição 3.0"
-
-#: ../../mod/friendika.php:48
-msgid ""
-"Please visit Project.Friendika.com to learn "
-"more about the Friendika project."
-msgstr ""
-"Por favor, visite o project.friendika.com para "
-"aprender mais sobre o Projeto Friendika."
-
-#: ../../mod/friendika.php:50
-msgid "Bug reports and issues: please visit"
-msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
-
-#: ../../mod/friendika.php:51
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - "
-"dot com"
-msgstr ""
-"Para sugestões, pedidos, doações, etc., por favor, envie um e-mail para info"
-" arroba friendika ponto com"
-
-#: ../../mod/friendika.php:56
-msgid "Installed plugins/addons/apps"
-msgstr "Plugins/complementos/aplicações instalados"
-
-#: ../../mod/friendika.php:64
-msgid "No installed plugins/addons/apps"
-msgstr "Nenhum plugin/complemento/aplicação instalado"
-
-#: ../../mod/regmod.php:12
-msgid "Please login."
-msgstr "Por favor, autentique-se."
-
-#: ../../mod/regmod.php:56
+#: ../../include/conversation.php:201
#, php-format
-msgid "Registration revoked for %s"
-msgstr "O registro de %s foi revogado"
+msgid "%1$s is now connected with %2$s"
+msgstr "%1$s agora está conectado com %2$s"
-#: ../../mod/regmod.php:105
-msgid "Account approved."
-msgstr "A conta foi aprovada."
-
-#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
-msgid "[Embedded content - reload page to view]"
-msgstr "[Conteúdo incorporado - recarregue a página para ver]"
-
-#: ../../mod/item.php:37
-msgid "Unable to locate original post."
-msgstr "Não foi possível localizar a publicação original."
-
-#: ../../mod/item.php:128
-msgid "Empty post discarded."
-msgstr "A publicação em branco foi descartada."
-
-#: ../../mod/item.php:214 ../../mod/message.php:93
-#: ../../mod/wall_upload.php:79 ../../mod/wall_upload.php:88
-#: ../../mod/wall_upload.php:95
-msgid "Wall Photos"
-msgstr "Fotos do mural"
-
-#: ../../mod/item.php:517 ../../mod/item.php:560 ../../mod/item.php:583
-#: ../../mod/item.php:624 ../../mod/dfrn_notify.php:193
-#: ../../mod/dfrn_notify.php:401 ../../mod/dfrn_notify.php:444
-#: ../../mod/dfrn_notify.php:530 ../../mod/dfrn_notify.php:571
-msgid "noreply"
-msgstr "naoresponda"
-
-#: ../../mod/item.php:559 ../../mod/item.php:623 ../../mod/dfrn_notify.php:570
-msgid "Administrator@"
-msgstr "Administrador@"
-
-#: ../../mod/item.php:562 ../../mod/dfrn_notify.php:446
-#: ../../mod/dfrn_notify.php:573
+#: ../../include/conversation.php:236
#, php-format
-msgid "%s commented on an item at %s"
-msgstr "%s comentou um item em %s"
+msgid "%1$s poked %2$s"
+msgstr "%1$s cutucou %2$s"
-#: ../../mod/item.php:626
+#: ../../include/conversation.php:258 ../../mod/mood.php:63
#, php-format
-msgid "%s posted to your profile wall at %s"
-msgstr "%s publicou no mural do seu perfil em %s"
+msgid "%1$s is currently %2$s"
+msgstr "%1$s atualmente está %2$s"
-#: ../../mod/item.php:655
-msgid "System error. Post not saved."
-msgstr "Erro no sistema. A publicação não foi salva."
+#: ../../include/conversation.php:631 ../../include/ItemObject.php:114
+msgid "Select"
+msgstr "Selecionar"
-#: ../../mod/item.php:674
+#: ../../include/conversation.php:632 ../../include/ItemObject.php:108
+#: ../../mod/thing.php:236 ../../mod/settings.php:578 ../../mod/group.php:176
+#: ../../mod/admin.php:746 ../../mod/connedit.php:359
+#: ../../mod/filestorage.php:171 ../../mod/photos.php:1044
+msgid "Delete"
+msgstr "Excluir"
+
+#: ../../include/conversation.php:642 ../../include/ItemObject.php:161
+msgid "Message is verified"
+msgstr "A mensagem foi verificada"
+
+#: ../../include/conversation.php:662
#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendika social "
-"network."
-msgstr ""
-"Esta mensagem foi enviada para você por %s, um membro da rede social "
-"Friendika."
+msgid "View %s's profile @ %s"
+msgstr "Ver o perfil de %s's @ %s"
-#: ../../mod/item.php:676
+#: ../../include/conversation.php:676
+msgid "Categories:"
+msgstr "Categorias:"
+
+#: ../../include/conversation.php:677
+msgid "Filed under:"
+msgstr "Armazenado sob:"
+
+#: ../../include/conversation.php:686 ../../include/ItemObject.php:226
#, php-format
-msgid "You may visit them online at %s"
-msgstr "Você pode visitá-lo em %s"
+msgid " from %s"
+msgstr "de %s"
-#: ../../mod/item.php:677
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr ""
-"Por favor, entre em contato com o remetente respondendo a esta publicação, "
-"caso você não queira mais receber estas mensagens."
-
-#: ../../mod/item.php:679
+#: ../../include/conversation.php:689 ../../include/ItemObject.php:229
#, php-format
-msgid "%s posted an update."
-msgstr "%s publicou uma atualização."
+msgid "last edited: %s"
+msgstr "última edição: %s"
-#: ../../mod/item.php:730 ../../mod/display.php:25 ../../mod/display.php:142
-msgid "Item not found."
-msgstr "O item não foi encontrado."
-
-#: ../../mod/profile_photo.php:28
-msgid "Image uploaded but image cropping failed."
-msgstr "A imagem foi enviada, mas não foi possível cortá-la."
-
-#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68
-#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:248
+#: ../../include/conversation.php:690 ../../include/ItemObject.php:230
#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Não foi possível reduzir o tamanho da imagem [%s]."
+msgid "Expires: %s"
+msgstr "Expira: %s"
-#: ../../mod/profile_photo.php:95
-msgid "Unable to process image"
-msgstr "Não foi possível processar a imagem"
+#: ../../include/conversation.php:705
+msgid "View in context"
+msgstr "Ver no contexto"
-#: ../../mod/profile_photo.php:109 ../../mod/wall_upload.php:56
+#: ../../include/conversation.php:707 ../../include/conversation.php:1120
+#: ../../include/ItemObject.php:259 ../../mod/editpost.php:121
+#: ../../mod/mail.php:222 ../../mod/mail.php:336 ../../mod/editlayout.php:115
+#: ../../mod/editwebpage.php:153 ../../mod/editblock.php:129
+#: ../../mod/photos.php:975
+msgid "Please wait"
+msgstr "Por favor, espere"
+
+#: ../../include/conversation.php:834
+msgid "remove"
+msgstr "remover"
+
+#: ../../include/conversation.php:838
+msgid "Loading..."
+msgstr "Carregando..."
+
+#: ../../include/conversation.php:839
+msgid "Delete Selected Items"
+msgstr "Excluir os itens selecionados"
+
+#: ../../include/conversation.php:930
+msgid "View Source"
+msgstr "Ver a fonte"
+
+#: ../../include/conversation.php:931
+msgid "Follow Thread"
+msgstr "Acompanhar a discussão"
+
+#: ../../include/conversation.php:932
+msgid "View Status"
+msgstr "Ver status"
+
+#: ../../include/conversation.php:934
+msgid "View Photos"
+msgstr "Ver fotos"
+
+#: ../../include/conversation.php:935
+msgid "Matrix Activity"
+msgstr "Atividade na matriz"
+
+#: ../../include/conversation.php:936
+msgid "Edit Contact"
+msgstr "Editar contato"
+
+#: ../../include/conversation.php:937
+msgid "Send PM"
+msgstr "Enviar MP"
+
+#: ../../include/conversation.php:938
+msgid "Poke"
+msgstr "Cutucar"
+
+#: ../../include/conversation.php:1000
#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "A imagem excede o limite de tamanho de %d"
+msgid "%s likes this."
+msgstr "%s gostou disso."
-#: ../../mod/profile_photo.php:193
-msgid "Upload File:"
-msgstr "Enviar arquivo:"
+#: ../../include/conversation.php:1000
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s não gostou disso."
-#: ../../mod/profile_photo.php:194
-msgid "Upload Profile Photo"
-msgstr "Enviar foto do perfil"
+#: ../../include/conversation.php:1004
+#, php-format
+msgid "%2$d people like this."
+msgid_plural "%2$d people like this."
+msgstr[0] ""
+msgstr[1] "%2$d pessoas gostaram disso."
-#: ../../mod/profile_photo.php:195
-msgid "Upload"
-msgstr "Enviar"
+#: ../../include/conversation.php:1006
+#, php-format
+msgid "%2$d people don't like this."
+msgid_plural "%2$d people don't like this."
+msgstr[0] ""
+msgstr[1] "%2$d pessoas não gostaram disso."
-#: ../../mod/profile_photo.php:196
-msgid "skip this step"
-msgstr "pule esta etapa"
+#: ../../include/conversation.php:1012
+msgid "and"
+msgstr "e"
-#: ../../mod/profile_photo.php:196
-msgid "select a photo from your photo albums"
-msgstr "selecione uma foto do seu álbum de fotos"
+#: ../../include/conversation.php:1015
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ""
+msgstr[1] ", e mais %d outras pessoas"
-#: ../../mod/profile_photo.php:209
-msgid "Crop Image"
-msgstr "Cortar a imagem"
+#: ../../include/conversation.php:1016
+#, php-format
+msgid "%s like this."
+msgstr "%s gostou disso."
-#: ../../mod/profile_photo.php:210
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
+#: ../../include/conversation.php:1016
+#, php-format
+msgid "%s don't like this."
+msgstr "%s não gostou disso."
-#: ../../mod/profile_photo.php:211
-msgid "Done Editing"
-msgstr "Encerrar a edição"
+#: ../../include/conversation.php:1066
+msgid "Visible to everybody"
+msgstr "Visível para todos"
-#: ../../mod/profile_photo.php:239
-msgid "Image uploaded successfully."
-msgstr "A imagem foi enviada com sucesso."
-
-#: ../../mod/removeme.php:42 ../../mod/removeme.php:45
-msgid "Remove My Account"
-msgstr "Remover minha conta"
-
-#: ../../mod/removeme.php:43
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr ""
-"Isso removerá completamente a sua conta. Uma vez feito isso, não será mais "
-"possível recuperá-la."
-
-#: ../../mod/removeme.php:44
-msgid "Please enter your password for verification:"
-msgstr "Por favor, digite a sua senha para verificação:"
-
-#: ../../mod/message.php:18
-msgid "No recipient selected."
-msgstr "Não foi selecionado nenhum destinatário."
-
-#: ../../mod/message.php:23
-msgid "[no subject]"
-msgstr "[sem assunto]"
-
-#: ../../mod/message.php:34
-msgid "Unable to locate contact information."
-msgstr "Não foi possível localizar informação do contato."
-
-#: ../../mod/message.php:102
-msgid "Message sent."
-msgstr "A mensagem foi enviada."
-
-#: ../../mod/message.php:105
-msgid "Message could not be sent."
-msgstr "Não foi possível enviar a mensagem."
-
-#: ../../mod/message.php:125 ../../include/nav.php:101
-msgid "Messages"
-msgstr "Mensagens"
-
-#: ../../mod/message.php:126
-msgid "Inbox"
-msgstr "Recebidas"
-
-#: ../../mod/message.php:127
-msgid "Outbox"
-msgstr "Enviadas"
-
-#: ../../mod/message.php:128
-msgid "New Message"
-msgstr "Nova mensagem"
-
-#: ../../mod/message.php:142
-msgid "Message deleted."
-msgstr "A mensagem foi excluída."
-
-#: ../../mod/message.php:158
-msgid "Conversation removed."
-msgstr "A conversa foi removida."
-
-#: ../../mod/message.php:172 ../../include/conversation.php:684
+#: ../../include/conversation.php:1067 ../../mod/mail.php:171
+#: ../../mod/mail.php:269
msgid "Please enter a link URL:"
msgstr "Por favor, digite uma URL:"
-#: ../../mod/message.php:180
-msgid "Send Private Message"
-msgstr "Enviar mensagem privada"
+#: ../../include/conversation.php:1068
+msgid "Please enter a video link/URL:"
+msgstr "Por favor, digite o link/URL do vídeo:"
-#: ../../mod/message.php:181 ../../mod/message.php:315
-msgid "To:"
-msgstr "Para:"
+#: ../../include/conversation.php:1069
+msgid "Please enter an audio link/URL:"
+msgstr "Por favor, digite o link/URL do áudio:"
-#: ../../mod/message.php:182 ../../mod/message.php:316
-msgid "Subject:"
-msgstr "Assunto:"
+#: ../../include/conversation.php:1070
+msgid "Tag term:"
+msgstr "Etiqueta:"
-#: ../../mod/message.php:185 ../../mod/message.php:319 ../../mod/invite.php:63
-msgid "Your message:"
-msgstr "Sua mensagem:"
+#: ../../include/conversation.php:1071 ../../mod/filer.php:35
+msgid "Save to Folder:"
+msgstr "Salvar para a pasta:"
-#: ../../mod/message.php:224
-msgid "No messages."
-msgstr "Nenhuma mensagem."
+#: ../../include/conversation.php:1072
+msgid "Where are you right now?"
+msgstr "Onde você está agora?"
-#: ../../mod/message.php:237
-msgid "Delete conversation"
-msgstr "Excluir conversa"
+#: ../../include/conversation.php:1073 ../../mod/editpost.php:52
+#: ../../mod/mail.php:172 ../../mod/mail.php:270
+msgid "Expires YYYY-MM-DD HH:MM"
+msgstr "Expira YYYY-MM-DD HH:MM"
-#: ../../mod/message.php:240
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../include/conversation.php:1083 ../../include/ItemObject.php:557
+#: ../../mod/webpages.php:122 ../../mod/editpost.php:141
+#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:177
+#: ../../mod/editblock.php:151 ../../mod/photos.php:995
+msgid "Preview"
+msgstr "Pré-visualizar"
-#: ../../mod/message.php:267
-msgid "Message not available."
-msgstr "A mensagem não está disponível."
+#: ../../include/conversation.php:1097 ../../mod/photos.php:974
+msgid "Share"
+msgstr "Compartilhar"
-#: ../../mod/message.php:304
-msgid "Delete message"
-msgstr "Excluir a mensagem"
+#: ../../include/conversation.php:1099 ../../mod/editwebpage.php:140
+msgid "Page link title"
+msgstr "Título do link da página"
-#: ../../mod/message.php:314
-msgid "Send Reply"
-msgstr "Enviar resposta"
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:113
+#: ../../mod/mail.php:219 ../../mod/mail.php:332 ../../mod/editlayout.php:107
+#: ../../mod/editwebpage.php:145 ../../mod/editblock.php:121
+msgid "Upload photo"
+msgstr "Enviar foto"
-#: ../../mod/profile.php:11 ../../boot.php:2270
-msgid "No profile"
-msgstr "Nenhum perfil"
+#: ../../include/conversation.php:1102
+msgid "upload photo"
+msgstr "enviar foto"
-#: ../../mod/profile.php:59
-msgid "Access to this profile has been restricted."
-msgstr "O acesso a este perfil está restrito."
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:114
+#: ../../mod/mail.php:220 ../../mod/mail.php:333 ../../mod/editlayout.php:108
+#: ../../mod/editwebpage.php:146 ../../mod/editblock.php:122
+msgid "Attach file"
+msgstr "Anexar arquivo"
-#: ../../mod/profile.php:115
-msgid "Status"
-msgstr "Status"
+#: ../../include/conversation.php:1104
+msgid "attach file"
+msgstr "anexar arquivo"
-#: ../../mod/profile.php:117
-msgid "Photos"
-msgstr "Fotos"
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:115
+#: ../../mod/mail.php:221 ../../mod/mail.php:334 ../../mod/editlayout.php:109
+#: ../../mod/editwebpage.php:147 ../../mod/editblock.php:123
+msgid "Insert web link"
+msgstr "Inserir link web"
-#: ../../mod/openid.php:62 ../../mod/openid.php:122 ../../include/auth.php:114
-#: ../../include/auth.php:139 ../../include/auth.php:192
-msgid "Login failed."
-msgstr "Não foi possível autenticar."
+#: ../../include/conversation.php:1106
+msgid "web link"
+msgstr "link web"
-#: ../../mod/openid.php:78 ../../include/auth.php:208
-msgid "Welcome "
-msgstr "Bem-vindo(a) "
+#: ../../include/conversation.php:1107
+msgid "Insert video link"
+msgstr "Inserir link de vídeo"
-#: ../../mod/openid.php:79 ../../include/auth.php:209
-msgid "Please upload a profile photo."
-msgstr "Por favor, envie uma foto para o perfil."
+#: ../../include/conversation.php:1108
+msgid "video link"
+msgstr "link de vídeo"
-#: ../../mod/openid.php:82 ../../include/auth.php:212
-msgid "Welcome back "
-msgstr "Bem-vindo(a) de volta "
+#: ../../include/conversation.php:1109
+msgid "Insert audio link"
+msgstr "Inserir link de áudio"
-#: ../../mod/follow.php:43
-msgid "The profile address specified does not provide adequate information."
-msgstr "O endereço de perfil especificado não fornece informação adequada."
+#: ../../include/conversation.php:1110
+msgid "audio link"
+msgstr "link de áudio"
-#: ../../mod/follow.php:45
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr ""
-"Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias "
-"compatível."
+#: ../../include/conversation.php:1111 ../../mod/editpost.php:119
+#: ../../mod/editlayout.php:113 ../../mod/editwebpage.php:151
+#: ../../mod/editblock.php:127
+msgid "Set your location"
+msgstr "Definir sua localização"
-#: ../../mod/follow.php:47
-msgid "An author or name was not found."
-msgstr "Não foi encontrado nenhum autor ou nome."
+#: ../../include/conversation.php:1112
+msgid "set location"
+msgstr "definir localização"
-#: ../../mod/follow.php:49
-msgid "No browser URL could be matched to this address."
-msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
+#: ../../include/conversation.php:1113 ../../mod/editpost.php:120
+#: ../../mod/editlayout.php:114 ../../mod/editwebpage.php:152
+#: ../../mod/editblock.php:128
+msgid "Clear browser location"
+msgstr "Limpar a localização do navegador"
-#: ../../mod/follow.php:57
+#: ../../include/conversation.php:1114
+msgid "clear location"
+msgstr "limpar a localização"
+
+#: ../../include/conversation.php:1116 ../../mod/editpost.php:133
+#: ../../mod/editlayout.php:127 ../../mod/editwebpage.php:169
+#: ../../mod/editblock.php:142
+msgid "Set title"
+msgstr "Definir o título"
+
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:135
+#: ../../mod/editlayout.php:130 ../../mod/editwebpage.php:171
+#: ../../mod/editblock.php:145
+msgid "Categories (comma-separated list)"
+msgstr "Categorias (lista separada por vírgulas)"
+
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:122
+#: ../../mod/editlayout.php:116 ../../mod/editwebpage.php:154
+#: ../../mod/editblock.php:130
+msgid "Permission settings"
+msgstr "Configurações de permissão"
+
+#: ../../include/conversation.php:1122
+msgid "permissions"
+msgstr "permissões"
+
+#: ../../include/conversation.php:1130 ../../mod/editpost.php:130
+#: ../../mod/editlayout.php:124 ../../mod/editwebpage.php:164
+#: ../../mod/editblock.php:139
+msgid "Public post"
+msgstr "Publicação pública"
+
+#: ../../include/conversation.php:1132 ../../mod/editpost.php:136
+#: ../../mod/editlayout.php:131 ../../mod/editwebpage.php:172
+#: ../../mod/editblock.php:146
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
+
+#: ../../include/conversation.php:1145 ../../mod/editpost.php:147
+#: ../../mod/mail.php:226 ../../mod/mail.php:339 ../../mod/editlayout.php:141
+#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:156
+msgid "Set expiration date"
+msgstr "Definir data de expiração"
+
+#: ../../include/conversation.php:1147 ../../include/ItemObject.php:560
+#: ../../mod/editpost.php:149 ../../mod/mail.php:228 ../../mod/mail.php:341
+msgid "Encrypt text"
+msgstr "Encriptar texto"
+
+#: ../../include/conversation.php:1149 ../../mod/editpost.php:151
+msgid "OK"
+msgstr "Ok"
+
+#: ../../include/conversation.php:1150 ../../mod/settings.php:516
+#: ../../mod/settings.php:542 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/editpost.php:152 ../../mod/fbrowser.php:82
+#: ../../mod/fbrowser.php:117
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: ../../include/conversation.php:1381
+msgid "Commented Order"
+msgstr "Recentes e comentados"
+
+#: ../../include/conversation.php:1384
+msgid "Sort by Comment Date"
+msgstr "Ordenar pela data do último comentário"
+
+#: ../../include/conversation.php:1387
+msgid "Posted Order"
+msgstr "Recentemente publicados"
+
+#: ../../include/conversation.php:1390
+msgid "Sort by Post Date"
+msgstr "Ordenar pela data da publicação"
+
+#: ../../include/conversation.php:1394
+msgid "Personal"
+msgstr "Pessoal"
+
+#: ../../include/conversation.php:1397
+msgid "Posts that mention or involve you"
+msgstr "Publicações que mencionam ou envolvem você"
+
+#: ../../include/conversation.php:1400 ../../mod/menu.php:61
+#: ../../mod/connections.php:211
+msgid "New"
+msgstr "Novo"
+
+#: ../../include/conversation.php:1403
+msgid "Activity Stream - by date"
+msgstr "Fluxo de atividades - por data"
+
+#: ../../include/conversation.php:1410
+msgid "Starred"
+msgstr "Estrelados"
+
+#: ../../include/conversation.php:1413
+msgid "Favourite Posts"
+msgstr "Publicações favoritas"
+
+#: ../../include/conversation.php:1420
+msgid "Spam"
+msgstr "Spam"
+
+#: ../../include/conversation.php:1423
+msgid "Posts flagged as SPAM"
+msgstr "Publicações marcadas como SPAM"
+
+#: ../../include/conversation.php:1454
+msgid "Channel"
+msgstr "Canal"
+
+#: ../../include/conversation.php:1457
+msgid "Status Messages and Posts"
+msgstr "Mensagens de status e publicações"
+
+#: ../../include/conversation.php:1466
+msgid "About"
+msgstr "Sobre"
+
+#: ../../include/conversation.php:1469
+msgid "Profile Details"
+msgstr "Detalhes do perfil"
+
+#: ../../include/conversation.php:1478 ../../include/photos.php:302
+msgid "Photo Albums"
+msgstr "Álbuns de fotos"
+
+#: ../../include/conversation.php:1487
+msgid "Files and Storage"
+msgstr "Arquivos e armazenamento"
+
+#: ../../include/conversation.php:1496 ../../include/conversation.php:1499
+msgid "Chatrooms"
+msgstr "Salas de bate-papo"
+
+#: ../../include/conversation.php:1509
+msgid "Events and Calendar"
+msgstr "Eventos e calendário"
+
+#: ../../include/conversation.php:1517
+msgid "Saved Bookmarks"
+msgstr "Links guardados"
+
+#: ../../include/conversation.php:1528
+msgid "Manage Webpages"
+msgstr "Administrar páginas web"
+
+#: ../../include/identity.php:30 ../../mod/item.php:1187
+msgid "Unable to obtain identity information from database"
+msgstr "Não foi possível obter a informação da identidade a partir do banco de dados"
+
+#: ../../include/identity.php:63
+msgid "Empty name"
+msgstr "O nome está em branco"
+
+#: ../../include/identity.php:65
+msgid "Name too long"
+msgstr "O nome é muito grande"
+
+#: ../../include/identity.php:147
+msgid "No account identifier"
+msgstr "Nenhuma identificação da conta"
+
+#: ../../include/identity.php:157
+msgid "Nickname is required."
+msgstr "É necessário informar o apelido."
+
+#: ../../include/identity.php:171
msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
-"Perfil limitado. Essa pessoa não poderá receber notificações "
-"diretas/pessoais de você."
+"Nickname has unsupported characters or is already being used on this site."
+msgstr "A identificação possui caracteres não suportados ou já está sendo usada nesse site."
-#: ../../mod/follow.php:112
-msgid "Unable to retrieve contact information."
-msgstr "Não foi possível recuperar a informação do contato."
+#: ../../include/identity.php:230
+msgid "Unable to retrieve created identity"
+msgstr "Não foi possível recuperar a identidade criada"
-#: ../../mod/follow.php:158
-msgid "following"
-msgstr "acompanhando"
+#: ../../include/identity.php:289
+msgid "Default Profile"
+msgstr "Perfil padrão"
-#: ../../mod/display.php:135
-msgid "Item has been removed."
-msgstr "O item foi removido."
+#: ../../include/identity.php:481
+msgid "Requested channel is not available."
+msgstr "Canal solicitado não está disponível."
-#: ../../mod/dfrn_notify.php:251
-msgid "New mail received at "
-msgstr "Nova mensagem recebida em "
+#: ../../include/identity.php:528 ../../mod/webpages.php:8
+#: ../../mod/connect.php:13 ../../mod/layouts.php:8
+#: ../../mod/achievements.php:8 ../../mod/blocks.php:10
+#: ../../mod/profile.php:16 ../../mod/filestorage.php:40
+msgid "Requested profile is not available."
+msgstr "O perfil solicitado não está disponível."
-#: ../../mod/apps.php:6
-msgid "Applications"
-msgstr "Aplicações"
+#: ../../include/identity.php:580
+msgid " Sorry, you don't have the permission to view this profile. "
+msgstr "Desculpe, você não tem permissão para ver este perfil."
-#: ../../mod/search.php:26 ../../include/nav.php:70 ../../boot.php:2114
-msgid "Search"
-msgstr "Pesquisar"
-
-#: ../../mod/search.php:69
-msgid "No results."
-msgstr "Nenhum resultado."
-
-#: ../../mod/profiles.php:21 ../../mod/profiles.php:240
-#: ../../mod/profiles.php:345 ../../mod/dfrn_confirm.php:62
-msgid "Profile not found."
-msgstr "O perfil não foi encontrado."
-
-#: ../../mod/profiles.php:28
-msgid "Profile Name is required."
-msgstr "É necessário informar o nome do perfil."
-
-#: ../../mod/profiles.php:202
-msgid "Profile updated."
-msgstr "O perfil foi atualizado."
-
-#: ../../mod/profiles.php:257
-msgid "Profile deleted."
-msgstr "O perfil foi excluído."
-
-#: ../../mod/profiles.php:273 ../../mod/profiles.php:304
-msgid "Profile-"
-msgstr "Perfil-"
-
-#: ../../mod/profiles.php:292 ../../mod/profiles.php:331
-msgid "New profile created."
-msgstr "O novo perfil foi criado."
-
-#: ../../mod/profiles.php:310
-msgid "Profile unavailable to clone."
-msgstr "O perfil não está disponível para clonagem."
-
-#: ../../mod/profiles.php:357
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?"
-
-#: ../../mod/profiles.php:366
-msgid "Hide profile details and all your messages from unknown viewers?"
-msgstr ""
-"Esconder os detalhes do perfil e todas as suas mensagens dos visitantes "
-"desconhecidos?"
-
-#: ../../mod/profiles.php:382
-msgid "Edit Profile Details"
-msgstr "Editar os detalhes do perfil"
-
-#: ../../mod/profiles.php:384
-msgid "View this profile"
-msgstr "Ver este perfil"
-
-#: ../../mod/profiles.php:385
-msgid "Create a new profile using these settings"
-msgstr "Criar um novo perfil usando estas configurações"
-
-#: ../../mod/profiles.php:386
-msgid "Clone this profile"
-msgstr "Clonar este perfil"
-
-#: ../../mod/profiles.php:387
-msgid "Delete this profile"
-msgstr "Excluir este perfil"
-
-#: ../../mod/profiles.php:388
-msgid "Profile Name:"
-msgstr "Nome do perfil:"
-
-#: ../../mod/profiles.php:389
-msgid "Your Full Name:"
-msgstr "Seu nome completo:"
-
-#: ../../mod/profiles.php:390
-msgid "Title/Description:"
-msgstr "Título/Descrição:"
-
-#: ../../mod/profiles.php:391
-msgid "Your Gender:"
-msgstr "Seu gênero:"
-
-#: ../../mod/profiles.php:392
-msgid "Birthday (y/m/d):"
-msgstr "Data de nascimento (ano/mês/dia):"
-
-#: ../../mod/profiles.php:393
-msgid "Street Address:"
-msgstr "Endereço:"
-
-#: ../../mod/profiles.php:394
-msgid "Locality/City:"
-msgstr "Localidade/Cidade:"
-
-#: ../../mod/profiles.php:395
-msgid "Postal/Zip Code:"
-msgstr "CEP:"
-
-#: ../../mod/profiles.php:396
-msgid "Country:"
-msgstr "País:"
-
-#: ../../mod/profiles.php:397
-msgid "Region/State:"
-msgstr "Região/Estado:"
-
-#: ../../mod/profiles.php:398
-msgid "♥ Marital Status:"
-msgstr "Estado civil ♥:"
-
-#: ../../mod/profiles.php:399
-msgid "Who: (if applicable)"
-msgstr "Quem: (se aplicável)"
-
-#: ../../mod/profiles.php:400
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
-
-#: ../../mod/profiles.php:401 ../../include/profile_advanced.php:90
-msgid "Sexual Preference:"
-msgstr "Preferência sexual:"
-
-#: ../../mod/profiles.php:402
-msgid "Homepage URL:"
-msgstr "Endereço do site web:"
-
-#: ../../mod/profiles.php:403 ../../include/profile_advanced.php:115
-msgid "Political Views:"
-msgstr "Posição política:"
-
-#: ../../mod/profiles.php:404
-msgid "Religious Views:"
-msgstr "Orientação religiosa:"
-
-#: ../../mod/profiles.php:405
-msgid "Public Keywords:"
-msgstr "Palavras-chave públicas:"
-
-#: ../../mod/profiles.php:406
-msgid "Private Keywords:"
-msgstr "Palavras-chave privadas:"
-
-#: ../../mod/profiles.php:407
-msgid "Example: fishing photography software"
-msgstr "Exemplo: pesca fotografia software"
-
-#: ../../mod/profiles.php:408
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
-
-#: ../../mod/profiles.php:409
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
-
-#: ../../mod/profiles.php:410
-msgid "Tell us about yourself..."
-msgstr "Fale um pouco sobre você..."
-
-#: ../../mod/profiles.php:411
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interesses"
-
-#: ../../mod/profiles.php:412
-msgid "Contact information and Social Networks"
-msgstr "Informações de contato e redes sociais"
-
-#: ../../mod/profiles.php:413
-msgid "Musical interests"
-msgstr "Interesses musicais"
-
-#: ../../mod/profiles.php:414
-msgid "Books, literature"
-msgstr "Livros, literatura"
-
-#: ../../mod/profiles.php:415
-msgid "Television"
-msgstr "Televisão"
-
-#: ../../mod/profiles.php:416
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/dança/cultura/entretenimento"
-
-#: ../../mod/profiles.php:417
-msgid "Love/romance"
-msgstr "Amor/romance"
-
-#: ../../mod/profiles.php:418
-msgid "Work/employment"
-msgstr "Trabalho/emprego"
-
-#: ../../mod/profiles.php:419
-msgid "School/education"
-msgstr "Escola/educação"
-
-#: ../../mod/profiles.php:424
-msgid ""
-"This is your public profile. It may "
-"be visible to anybody using the internet."
-msgstr ""
-"Este é o seu perfil público. Ele pode"
-" estar visível para qualquer um que acesse a Internet."
-
-#: ../../mod/profiles.php:435 ../../mod/directory.php:112
-msgid "Age: "
-msgstr "Idade: "
-
-#: ../../mod/profiles.php:470 ../../include/nav.php:108
-msgid "Profiles"
-msgstr "Perfis"
-
-#: ../../mod/profiles.php:471
+#: ../../include/identity.php:657 ../../mod/profiles.php:603
msgid "Change profile photo"
msgstr "Mudar a foto do perfil"
-#: ../../mod/profiles.php:472
+#: ../../include/identity.php:663
+msgid "Profiles"
+msgstr "Perfis"
+
+#: ../../include/identity.php:663
+msgid "Manage/edit profiles"
+msgstr "Administrar/editar perfis"
+
+#: ../../include/identity.php:664 ../../mod/profiles.php:604
msgid "Create New Profile"
msgstr "Criar um novo perfil"
-#: ../../mod/profiles.php:482
+#: ../../include/identity.php:667
+msgid "Edit Profile"
+msgstr "Editar perfil"
+
+#: ../../include/identity.php:678 ../../mod/profiles.php:615
msgid "Profile Image"
msgstr "Imagem do perfil"
-#: ../../mod/profiles.php:484
-msgid "Visible to everybody"
-msgstr "Visível para todos"
+#: ../../include/identity.php:681 ../../mod/profiles.php:618
+msgid "visible to everybody"
+msgstr "visível para todos"
-#: ../../mod/profiles.php:485
+#: ../../include/identity.php:682 ../../mod/profiles.php:619
msgid "Edit visibility"
msgstr "Editar a visibilidade"
-#: ../../mod/directory.php:40
-msgid "Global Directory"
-msgstr "Diretório global"
-
-#: ../../mod/directory.php:46
-msgid "Normal site view"
-msgstr "Visão normal do site"
-
-#: ../../mod/directory.php:48
-msgid "View all site entries"
-msgstr "Ver todas as entradas do site"
-
-#: ../../mod/directory.php:56
-msgid "Site Directory"
-msgstr "Diretório do site"
-
-#: ../../mod/directory.php:115
-msgid "Gender: "
-msgstr "Gênero: "
-
-#: ../../mod/directory.php:141
-msgid "No entries (some entries may be hidden)."
-msgstr "Nenhuma entrada (algumas entradas podem estar escondidas)."
-
-#: ../../mod/invite.php:28
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Não é um endereço de e-mail válido."
-
-#: ../../mod/invite.php:32
-#, php-format
-msgid "Please join my network on %s"
-msgstr "Por favor, junte-se à minha rede em %s"
-
-#: ../../mod/invite.php:42
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Não foi possível enviar a mensagem."
-
-#: ../../mod/invite.php:46
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d mensagem enviada."
-msgstr[1] "%d mensagens enviadas."
-
-#: ../../mod/invite.php:61
-msgid "Send invitations"
-msgstr "Enviar convites."
-
-#: ../../mod/invite.php:62
-msgid "Enter email addresses, one per line:"
-msgstr "Digite os endereços de e-mail, um por linha:"
-
-#: ../../mod/invite.php:64
-#, php-format
-msgid "Please join my social network on %s"
-msgstr "Por favor, junte-se à minha rede social em %s"
-
-#: ../../mod/invite.php:65
-msgid "To accept this invitation, please visit:"
-msgstr "Para aceitar este convite, por favor visite:"
-
-#: ../../mod/invite.php:66
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr ""
-"Uma vez que você se registrar, por favor conecte-se comigo através da minha "
-"página de perfil em:"
-
-#: ../../mod/dfrn_confirm.php:231
-msgid "Response from remote site was not understood."
-msgstr "A resposta do site remoto não foi compreendida."
-
-#: ../../mod/dfrn_confirm.php:240
-msgid "Unexpected response from remote site: "
-msgstr "Resposta inesperada do site remoto: "
-
-#: ../../mod/dfrn_confirm.php:248
-msgid "Confirmation completed successfully."
-msgstr "A confirmação foi completada com sucesso."
-
-#: ../../mod/dfrn_confirm.php:250 ../../mod/dfrn_confirm.php:264
-#: ../../mod/dfrn_confirm.php:271
-msgid "Remote site reported: "
-msgstr "O site remoto reportou: "
-
-#: ../../mod/dfrn_confirm.php:262
-msgid "Temporary failure. Please wait and try again."
-msgstr "Falha temporária. Por favor, aguarde e tente novamente."
-
-#: ../../mod/dfrn_confirm.php:269
-msgid "Introduction failed or was revoked."
-msgstr "Ocorreu uma falha na introdução ou ela foi revogada."
-
-#: ../../mod/dfrn_confirm.php:387
-msgid "Unable to set contact photo."
-msgstr "Não foi possível definir a foto do contato."
-
-#: ../../mod/dfrn_confirm.php:430 ../../include/conversation.php:61
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s agora é amigo de %2$s"
-
-#: ../../mod/dfrn_confirm.php:501
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
-
-#: ../../mod/dfrn_confirm.php:511
-msgid "Our site encryption key is apparently messed up."
-msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
-
-#: ../../mod/dfrn_confirm.php:522
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr ""
-"Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
-
-#: ../../mod/dfrn_confirm.php:534
-msgid "Contact record was not found for you on our site."
-msgstr "O registro do contato não foi encontrado para você em seu site."
-
-#: ../../mod/dfrn_confirm.php:562
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr ""
-"O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve "
-"funcionar agora, se você tentar de novo."
-
-#: ../../mod/dfrn_confirm.php:573
-msgid "Unable to set your contact credentials on our system."
-msgstr ""
-"Não foi possível definir suas credenciais de contato no nosso sistema."
-
-#: ../../mod/dfrn_confirm.php:626
-msgid "Unable to update your contact profile details on our system"
-msgstr ""
-"Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
-
-#: ../../mod/dfrn_confirm.php:656
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Conexão aceita em %s"
-
-#: ../../addon/facebook/facebook.php:248
-msgid "Facebook disabled"
-msgstr "O Facebook está desabilitado"
-
-#: ../../addon/facebook/facebook.php:253
-msgid "Updating contacts"
-msgstr "Atualizando os contatos"
-
-#: ../../addon/facebook/facebook.php:262
-msgid "Facebook API key is missing."
-msgstr "A chave de API do Facebook não foi encontrada."
-
-#: ../../addon/facebook/facebook.php:269
-msgid "Facebook Connect"
-msgstr "Conexão com o Facebook"
-
-#: ../../addon/facebook/facebook.php:275
-msgid "Install Facebook connector for this account."
-msgstr "Instalar o conector do Facebook nesta conta."
-
-#: ../../addon/facebook/facebook.php:282
-msgid "Remove Facebook connector"
-msgstr "Remover o conector do Facebook"
-
-#: ../../addon/facebook/facebook.php:288
-msgid "Post to Facebook by default"
-msgstr "Publicar no Facebook por padrão"
-
-#: ../../addon/facebook/facebook.php:350
-msgid "Facebook"
-msgstr "Facebook"
-
-#: ../../addon/facebook/facebook.php:351
-msgid "Facebook Connector Settings"
-msgstr "Configurações do conector do Facebook"
-
-#: ../../addon/facebook/facebook.php:365
-msgid "Post to Facebook"
-msgstr "Publicar no Facebook"
-
-#: ../../addon/facebook/facebook.php:434
-msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
-msgstr ""
-"A publicação no Facebook foi cancelada devido a um conflito de permissão de "
-"acesso multi-rede."
-
-#: ../../addon/facebook/facebook.php:500
-msgid "Image: "
-msgstr "Imagem: "
-
-#: ../../addon/facebook/facebook.php:576
-msgid "View on Friendika"
-msgstr "Ver no Friendika"
-
-#: ../../addon/widgets/widgets.php:41
-msgid "Widgets key: "
-msgstr "Chave de widgets: "
-
-#: ../../addon/widgets/widgets.php:45
-msgid "Generate new key"
-msgstr "Gerar nova chave"
-
-#: ../../addon/widgets/widget_friends.php:30
-msgid "Connect on Friendika!"
-msgstr "Conectar ao Friendika!"
-
-#: ../../addon/tictac/tictac.php:14
-msgid "Three Dimensional Tic-Tac-Toe"
-msgstr "Jogo da Velha tridimensional"
-
-#: ../../addon/tictac/tictac.php:47
-msgid "3D Tic-Tac-Toe"
-msgstr "Jogo da Velha 3D"
-
-#: ../../addon/tictac/tictac.php:52
-msgid "New game"
-msgstr "Novo jogo"
-
-#: ../../addon/tictac/tictac.php:53
-msgid "New game with handicap"
-msgstr "Novo jogo com limitador"
-
-#: ../../addon/tictac/tictac.php:54
-msgid ""
-"Three dimensional tic-tac-toe is just like the traditional game except that "
-"it is played on multiple levels simultaneously. "
-msgstr ""
-"O Jogo da Velha tridimensional é similar ao jogo tradicional, com a exceção "
-"que ele é jogado simultaneamente em múltiplos níveis."
-
-#: ../../addon/tictac/tictac.php:55
-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 ""
-"Neste caso, existem três níveis. Ganha quem conseguir alinhar três casas, "
-"não só no mesmo nível como também pra cima, pra baixo ou na diagonal entre "
-"os níveis."
-
-#: ../../addon/tictac/tictac.php:57
-msgid ""
-"The handicap game disables the center position on the middle level because "
-"the player claiming this square often has an unfair advantage."
-msgstr ""
-"O jogo com limitador desabilita a posição central do nível do meio, uma vez "
-"que o jogador que obtém essa casa ganha uma vantagem desleal."
-
-#: ../../addon/tictac/tictac.php:176
-msgid "You go first..."
-msgstr "Você começa..."
-
-#: ../../addon/tictac/tictac.php:181
-msgid "I'm going first this time..."
-msgstr "Eu vou começar desta vez..."
-
-#: ../../addon/tictac/tictac.php:187
-msgid "You won!"
-msgstr "Você ganhou!"
-
-#: ../../addon/tictac/tictac.php:193 ../../addon/tictac/tictac.php:218
-msgid "\"Cat\" game!"
-msgstr "Empatamos!"
-
-#: ../../addon/tictac/tictac.php:216
-msgid "I won!"
-msgstr "Eu ganhei!"
-
-#: ../../addon/randplace/randplace.php:171
-msgid "Randplace Settings"
-msgstr "Configurações do Randplace"
-
-#: ../../addon/randplace/randplace.php:173
-msgid "Enable Randplace Plugin"
-msgstr "Habilitar o plugin Randplace"
-
-#: ../../addon/java_upload/java_upload.php:33
-msgid "Select files to upload: "
-msgstr "Selecione os arquivos a serem enviados: "
-
-#: ../../addon/java_upload/java_upload.php:35
-msgid ""
-"Use the following controls only if the Java uploader [above] fails to "
-"launch."
-msgstr ""
-"Use os controles abaixo apenas se o enviador Java [acima] não puder ser "
-"iniciado."
-
-#: ../../addon/js_upload/js_upload.php:39
-msgid "Upload a file"
-msgstr "Enviar um arquivo"
-
-#: ../../addon/js_upload/js_upload.php:40
-msgid "Drop files here to upload"
-msgstr "Solte os arquivos a serem enviados aqui"
-
-#: ../../addon/js_upload/js_upload.php:42
-msgid "Failed"
-msgstr "Falhou"
-
-#: ../../addon/js_upload/js_upload.php:288
-msgid "No files were uploaded."
-msgstr "Nenhum arquivo foi enviado."
-
-#: ../../addon/js_upload/js_upload.php:294
-msgid "Uploaded file is empty"
-msgstr "O arquivo enviado está em branco"
-
-#: ../../addon/js_upload/js_upload.php:299
-msgid "Uploaded file is too large"
-msgstr "O arquivo enviado é muito grande"
-
-#: ../../addon/js_upload/js_upload.php:317
-msgid "File has an invalid extension, it should be one of "
-msgstr "O arquivo possui uma extensão inválida, são aceitas somente "
-
-#: ../../addon/js_upload/js_upload.php:328
-msgid "Upload was cancelled, or server error encountered"
-msgstr "O envio foi cancelado ou ocorreu algum erro no servidor"
-
-#: ../../addon/oembed/oembed.php:29
-msgid "OEmbed settings updated"
-msgstr "As configurações OEmbed foram atualizadas"
-
-#: ../../addon/oembed/oembed.php:42
-msgid "Use OEmbed for YouTube videos: "
-msgstr "Usar OEmbed para vídeos do YouTube: "
-
-#: ../../addon/oembed/oembed.php:76
-msgid "URL to embed:"
-msgstr "URL a ser incorporada:"
-
-#: ../../addon/statusnet/statusnet.php:78
-msgid "Post to StatusNet"
-msgstr "Publicar no StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:117
-msgid ""
-"Please contact your site administrator. The provided API URL is not "
-"valid."
-msgstr ""
-"Por favor, entre em contato com o administrados do seu site. A URL da "
-"API fornecida não é válida."
-
-#: ../../addon/statusnet/statusnet.php:145
-msgid "We could not contact the StatusNet API with the Path you entered."
-msgstr ""
-"Não foi possível contactar a API do StatusNet a partir do caminho que você "
-"informou."
-
-#: ../../addon/statusnet/statusnet.php:172
-msgid "StatusNet settings updated."
-msgstr "As configurações do StatusNet foram atualizadas."
-
-#: ../../addon/statusnet/statusnet.php:195
-msgid "StatusNet Posting Settings"
-msgstr "Configurações de publicação no StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:209
-msgid "Globally Available StatusNet OAuthKeys"
-msgstr "OAuthKeys do StatusNet disponíveis globalmente"
-
-#: ../../addon/statusnet/statusnet.php:210
-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 ""
-"Existem pares de chaves OAuth para alguns servidores StatusNet disponíveis. "
-"Se você estiver usando algum desses servidores, por favor utilize essas "
-"credenciais. Caso contrário, sinta-se à vontade para conectar-se a qualquer "
-"outra instância do StatusNet (veja abaixo)."
-
-#: ../../addon/statusnet/statusnet.php:218
-msgid "Provide your own OAuth Credentials"
-msgstr "Forneça suas próprias credenciais OAuth"
-
-#: ../../addon/statusnet/statusnet.php:219
-msgid ""
-"No consumer key pair for StatusNet found. Register your Friendika 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 "
-"Friendika installation at your favorited StatusNet installation."
-msgstr ""
-"Não foi encontrado nenhum par de chaves de consumidor para o StatusNet. "
-"Registre sua conta do Friendika como um cliente desktop na sua conta "
-"StatusNet, copie o par de chaves de consumidor aqui e digite a raiz da base "
-"da API. Antes de você registrar se próprio par de chaves OAuth, pergunte"
-" ao administrador se já existe um par de chaves para esta instalação do "
-"Friendika no site do StatusNet que você está querendo utilizar."
-
-#: ../../addon/statusnet/statusnet.php:221
-msgid "OAuth Consumer Key"
-msgstr "Chave de consumidor OAuth"
-
-#: ../../addon/statusnet/statusnet.php:224
-msgid "OAuth Consumer Secret"
-msgstr "Segredo de consumidor OAuth"
-
-#: ../../addon/statusnet/statusnet.php:227
-msgid "Base API Path (remember the trailing /)"
-msgstr "Caminho base da API (lembre-se da / final)"
-
-#: ../../addon/statusnet/statusnet.php:248
-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 ""
-"Para conectar à sua conta StatusNet, clique no botão abaixo para obter um "
-"código de segurança do StatusNet, o qual você deve copiar na caixa de texto "
-"abaixo e clicar no botão para enviar o formulário. Somente suas publicações "
-"públicas serão enviadas para o StatusNet."
-
-#: ../../addon/statusnet/statusnet.php:249
-msgid "Log in with StatusNet"
-msgstr "Autenticar-se no StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:251
-msgid "Copy the security code from StatusNet here"
-msgstr "Copie o código de segurança do StatusNet aqui"
-
-#: ../../addon/statusnet/statusnet.php:257
-msgid "Cancel Connection Process"
-msgstr "Cancelar o processo de conexão"
-
-#: ../../addon/statusnet/statusnet.php:259
-msgid "Current StatusNet API is"
-msgstr "A API atual do StatusNet é"
-
-#: ../../addon/statusnet/statusnet.php:260
-msgid "Cancel StatusNet Connection"
-msgstr "Cancelar a conexão com o StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:271 ../../addon/twitter/twitter.php:165
-msgid "Currently connected to: "
-msgstr "Atualmente conectado como: "
-
-#: ../../addon/statusnet/statusnet.php:272
-msgid ""
-"If enabled all your public postings will be posted to the "
-"associated StatusNet account."
-msgstr ""
-"Caso esteja habilitado, todas as suas publicações públicas "
-"serão enviadas para a conta associada ao StatusNet."
-
-#: ../../addon/statusnet/statusnet.php:274
-msgid "Allow posting to StatusNet"
-msgstr "Permitir a publicação no StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:277
-msgid "Send public postings to StatusNet by default"
-msgstr "Enviar publicações públicas para o StatusNet por padrão"
-
-#: ../../addon/statusnet/statusnet.php:282 ../../addon/twitter/twitter.php:172
-msgid "Clear OAuth configuration"
-msgstr "Limpar a configuração OAuth"
-
-#: ../../addon/twitter/twitter.php:64
-msgid "Post to Twitter"
-msgstr "Publicar no Twitter"
-
-#: ../../addon/twitter/twitter.php:122
-msgid "Twitter Posting Settings"
-msgstr "Configurações de publicação no Twitter"
-
-#: ../../addon/twitter/twitter.php:129
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-msgstr ""
-"Não foi encontrado nenhum par de chaves de consumidor para o Twitter. Por "
-"favor, entre em contato com o administrador do site."
-
-#: ../../addon/twitter/twitter.php:148
-msgid ""
-"At this Friendika 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 ""
-"Nesta instalação do Friendika, o plugin do Twitter foi habilitado, mas você "
-"ainda não conectou sua conta local com a do Twitter. Para fazê-lo, clique no"
-" botão abaixo para obter um PIN do Twitter, que você deve copiar na caixa de"
-" texto abaixo e clicar no botão para enviar o formulário. Somente suas "
-"publicações públicas serão enviadas para o Twitter."
-
-#: ../../addon/twitter/twitter.php:149
-msgid "Log in with Twitter"
-msgstr "Autenticar-se no Twitter"
-
-#: ../../addon/twitter/twitter.php:151
-msgid "Copy the PIN from Twitter here"
-msgstr "Copie o PIN do Twitter aqui"
-
-#: ../../addon/twitter/twitter.php:166
-msgid ""
-"If enabled all your public postings will be posted to the "
-"associated Twitter account as well."
-msgstr ""
-"Caso esteja habilitado, suas publicações públicas serão "
-"replicadas na conta do Twitter que você configurou."
-
-#: ../../addon/twitter/twitter.php:168
-msgid "Send public postings to Twitter"
-msgstr "Enviar publicações públicas para o Twitter"
-
-#: ../../include/profile_advanced.php:23 ../../boot.php:2356
+#: ../../include/identity.php:696 ../../include/identity.php:923
+#: ../../mod/directory.php:159
msgid "Gender:"
msgstr "Gênero:"
-#: ../../include/profile_advanced.php:36 ../../include/items.php:1086
-msgid "Birthday:"
-msgstr "Aniversário"
+#: ../../include/identity.php:697 ../../include/identity.php:943
+#: ../../mod/directory.php:161
+msgid "Status:"
+msgstr "Situação:"
-#: ../../include/profile_advanced.php:45
-msgid "j F, Y"
-msgstr "j de F, Y"
-
-#: ../../include/profile_advanced.php:46
-msgid "j F"
-msgstr "j de F"
-
-#: ../../include/profile_advanced.php:59
-msgid "Age:"
-msgstr "Idade:"
-
-#: ../../include/profile_advanced.php:70
-msgid "♥ Status:"
-msgstr "Estado ♥:"
-
-#: ../../include/profile_advanced.php:103 ../../boot.php:2362
+#: ../../include/identity.php:698 ../../include/identity.php:954
+#: ../../mod/directory.php:163
msgid "Homepage:"
msgstr "Página web:"
-#: ../../include/profile_advanced.php:127
+#: ../../include/identity.php:699 ../../mod/dirprofile.php:157
+msgid "Online Now"
+msgstr "Online agora"
+
+#: ../../include/identity.php:767 ../../include/identity.php:847
+#: ../../mod/ping.php:262
+msgid "g A l F d"
+msgstr "G l d F"
+
+#: ../../include/identity.php:768 ../../include/identity.php:848
+msgid "F d"
+msgstr "F d"
+
+#: ../../include/identity.php:813 ../../include/identity.php:888
+#: ../../mod/ping.php:284
+msgid "[today]"
+msgstr "[hoje]"
+
+#: ../../include/identity.php:825
+msgid "Birthday Reminders"
+msgstr "Lembres de aniversário"
+
+#: ../../include/identity.php:826
+msgid "Birthdays this week:"
+msgstr "Aniversários nesta semana:"
+
+#: ../../include/identity.php:881
+msgid "[No description]"
+msgstr "[Sem descrição]"
+
+#: ../../include/identity.php:899
+msgid "Event Reminders"
+msgstr "Lembretes de eventos"
+
+#: ../../include/identity.php:900
+msgid "Events this week:"
+msgstr "Eventos nesta semana:"
+
+#: ../../include/identity.php:913 ../../include/identity.php:997
+#: ../../mod/profperm.php:107
+msgid "Profile"
+msgstr "Perfil"
+
+#: ../../include/identity.php:921 ../../mod/settings.php:936
+msgid "Full Name:"
+msgstr "Nome completo:"
+
+#: ../../include/identity.php:928
+msgid "j F, Y"
+msgstr "j de F, Y"
+
+#: ../../include/identity.php:929
+msgid "j F"
+msgstr "j de F"
+
+#: ../../include/identity.php:936
+msgid "Birthday:"
+msgstr "Aniversário:"
+
+#: ../../include/identity.php:940
+msgid "Age:"
+msgstr "Idade:"
+
+#: ../../include/identity.php:949
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "para %1$d %2$s"
+
+#: ../../include/identity.php:952 ../../mod/profiles.php:526
+msgid "Sexual Preference:"
+msgstr "Preferência sexual:"
+
+#: ../../include/identity.php:956 ../../mod/profiles.php:528
+msgid "Hometown:"
+msgstr "Cidade natal:"
+
+#: ../../include/identity.php:958
+msgid "Tags:"
+msgstr "Etiquetas:"
+
+#: ../../include/identity.php:960 ../../mod/profiles.php:529
+msgid "Political Views:"
+msgstr "Posição política:"
+
+#: ../../include/identity.php:962
msgid "Religion:"
msgstr "Religião:"
-#: ../../include/profile_advanced.php:138
+#: ../../include/identity.php:964 ../../mod/directory.php:165
msgid "About:"
msgstr "Sobre:"
-#: ../../include/profile_advanced.php:150
+#: ../../include/identity.php:966
msgid "Hobbies/Interests:"
msgstr "Hobbies/Interesses:"
-#: ../../include/profile_advanced.php:162
+#: ../../include/identity.php:968 ../../mod/profiles.php:532
+msgid "Likes:"
+msgstr "Gosta de:"
+
+#: ../../include/identity.php:970 ../../mod/profiles.php:533
+msgid "Dislikes:"
+msgstr "Não gosta de:"
+
+#: ../../include/identity.php:973
msgid "Contact information and Social Networks:"
msgstr "Informações de contato e redes sociais:"
-#: ../../include/profile_advanced.php:174
+#: ../../include/identity.php:975
+msgid "My other channels:"
+msgstr "Meus outros canais:"
+
+#: ../../include/identity.php:977
msgid "Musical interests:"
msgstr "Interesses musicais:"
-#: ../../include/profile_advanced.php:186
+#: ../../include/identity.php:979
msgid "Books, literature:"
-msgstr "Livros, literatura"
+msgstr "Livros, literatura:"
-#: ../../include/profile_advanced.php:198
+#: ../../include/identity.php:981
msgid "Television:"
-msgstr "Televisão"
+msgstr "Televisão:"
-#: ../../include/profile_advanced.php:210
+#: ../../include/identity.php:983
msgid "Film/dance/culture/entertainment:"
msgstr "Filmes/dança/cultura/entretenimento:"
-#: ../../include/profile_advanced.php:222
+#: ../../include/identity.php:985
msgid "Love/Romance:"
msgstr "Amor/romance:"
-#: ../../include/profile_advanced.php:234
+#: ../../include/identity.php:987
msgid "Work/employment:"
msgstr "Trabalho/emprego:"
-#: ../../include/profile_advanced.php:246
+#: ../../include/identity.php:989
msgid "School/education:"
msgstr "Escola/educação:"
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Desconhecido | Não categorizado"
+#: ../../include/ItemObject.php:89 ../../mod/photos.php:847
+msgid "Private Message"
+msgstr "Mensagem privada"
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquear imediatamente"
+#: ../../include/ItemObject.php:96 ../../include/page_widgets.php:8
+#: ../../include/menu.php:42 ../../mod/thing.php:235
+#: ../../mod/settings.php:577 ../../mod/menu.php:59 ../../mod/webpages.php:118
+#: ../../mod/editpost.php:112 ../../mod/layouts.php:97
+#: ../../mod/editlayout.php:106 ../../mod/blocks.php:93
+#: ../../mod/editwebpage.php:144 ../../mod/editblock.php:120
+#: ../../mod/filestorage.php:170
+msgid "Edit"
+msgstr "Editar"
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Sombreado, spammer, propagandista"
+#: ../../include/ItemObject.php:118
+msgid "save to folder"
+msgstr "salvar na pasta"
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Eu conheço, mas não possuo nenhuma opinião acerca"
+#: ../../include/ItemObject.php:146
+msgid "add star"
+msgstr "destacar"
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "Ok, provavelmente inofensivo"
+#: ../../include/ItemObject.php:147
+msgid "remove star"
+msgstr "remover destaque"
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Boa reputação, tem minha confiança"
+#: ../../include/ItemObject.php:148
+msgid "toggle star status"
+msgstr "alternar destaque"
-#: ../../include/contact_selectors.php:55
-msgid "Frequently"
-msgstr "Frequentemente"
+#: ../../include/ItemObject.php:152
+msgid "starred"
+msgstr "destacado"
-#: ../../include/contact_selectors.php:56
-msgid "Hourly"
-msgstr "De hora em hora"
+#: ../../include/ItemObject.php:169
+msgid "add tag"
+msgstr "adicionar etiqueta"
-#: ../../include/contact_selectors.php:57
-msgid "Twice daily"
-msgstr "Duas vezes ao dia"
+#: ../../include/ItemObject.php:184 ../../mod/photos.php:972
+msgid "I like this (toggle)"
+msgstr "Eu gostei disso (alterna)"
-#: ../../include/contact_selectors.php:58
-msgid "Daily"
-msgstr "Diariamente"
+#: ../../include/ItemObject.php:184 ../../include/taxonomy.php:254
+msgid "like"
+msgstr "gostei"
-#: ../../include/contact_selectors.php:59
-msgid "Weekly"
-msgstr "Semanalmente"
+#: ../../include/ItemObject.php:185 ../../mod/photos.php:973
+msgid "I don't like this (toggle)"
+msgstr "Eu não gostei disso (alterna)"
-#: ../../include/contact_selectors.php:60
-msgid "Monthly"
-msgstr "Mensalmente"
+#: ../../include/ItemObject.php:185 ../../include/taxonomy.php:255
+msgid "dislike"
+msgstr "não gostei"
+
+#: ../../include/ItemObject.php:187
+msgid "Share this"
+msgstr "Compartilhar isso"
+
+#: ../../include/ItemObject.php:187
+msgid "share"
+msgstr "compartilhar"
+
+#: ../../include/ItemObject.php:211 ../../include/ItemObject.php:212
+#, php-format
+msgid "View %s's profile - %s"
+msgstr "Ver o perfil de %s - %s"
+
+#: ../../include/ItemObject.php:213
+msgid "to"
+msgstr "para"
+
+#: ../../include/ItemObject.php:214
+msgid "via"
+msgstr "via"
+
+#: ../../include/ItemObject.php:215
+msgid "Wall-to-Wall"
+msgstr "Mural-para-mural"
+
+#: ../../include/ItemObject.php:216
+msgid "via Wall-To-Wall:"
+msgstr "via Mural-para-mural"
+
+#: ../../include/ItemObject.php:250
+msgid "Bookmark Links"
+msgstr "Guardar links"
+
+#: ../../include/ItemObject.php:280
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d comentário"
+msgstr[1] "%d comentários"
+
+#: ../../include/ItemObject.php:545 ../../mod/photos.php:991
+#: ../../mod/photos.php:1078
+msgid "This is you"
+msgstr "Este(a) é você"
+
+#: ../../include/ItemObject.php:548 ../../mod/events.php:469
+#: ../../mod/thing.php:283 ../../mod/thing.php:326 ../../mod/invite.php:156
+#: ../../mod/settings.php:515 ../../mod/settings.php:627
+#: ../../mod/settings.php:655 ../../mod/settings.php:679
+#: ../../mod/settings.php:751 ../../mod/settings.php:928
+#: ../../mod/chat.php:174 ../../mod/chat.php:206 ../../mod/connect.php:92
+#: ../../mod/group.php:81 ../../mod/admin.php:431 ../../mod/admin.php:739
+#: ../../mod/admin.php:879 ../../mod/admin.php:1078 ../../mod/admin.php:1165
+#: ../../mod/connedit.php:437 ../../mod/profiles.php:506
+#: ../../mod/sources.php:104 ../../mod/sources.php:138 ../../mod/setup.php:304
+#: ../../mod/setup.php:347 ../../mod/import.php:387 ../../mod/mail.php:223
+#: ../../mod/mail.php:335 ../../mod/poke.php:166 ../../mod/fsuggest.php:108
+#: ../../mod/filestorage.php:131 ../../mod/photos.php:566
+#: ../../mod/photos.php:671 ../../mod/photos.php:954 ../../mod/photos.php:994
+#: ../../mod/photos.php:1081 ../../mod/mood.php:142
+#: ../../view/theme/redbasic/php/config.php:97
+#: ../../view/theme/apw/php/config.php:247
+#: ../../view/theme/blogga/view/theme/blog/config.php:67
+#: ../../view/theme/blogga/php/config.php:67
+msgid "Submit"
+msgstr "Enviar"
+
+#: ../../include/ItemObject.php:549
+msgid "Bold"
+msgstr "Negrito"
+
+#: ../../include/ItemObject.php:550
+msgid "Italic"
+msgstr "Itálico"
+
+#: ../../include/ItemObject.php:551
+msgid "Underline"
+msgstr "Sublinhado"
+
+#: ../../include/ItemObject.php:552
+msgid "Quote"
+msgstr "Citação"
+
+#: ../../include/ItemObject.php:553
+msgid "Code"
+msgstr "Código"
+
+#: ../../include/ItemObject.php:554
+msgid "Image"
+msgstr "Imagem"
+
+#: ../../include/ItemObject.php:555
+msgid "Link"
+msgstr "Link"
+
+#: ../../include/ItemObject.php:556
+msgid "Video"
+msgstr "Vídeo"
+
+#: ../../include/api.php:974
+msgid "Public Timeline"
+msgstr "Linha do tempo pública"
+
+#: ../../include/network.php:640
+msgid "view full size"
+msgstr "ver na tela inteira"
+
+#: ../../include/notify.php:23
+msgid "created a new post"
+msgstr "criar uma nova publicação"
+
+#: ../../include/notify.php:24
+#, php-format
+msgid "commented on %s's post"
+msgstr "comentou a publicação de %s"
#: ../../include/profile_selectors.php:6
msgid "Male"
@@ -3136,7 +2422,7 @@ msgstr "Neutro"
#: ../../include/profile_selectors.php:6
msgid "Non-specific"
-msgstr "Não especificado"
+msgstr "Não específico"
#: ../../include/profile_selectors.php:6
msgid "Other"
@@ -3146,616 +2432,4986 @@ msgstr "Outro"
msgid "Undecided"
msgstr "Indeciso"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Males"
msgstr "Homens"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Females"
msgstr "Mulheres"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Gay"
msgstr "Gays"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Lésbicas"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "No Preference"
msgstr "Sem preferência"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Bissexuais"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Autossexuais"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Abstinentes"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Virgin"
msgstr "Virgens"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Deviant"
msgstr "Desviantes"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Fetish"
msgstr "Fetiches"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Oodles"
msgstr "Abundância"
-#: ../../include/profile_selectors.php:19
+#: ../../include/profile_selectors.php:23
msgid "Nonsexual"
-msgstr "Não sexual"
+msgstr "Não sexuais"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Single"
msgstr "Solteiro(a)"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Lonely"
msgstr "Solitário(a)"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Available"
msgstr "Disponível"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Unavailable"
msgstr "Não disponível"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Tem uma paixão"
+
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Apaixonado"
+
+#: ../../include/profile_selectors.php:42
msgid "Dating"
msgstr "Saindo com alguém"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Unfaithful"
msgstr "Infiel"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Viciado(a) em sexo"
-#: ../../include/profile_selectors.php:33
-msgid "Friends"
-msgstr "Amigos"
-
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Friends/Benefits"
-msgstr "Amigos/Benefícios"
+msgstr "Amigos com benefícios"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Casual"
msgstr "Casual"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Engaged"
msgstr "Envolvido(a)"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Married"
msgstr "Casado(a)"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Casado imaginariamente"
+
+#: ../../include/profile_selectors.php:42
msgid "Partners"
msgstr "Parceiros"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "Coabitando"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Direito comum"
+
+#: ../../include/profile_selectors.php:42
msgid "Happy"
msgstr "Feliz"
-#: ../../include/profile_selectors.php:33
-msgid "Not Looking"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
msgstr "Não estou procurando"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Swinger"
msgstr "Swinger"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Traído(a)"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Separated"
msgstr "Separado(a)"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Unstable"
msgstr "Instável"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Divorced"
msgstr "Divorciado(a)"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Divorciado imaginariamente"
+
+#: ../../include/profile_selectors.php:42
msgid "Widowed"
msgstr "Viúvo(a)"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Incerto(a)"
-#: ../../include/profile_selectors.php:33
-msgid "Complicated"
-msgstr "Complicado(a)"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "É complicado"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Don't care"
msgstr "Não importa"
-#: ../../include/profile_selectors.php:33
+#: ../../include/profile_selectors.php:42
msgid "Ask me"
msgstr "Pergunte-me"
-#: ../../include/oembed.php:95
+#: ../../include/chat.php:10
+msgid "Missing room name"
+msgstr "Nome da sala vazio"
+
+#: ../../include/chat.php:19
+msgid "Duplicate room name"
+msgstr "Nome da sala duplicado"
+
+#: ../../include/chat.php:68 ../../include/chat.php:76
+msgid "Invalid room specifier."
+msgstr "Especificador de sala inválido."
+
+#: ../../include/chat.php:102
+msgid "Room not found."
+msgstr "A sala não foi encontrada."
+
+#: ../../include/chat.php:123
+msgid "Room is full"
+msgstr "A sala está cheia"
+
+#: ../../include/taxonomy.php:210
+msgid "Tags"
+msgstr "Etiquetas"
+
+#: ../../include/taxonomy.php:227
+msgid "Keywords"
+msgstr "Palavras-chave"
+
+#: ../../include/taxonomy.php:252
+msgid "have"
+msgstr "tenho"
+
+#: ../../include/taxonomy.php:252
+msgid "has"
+msgstr "tem"
+
+#: ../../include/taxonomy.php:253
+msgid "want"
+msgstr "quero"
+
+#: ../../include/taxonomy.php:253
+msgid "wants"
+msgstr "quer"
+
+#: ../../include/taxonomy.php:254
+msgid "likes"
+msgstr "gosta"
+
+#: ../../include/taxonomy.php:255
+msgid "dislikes"
+msgstr "desgosta"
+
+#: ../../include/auth.php:79
+msgid "Logged out."
+msgstr "Você saiu."
+
+#: ../../include/auth.php:197
+msgid "Failed authentication"
+msgstr "Não foi possível autenticar"
+
+#: ../../include/auth.php:212 ../../mod/openid.php:186
+msgid "Login failed."
+msgstr "Não foi possível entrar."
+
+#: ../../include/account.php:23
+msgid "Not a valid email address"
+msgstr "Não é um endereço de e-mail válido"
+
+#: ../../include/account.php:25
+msgid "Your email domain is not among those allowed on this site"
+msgstr "O domínio do seu e-mail não está entre os permitidos neste site"
+
+#: ../../include/account.php:31
+msgid "Your email address is already registered at this site."
+msgstr "O seu endereço de e-mail já está registrado neste site."
+
+#: ../../include/account.php:64
+msgid "An invitation is required."
+msgstr "É necessário um convite."
+
+#: ../../include/account.php:68
+msgid "Invitation could not be verified."
+msgstr "Não foi possível verificar o convite."
+
+#: ../../include/account.php:119
+msgid "Please enter the required information."
+msgstr "Por favor, forneça a informação solicitada."
+
+#: ../../include/account.php:187
+msgid "Failed to store account information."
+msgstr "Não foi possível armazenar a informação da conta."
+
+#: ../../include/account.php:273
+#, php-format
+msgid "Registration request at %s"
+msgstr "Solicitação de registro em %s"
+
+#: ../../include/account.php:275 ../../include/account.php:302
+#: ../../include/account.php:359
+msgid "Administrator"
+msgstr "Administrador"
+
+#: ../../include/account.php:297
+msgid "your registration password"
+msgstr "sua senha de registro"
+
+#: ../../include/account.php:300 ../../include/account.php:357
+#, php-format
+msgid "Registration details for %s"
+msgstr "Detalhes do registro de %s"
+
+#: ../../include/account.php:366
+msgid "Account approved."
+msgstr "A conta foi aprovada."
+
+#: ../../include/account.php:400
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "O registro de %s foi revogado"
+
+#: ../../include/dir_fns.php:15
+msgid "Sort Options"
+msgstr "Opções de ordenação"
+
+#: ../../include/dir_fns.php:16
+msgid "Alphabetic"
+msgstr "Alfabética"
+
+#: ../../include/dir_fns.php:17
+msgid "Reverse Alphabetic"
+msgstr "Alfabética reversa"
+
+#: ../../include/dir_fns.php:18
+msgid "Newest to Oldest"
+msgstr "Das mais recentes para as mais antigas"
+
+#: ../../include/dir_fns.php:30
+msgid "Enable Safe Search"
+msgstr "Habilitar busca tranquila"
+
+#: ../../include/dir_fns.php:32
+msgid "Disable Safe Search"
+msgstr "Desabilitar busca tranquila"
+
+#: ../../include/dir_fns.php:34
+msgid "Safe Mode"
+msgstr "Modo tranquilo"
+
+#: ../../include/enotify.php:40
+msgid "Red Matrix Notification"
+msgstr "Notificação da Red Matrix"
+
+#: ../../include/enotify.php:41
+msgid "redmatrix"
+msgstr "redmatrix"
+
+#: ../../include/enotify.php:43
+msgid "Thank You,"
+msgstr "Obrigado(a),"
+
+#: ../../include/enotify.php:45
+#, php-format
+msgid "%s Administrator"
+msgstr "Administrador de %s"
+
+#: ../../include/enotify.php:80
+#, php-format
+msgid "%s "
+msgstr "%s "
+
+#: ../../include/enotify.php:84
+#, php-format
+msgid "[Red:Notify] New mail received at %s"
+msgstr "[Red:Notify] Nova mensagem recebida em %s"
+
+#: ../../include/enotify.php:86
+#, php-format
+msgid "%1$s, %2$s sent you a new private message at %3$s."
+msgstr "%1$s, %2$s te enviou uma nova mensagem privada em %3$s."
+
+#: ../../include/enotify.php:87
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s enviou %2$s para você."
+
+#: ../../include/enotify.php:87
+msgid "a private message"
+msgstr "uma mensagem privada"
+
+#: ../../include/enotify.php:88
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Por favor, visite %s para ver e/ou responder as suas mensagens privadas."
+
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]"
+msgstr "%1$s, %2$s comentou em [zrl=%3$s]um/a %4$s[/zrl]"
+
+#: ../../include/enotify.php:150
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
+msgstr "%1$s, %2$s comentou em [zrl=%3$s]%5$s de %4$s[/zrl]"
+
+#: ../../include/enotify.php:159
+#, php-format
+msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
+msgstr "%1$s, %2$s comentou em [zrl=%3$s]seu %4$s[/zrl]"
+
+#: ../../include/enotify.php:170
+#, php-format
+msgid "[Red:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Red:Notify] Comentário na conversa #%1$d por %2$s"
+
+#: ../../include/enotify.php:171
+#, php-format
+msgid "%1$s, %2$s commented on an item/conversation you have been following."
+msgstr "%1$s, %2$s comentou em um item/conversa que você acompanha."
+
+#: ../../include/enotify.php:174 ../../include/enotify.php:189
+#: ../../include/enotify.php:215 ../../include/enotify.php:234
+#: ../../include/enotify.php:248
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Por favor, visite %s para ver e/ou responder a conversa."
+
+#: ../../include/enotify.php:180
+#, php-format
+msgid "[Red:Notify] %s posted to your profile wall"
+msgstr "[Red:Notify] %s publicou no mural do seu perfil"
+
+#: ../../include/enotify.php:182
+#, php-format
+msgid "%1$s, %2$s posted to your profile wall at %3$s"
+msgstr "%1$s, %2$s publicou no mural do seu perfil em %3$s"
+
+#: ../../include/enotify.php:184
+#, php-format
+msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]"
+msgstr "%1$s, %2$s publicou no [zrl=%3$s]seu mural[/zrl]"
+
+#: ../../include/enotify.php:208
+#, php-format
+msgid "[Red:Notify] %s tagged you"
+msgstr "[Red:Notify] %s etiquetou você"
+
+#: ../../include/enotify.php:209
+#, php-format
+msgid "%1$s, %2$s tagged you at %3$s"
+msgstr "%1$s, %2$s mencionou você em %3$s"
+
+#: ../../include/enotify.php:210
+#, php-format
+msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]."
+msgstr "%1$s, %2$s [zrl=%3$s]mencionou você[/zrl]."
+
+#: ../../include/enotify.php:223
+#, php-format
+msgid "[Red:Notify] %1$s poked you"
+msgstr "[Red:Notify] %1$s cutucou você"
+
+#: ../../include/enotify.php:224
+#, php-format
+msgid "%1$s, %2$s poked you at %3$s"
+msgstr "%1$s, %2$s cutucou você em %3$s"
+
+#: ../../include/enotify.php:225
+#, php-format
+msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]."
+msgstr "%1$s, %2$s [zrl=%2$s]cutucou você[/zrl]."
+
+#: ../../include/enotify.php:241
+#, php-format
+msgid "[Red:Notify] %s tagged your post"
+msgstr "[Red:Notify] %s etiquetou a sua publicação"
+
+#: ../../include/enotify.php:242
+#, php-format
+msgid "%1$s, %2$s tagged your post at %3$s"
+msgstr "%1$s, %2$s marcou seu post em %3$s"
+
+#: ../../include/enotify.php:243
+#, php-format
+msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]"
+msgstr "%1$s, %2$s marcou [zrl=%3$s]seu post[/zrl]"
+
+#: ../../include/enotify.php:255
+msgid "[Red:Notify] Introduction received"
+msgstr "[Red:Notify] Você recebeu uma apresentação"
+
+#: ../../include/enotify.php:256
+#, php-format
+msgid "%1$s, you've received an introduction from '%2$s' at %3$s"
+msgstr "%1$s, você recebeu uma apresentação de '%2$s' em %3$s"
+
+#: ../../include/enotify.php:257
+#, php-format
+msgid "%1$s, you've received [zrl=%2$s]an introduction[/zrl] from %3$s."
+msgstr "%1$s, você recebeu [zrl=%2$s]uma apresentação[/zrl] de %3$s."
+
+#: ../../include/enotify.php:261 ../../include/enotify.php:280
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Você pode visitar seu perfil em %s"
+
+#: ../../include/enotify.php:263
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Por favor, visite %s para aprovar ou rejeitar a apresentação."
+
+#: ../../include/enotify.php:270
+msgid "[Red:Notify] Friend suggestion received"
+msgstr "[Red:Notify] Foi recebida uma sugestão de amizade"
+
+#: ../../include/enotify.php:271
+#, php-format
+msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s"
+msgstr "%1$s, você recebeu uma sugestão de amizade de '%2$s' em %3$s"
+
+#: ../../include/enotify.php:272
+#, php-format
+msgid ""
+"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from "
+"%4$s."
+msgstr "%1$s, você recebeu [zrl=%2$s]uma sugestão de amizade[/zrl] com %3$s de %4$s."
+
+#: ../../include/enotify.php:278
+msgid "Name:"
+msgstr "Nome:"
+
+#: ../../include/enotify.php:279
+msgid "Photo:"
+msgstr "Foto:"
+
+#: ../../include/enotify.php:282
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Por favor, visite %s para aprovar ou rejeitar a sugestão."
+
+#: ../../include/photos.php:89
+#, php-format
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "A imagem excede o limite de tamanho do site, que é de %"
+
+#: ../../include/photos.php:96
+msgid "Image file is empty."
+msgstr "O arquivo de imagem está vazio."
+
+#: ../../include/photos.php:123 ../../mod/profile_photo.php:147
+msgid "Unable to process image"
+msgstr "Não foi possível processar a imagem"
+
+#: ../../include/photos.php:185
+msgid "Photo storage failed."
+msgstr "Não foi possível armazenar a foto."
+
+#: ../../include/photos.php:306 ../../mod/photos.php:694
+#: ../../mod/photos.php:1191
+msgid "Upload New Photos"
+msgstr "Enviar novas fotos"
+
+#: ../../include/reddav.php:1063
+msgid "Edit File properties"
+msgstr "Editar propriedades do arquivo"
+
+#: ../../include/contact_widgets.php:14
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d convite disponível"
+msgstr[1] "%d convites disponíveis"
+
+#: ../../include/contact_widgets.php:20
+msgid "Find Channels"
+msgstr "Pesquisar canais"
+
+#: ../../include/contact_widgets.php:21
+msgid "Enter name or interest"
+msgstr "Digite um nome ou interesse"
+
+#: ../../include/contact_widgets.php:22
+msgid "Connect/Follow"
+msgstr "Conectar/Acompanhar"
+
+#: ../../include/contact_widgets.php:23
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Por exemplo: José da Silva, Pescaria"
+
+#: ../../include/contact_widgets.php:24 ../../mod/directory.php:207
+#: ../../mod/directory.php:212 ../../mod/connections.php:357
+msgid "Find"
+msgstr "Pesquisar"
+
+#: ../../include/contact_widgets.php:25 ../../mod/suggest.php:59
+msgid "Channel Suggestions"
+msgstr "Sugestões de canais"
+
+#: ../../include/contact_widgets.php:27
+msgid "Random Profile"
+msgstr "Perfil aleatório"
+
+#: ../../include/contact_widgets.php:28
+msgid "Invite Friends"
+msgstr "Convidar amigos"
+
+#: ../../include/contact_widgets.php:120
+#, php-format
+msgid "%d connection in common"
+msgid_plural "%d connections in common"
+msgstr[0] "%d conexão em comum"
+msgstr[1] "%d conexões em comum"
+
+#: ../../include/page_widgets.php:6
+msgid "New Page"
+msgstr "Nova página"
+
+#: ../../include/plugin.php:475 ../../include/plugin.php:477
+msgid "Click here to upgrade."
+msgstr "Clique aqui para atualizar."
+
+#: ../../include/plugin.php:483
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
+
+#: ../../include/plugin.php:488
+msgid "This action is not available under your subscription plan."
+msgstr "Essa ação não está disponível para o seu plano de assinatura."
+
+#: ../../include/follow.php:23
+msgid "Channel is blocked on this site."
+msgstr "O canal está bloqueado neste site."
+
+#: ../../include/follow.php:28
+msgid "Channel location missing."
+msgstr "A localização do canal foi perdida"
+
+#: ../../include/follow.php:54
+msgid "Response from remote channel was incomplete."
+msgstr "A resposta do canal remoto está incompleta."
+
+#: ../../include/follow.php:126
+msgid "Channel discovery failed."
+msgstr "A descoberta de canais falhou."
+
+#: ../../include/follow.php:143
+msgid "local account not found."
+msgstr "a conta local não foi encontrada."
+
+#: ../../include/follow.php:152
+msgid "Cannot connect to yourself."
+msgstr "Não é possível conectar-se consigo mesmo."
+
+#: ../../include/security.php:294
+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 "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
+
+#: ../../include/comanche.php:35 ../../view/theme/redbasic/php/config.php:66
+#: ../../view/theme/apw/php/config.php:176
+msgid "Default"
+msgstr "Default"
+
+#: ../../include/oembed.php:157
+msgid "Embedded content"
+msgstr "Conteúdo incorporado"
+
+#: ../../include/oembed.php:166
msgid "Embedding disabled"
msgstr "A incorporação está desabilitada"
-#: ../../include/group.php:146
-msgid "Create a new group"
-msgstr "Criar um novo grupo"
+#: ../../include/permissions.php:13
+msgid "Can view my \"public\" stream and posts"
+msgstr "Pode ver meus fluxo e publicações \"públicos\""
-#: ../../include/group.php:147
-msgid "Everybody"
-msgstr "Todos"
+#: ../../include/permissions.php:14
+msgid "Can view my \"public\" channel profile"
+msgstr "Pode ver o perfil \"público\" do meu canal"
-#: ../../include/nav.php:41 ../../boot.php:865
-msgid "Logout"
-msgstr "Sair"
+#: ../../include/permissions.php:15
+msgid "Can view my \"public\" photo albums"
+msgstr "Pode ver meus álbuns de fotos \"públicos\""
-#: ../../include/nav.php:44 ../../boot.php:843 ../../boot.php:849
-msgid "Login"
-msgstr "Entrar"
+#: ../../include/permissions.php:16
+msgid "Can view my \"public\" address book"
+msgstr "Pode ver meu livro de endereços \"público\""
-#: ../../include/nav.php:55 ../../include/nav.php:92
-msgid "Home"
-msgstr "Pessoal"
+#: ../../include/permissions.php:17
+msgid "Can view my \"public\" file storage"
+msgstr "Pode ver meu armazenamento de arquivos \"público\""
-#: ../../include/nav.php:68
-msgid "Apps"
+#: ../../include/permissions.php:18
+msgid "Can view my \"public\" pages"
+msgstr "Pode ver minhas páginas \"públicas\""
+
+#: ../../include/permissions.php:21
+msgid "Can send me their channel stream and posts"
+msgstr "Pode me enviar seus fluxo e publicações"
+
+#: ../../include/permissions.php:22
+msgid "Can post on my channel page (\"wall\")"
+msgstr "Pode publicar na página do meu canal (\"mural\")"
+
+#: ../../include/permissions.php:23
+msgid "Can comment on my posts"
+msgstr "Pode comentar minhas publicações"
+
+#: ../../include/permissions.php:24
+msgid "Can send me private mail messages"
+msgstr "Pode me enviar mensagens privadas"
+
+#: ../../include/permissions.php:25
+msgid "Can post photos to my photo albums"
+msgstr "Pode publicar fotos nos meus álbuns de fotos"
+
+#: ../../include/permissions.php:26
+msgid "Can forward to all my channel contacts via post @mentions"
+msgstr "Pode encaminha para todos os contatos do meu canal via @menções na publicação"
+
+#: ../../include/permissions.php:26
+msgid "Advanced - useful for creating group forum channels"
+msgstr "Avançado - útil para criar canais de fóruns de grupos"
+
+#: ../../include/permissions.php:27
+msgid "Can chat with me (when available)"
+msgstr "Pode conversar comigo (quando disponívei)"
+
+#: ../../include/permissions.php:28
+msgid "Can write to my \"public\" file storage"
+msgstr "Pode escrever em meu armazenamento de arquivos \"público\""
+
+#: ../../include/permissions.php:29
+msgid "Can edit my \"public\" pages"
+msgstr "Pode editar minhas páginas \"públicas\""
+
+#: ../../include/permissions.php:31
+msgid "Can source my \"public\" posts in derived channels"
+msgstr "Pode usar minhas publicações \"públicas\" como fonte para canais derivados"
+
+#: ../../include/permissions.php:31
+msgid "Somewhat advanced - very useful in open communities"
+msgstr "Avançado - muito útil em comunidades abertas"
+
+#: ../../include/permissions.php:32
+msgid "Can send me bookmarks"
+msgstr "Pode me enviar links guardados"
+
+#: ../../include/permissions.php:33
+msgid "Can administer my channel resources"
+msgstr "Pode administrar os recursos do meu canal"
+
+#: ../../include/permissions.php:33
+msgid ""
+"Extremely advanced. Leave this alone unless you know what you are doing"
+msgstr "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo"
+
+#: ../../include/items.php:240 ../../mod/like.php:55 ../../mod/profperm.php:23
+#: ../../mod/group.php:68 ../../index.php:350
+msgid "Permission denied"
+msgstr "Permissão negada"
+
+#: ../../include/items.php:756
+msgid "(Unknown)"
+msgstr "(Desconhecido)"
+
+#: ../../include/items.php:3513 ../../mod/thing.php:78 ../../mod/admin.php:151
+#: ../../mod/admin.php:783 ../../mod/admin.php:986 ../../mod/viewsrc.php:18
+#: ../../mod/home.php:63 ../../mod/display.php:32 ../../mod/filestorage.php:18
+msgid "Item not found."
+msgstr "O item não foi encontrado."
+
+#: ../../include/items.php:3849 ../../mod/group.php:38 ../../mod/group.php:140
+msgid "Collection not found."
+msgstr "A coleção não foi encontrada."
+
+#: ../../include/items.php:3864
+msgid "Collection is empty."
+msgstr "A coleção está vazia."
+
+#: ../../include/items.php:3871
+#, php-format
+msgid "Collection: %s"
+msgstr "Coleção: %s"
+
+#: ../../include/items.php:3882
+#, php-format
+msgid "Connection: %s"
+msgstr "Conexão: %s"
+
+#: ../../include/items.php:3885
+msgid "Connection not found."
+msgstr "A conexão não foi encontrada."
+
+#: ../../include/zot.php:548
+msgid "Invalid data packet"
+msgstr "Pacote de dados inválido"
+
+#: ../../include/zot.php:558
+msgid "Unable to verify channel signature"
+msgstr "Não foi possível verificar a assinatura do canal"
+
+#: ../../include/zot.php:735
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr "Não foi possível verificar a assinatura do site para %s"
+
+#: ../../mod/common.php:10
+msgid "No channel."
+msgstr "Nenhum canal."
+
+#: ../../mod/common.php:39
+msgid "Common connections"
+msgstr "Conexões em comum"
+
+#: ../../mod/common.php:44
+msgid "No connections in common."
+msgstr "Nenhuma conexão em comum."
+
+#: ../../mod/events.php:72
+msgid "Event title and start time are required."
+msgstr "O título do evento e a hora de início são obrigatórios."
+
+#: ../../mod/events.php:287
+msgid "l, F j"
+msgstr "l, F j"
+
+#: ../../mod/events.php:309
+msgid "Edit event"
+msgstr "Editar o evento"
+
+#: ../../mod/events.php:355
+msgid "Create New Event"
+msgstr "Criar um novo evento"
+
+#: ../../mod/events.php:356
+msgid "Previous"
+msgstr "Anterior"
+
+#: ../../mod/events.php:357 ../../mod/setup.php:258
+msgid "Next"
+msgstr "Próximo"
+
+#: ../../mod/events.php:428
+msgid "hour:minute"
+msgstr "hora:minuto"
+
+#: ../../mod/events.php:447
+msgid "Event details"
+msgstr "Detalhes do evento"
+
+#: ../../mod/events.php:448
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "O formato é %s %s. A data de início e o título são obrigatórios."
+
+#: ../../mod/events.php:450
+msgid "Event Starts:"
+msgstr "Início do evento:"
+
+#: ../../mod/events.php:450 ../../mod/events.php:464
+msgid "Required"
+msgstr "Obrigatório"
+
+#: ../../mod/events.php:453
+msgid "Finish date/time is not known or not relevant"
+msgstr "A data/hora de término não é conhecida ou não é relevante"
+
+#: ../../mod/events.php:455
+msgid "Event Finishes:"
+msgstr "Término do evento:"
+
+#: ../../mod/events.php:458
+msgid "Adjust for viewer timezone"
+msgstr "Ajustar para o fuso horário do visualizador"
+
+#: ../../mod/events.php:460
+msgid "Description:"
+msgstr "Descrição:"
+
+#: ../../mod/events.php:464
+msgid "Title:"
+msgstr "Título:"
+
+#: ../../mod/events.php:466
+msgid "Share this event"
+msgstr "Compartilhar este evento"
+
+#: ../../mod/thing.php:98
+msgid "Thing updated"
+msgstr "A coisa foi atualizada"
+
+#: ../../mod/thing.php:158
+msgid "Object store: failed"
+msgstr "Armazenamento do objeto: falhou"
+
+#: ../../mod/thing.php:162
+msgid "Thing added"
+msgstr "A coisa foi adicionada"
+
+#: ../../mod/thing.php:182
+#, php-format
+msgid "OBJ: %1$s %2$s %3$s"
+msgstr "OBJ: %1$s %2$s %3$s"
+
+#: ../../mod/thing.php:234
+msgid "Show Thing"
+msgstr "Exibir coisa"
+
+#: ../../mod/thing.php:241
+msgid "item not found."
+msgstr "o item não foi encontrado"
+
+#: ../../mod/thing.php:269
+msgid "Edit Thing"
+msgstr "Editar coisa"
+
+#: ../../mod/thing.php:271 ../../mod/thing.php:318
+msgid "Select a profile"
+msgstr "Selecione um perfil"
+
+#: ../../mod/thing.php:273 ../../mod/thing.php:320
+msgid "Select a category of stuff. e.g. I ______ something"
+msgstr "Escolha uma categoria de coisas. e.g. Eu ______ algo"
+
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Post an activity"
+msgstr "Publique uma atividade"
+
+#: ../../mod/thing.php:275 ../../mod/thing.php:321
+msgid "Only sends to viewers of the applicable profile"
+msgstr "Envia apenas para a audiência do perfil aplicável"
+
+#: ../../mod/thing.php:277 ../../mod/thing.php:323
+msgid "Name of thing e.g. something"
+msgstr "Nome da coisa e.g. coisinha"
+
+#: ../../mod/thing.php:279 ../../mod/thing.php:324
+msgid "URL of thing (optional)"
+msgstr "URL da coisa (opcional)"
+
+#: ../../mod/thing.php:281 ../../mod/thing.php:325
+msgid "URL for photo of thing (optional)"
+msgstr "URL para foto da coisa (opcional)"
+
+#: ../../mod/thing.php:316
+msgid "Add Thing to your Profile"
+msgstr "Adicionar a coisa ao seu perfil"
+
+#: ../../mod/invite.php:25
+msgid "Total invitation limit exceeded."
+msgstr "Foi excedido o número total de convites."
+
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Não é um endereço de e-mail válido."
+
+#: ../../mod/invite.php:76
+msgid "Please join us on Red"
+msgstr "Por favor, una-se a nós na Red"
+
+#: ../../mod/invite.php:87
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Você excedeu o limite de convites. Por favor, entre em contato com o administrador do site."
+
+#: ../../mod/invite.php:92
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Não foi possível enviar a mensagem."
+
+#: ../../mod/invite.php:96
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d mensagem enviada."
+msgstr[1] "%d mensagens enviadas."
+
+#: ../../mod/invite.php:115
+msgid "You have no more invitations available"
+msgstr "Você não possui mais convites disponíveis"
+
+#: ../../mod/invite.php:141
+msgid "Send invitations"
+msgstr "Enviar convites."
+
+#: ../../mod/invite.php:142
+msgid "Enter email addresses, one per line:"
+msgstr "Digite os endereços de e-mail, um por linha:"
+
+#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328
+msgid "Your message:"
+msgstr "Sua mensagem:"
+
+#: ../../mod/invite.php:144
+msgid ""
+"You are cordially invited to join me and some other close friends on the Red"
+" Matrix - a revolutionary new decentralised communication and information "
+"tool."
+msgstr "Você está convidado a juntar-se a mim e alguns outros amigos próximos na Red Matrix - uma revolucionária nova ferramenta para comunicação e informação descentralizada."
+
+#: ../../mod/invite.php:146
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Você deve informar este código de convite: $invite_code"
+
+#: ../../mod/invite.php:147
+msgid "Please visit my channel at"
+msgstr "Por favor, visite o meu canal em"
+
+#: ../../mod/invite.php:151
+msgid ""
+"Once you have registered (on ANY Red Matrix site - they are all inter-"
+"connected), please connect with my Red Matrix channel address:"
+msgstr "Após você se registrar (em qualquer site da Red Matrix - eles são todos interconectados!), peço que conecte-se comigo usando o endereço do meu canal:"
+
+#: ../../mod/invite.php:153
+msgid "Click the [Register] link on the following page to join."
+msgstr "Clique no link [Registrar] na seguinte página para participar."
+
+#: ../../mod/invite.php:155
+msgid ""
+"For more information about the Red Matrix Project and why it has the "
+"potential to change the internet as we know it, please visit "
+"http://getzot.com"
+msgstr "Para maiores informações sobre o Projeto Red Matrix e porque ele tem potencial para mudar a Internet como a conhecemos, por favor visite: http://getzot.com"
+
+#: ../../mod/settings.php:71
+msgid "Name is required"
+msgstr "O nome é obrigatório"
+
+#: ../../mod/settings.php:75
+msgid "Key and Secret are required"
+msgstr "A chave e o segredo são obrigatórios"
+
+#: ../../mod/settings.php:79 ../../mod/settings.php:541
+msgid "Update"
+msgstr "Atualizar"
+
+#: ../../mod/settings.php:195
+msgid "Passwords do not match. Password unchanged."
+msgstr "As senhas não correspondem. A senha não foi modificada."
+
+#: ../../mod/settings.php:199
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
+
+#: ../../mod/settings.php:212
+msgid "Password changed."
+msgstr "A senha foi modificada."
+
+#: ../../mod/settings.php:214
+msgid "Password update failed. Please try again."
+msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
+
+#: ../../mod/settings.php:228
+msgid "Not valid email."
+msgstr "Não é um e-mail válido"
+
+#: ../../mod/settings.php:231
+msgid "Protected email address. Cannot change to that email."
+msgstr "Endereço de e-mail protegido. Não é possível mudar para esse e-mail."
+
+#: ../../mod/settings.php:240
+msgid "System failure storing new email. Please try again."
+msgstr "Falha do sistema ao armazenar novo e-mail. Por favor, tente novamente."
+
+#: ../../mod/settings.php:443
+msgid "Settings updated."
+msgstr "As configurações foram atualizadas."
+
+#: ../../mod/settings.php:514 ../../mod/settings.php:540
+#: ../../mod/settings.php:576
+msgid "Add application"
+msgstr "Adicionar aplicação"
+
+#: ../../mod/settings.php:517 ../../mod/settings.php:543
+msgid "Name"
+msgstr "Nome"
+
+#: ../../mod/settings.php:517
+msgid "Name of application"
+msgstr "Nome da aplicação"
+
+#: ../../mod/settings.php:518 ../../mod/settings.php:544
+msgid "Consumer Key"
+msgstr "Chave de consumidor"
+
+#: ../../mod/settings.php:518 ../../mod/settings.php:519
+msgid "Automatically generated - change if desired. Max length 20"
+msgstr "Gerado automaticamente - troque se desejável. Comprimento máximo 20"
+
+#: ../../mod/settings.php:519 ../../mod/settings.php:545
+msgid "Consumer Secret"
+msgstr "Segredo de consumidor"
+
+#: ../../mod/settings.php:520 ../../mod/settings.php:546
+msgid "Redirect"
+msgstr "Redirecionamento"
+
+#: ../../mod/settings.php:520
+msgid ""
+"Redirect URI - leave blank unless your application specifically requires "
+"this"
+msgstr "URI de redirecionamento - deixe em branco, a não ser que sua aplicação especificamente requeira isso"
+
+#: ../../mod/settings.php:521 ../../mod/settings.php:547
+msgid "Icon url"
+msgstr "URL do ícone"
+
+#: ../../mod/settings.php:521
+msgid "Optional"
+msgstr "Opcional"
+
+#: ../../mod/settings.php:532
+msgid "You can't edit this application."
+msgstr "Você não pode editar esta aplicação."
+
+#: ../../mod/settings.php:575
+msgid "Connected Apps"
+msgstr "Aplicações conectadas"
+
+#: ../../mod/settings.php:579
+msgid "Client key starts with"
+msgstr "Chave do cliente começa com"
+
+#: ../../mod/settings.php:580
+msgid "No name"
+msgstr "Sem nome"
+
+#: ../../mod/settings.php:581
+msgid "Remove authorization"
+msgstr "Remover autorização"
+
+#: ../../mod/settings.php:592
+msgid "No feature settings configured"
+msgstr "Não foi definida nenhuma configuração do recurso"
+
+#: ../../mod/settings.php:600
+msgid "Feature Settings"
+msgstr "Configurações do recurso"
+
+#: ../../mod/settings.php:623
+msgid "Account Settings"
+msgstr "Configurações da conta"
+
+#: ../../mod/settings.php:624
+msgid "Password Settings"
+msgstr "Configurações da senha"
+
+#: ../../mod/settings.php:625
+msgid "New Password:"
+msgstr "Nova senha:"
+
+#: ../../mod/settings.php:626
+msgid "Confirm:"
+msgstr "Confirme:"
+
+#: ../../mod/settings.php:626
+msgid "Leave password fields blank unless changing"
+msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
+
+#: ../../mod/settings.php:628 ../../mod/settings.php:937
+msgid "Email Address:"
+msgstr "Endereço de e-mail:"
+
+#: ../../mod/settings.php:629
+msgid "Remove Account"
+msgstr "Remover conta"
+
+#: ../../mod/settings.php:630
+msgid "Warning: This action is permanent and cannot be reversed."
+msgstr "Atenção: Esta ação é permanente e não pode ser revertida."
+
+#: ../../mod/settings.php:646
+msgid "Off"
+msgstr "Desligado"
+
+#: ../../mod/settings.php:646
+msgid "On"
+msgstr "Ligado"
+
+#: ../../mod/settings.php:653
+msgid "Additional Features"
+msgstr "Recursos adicionais"
+
+#: ../../mod/settings.php:678
+msgid "Connector Settings"
+msgstr "Configurações do conector"
+
+#: ../../mod/settings.php:708 ../../mod/admin.php:379
+msgid "No special theme for mobile devices"
+msgstr "Sem tema especial para aparelhos móveis"
+
+#: ../../mod/settings.php:749
+msgid "Display Settings"
+msgstr "Configurações de exibição"
+
+#: ../../mod/settings.php:755
+msgid "Display Theme:"
+msgstr "Tema do perfil:"
+
+#: ../../mod/settings.php:756
+msgid "Mobile Theme:"
+msgstr "Tema móvel:"
+
+#: ../../mod/settings.php:757
+msgid "Update browser every xx seconds"
+msgstr "Atualizar navegador a cada xx segundos"
+
+#: ../../mod/settings.php:757
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Mínimo de 10 segundos, sem máximo"
+
+#: ../../mod/settings.php:758
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Número máximo permitido de conversas carregadas:"
+
+#: ../../mod/settings.php:758
+msgid "Maximum of 100 items"
+msgstr "Máximo de 100 itens"
+
+#: ../../mod/settings.php:759
+msgid "Don't show emoticons"
+msgstr "Não exibir emoticons"
+
+#: ../../mod/settings.php:760
+msgid "Do not view remote profiles in frames"
+msgstr "Não exibir perfis remotos em frames"
+
+#: ../../mod/settings.php:760
+msgid "By default open in a sub-window of your own site"
+msgstr "Por padrão, abrir em uma sub-janela do seu próprio site"
+
+#: ../../mod/settings.php:795
+msgid "Nobody except yourself"
+msgstr "Ninguém exceto você mesmo"
+
+#: ../../mod/settings.php:796
+msgid "Only those you specifically allow"
+msgstr "Apenas quem você der permissão"
+
+#: ../../mod/settings.php:797
+msgid "Anybody in your address book"
+msgstr "Qualquer um nos seus contatos"
+
+#: ../../mod/settings.php:798
+msgid "Anybody on this website"
+msgstr "Qualquer um neste site"
+
+#: ../../mod/settings.php:799
+msgid "Anybody in this network"
+msgstr "Qualquer um nesta rede"
+
+#: ../../mod/settings.php:800
+msgid "Anybody authenticated"
+msgstr "Qualquer um autenticado"
+
+#: ../../mod/settings.php:801
+msgid "Anybody on the internet"
+msgstr "Qualquer um na internet"
+
+#: ../../mod/settings.php:878
+msgid "Publish your default profile in the network directory"
+msgstr "Publicar seu perfil padrão no diretório da rede?"
+
+#: ../../mod/settings.php:878 ../../mod/settings.php:883
+#: ../../mod/settings.php:954 ../../mod/api.php:106 ../../mod/profiles.php:484
+msgid "No"
+msgstr "Não"
+
+#: ../../mod/settings.php:878 ../../mod/settings.php:883
+#: ../../mod/settings.php:954 ../../mod/api.php:105 ../../mod/profiles.php:483
+msgid "Yes"
+msgstr "Sim"
+
+#: ../../mod/settings.php:883
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Permitir sugerir você como amigo potencial para outros membros?"
+
+#: ../../mod/settings.php:887 ../../mod/profile_photo.php:288
+msgid "or"
+msgstr "ou"
+
+#: ../../mod/settings.php:892
+msgid "Your channel address is"
+msgstr "O endereço do seu canal é"
+
+#: ../../mod/settings.php:926
+msgid "Channel Settings"
+msgstr "Configurações do canal"
+
+#: ../../mod/settings.php:935
+msgid "Basic Settings"
+msgstr "Configurações básicas"
+
+#: ../../mod/settings.php:938
+msgid "Your Timezone:"
+msgstr "Seu fuso horário:"
+
+#: ../../mod/settings.php:939
+msgid "Default Post Location:"
+msgstr "Localização padrão de suas publicações:"
+
+#: ../../mod/settings.php:940
+msgid "Use Browser Location:"
+msgstr "Usar localizador do navegador:"
+
+#: ../../mod/settings.php:942
+msgid "Adult Content"
+msgstr "Conteúdo adulto"
+
+#: ../../mod/settings.php:942
+msgid ""
+"This channel frequently or regularly publishes adult content. (Please tag "
+"any adult material and/or nudity with #NSFW)"
+msgstr "Este canal frequentemente ou regularmente publica conteúdo adulto. (Por favor marque qualquer material adulto e/ou nudez com #NSFW)"
+
+#: ../../mod/settings.php:944
+msgid "Security and Privacy Settings"
+msgstr "Configurações de segurança e privacidade"
+
+#: ../../mod/settings.php:946
+msgid "Hide my online presence"
+msgstr "Esconda minha presença online"
+
+#: ../../mod/settings.php:946
+msgid "Prevents displaying in your profile that you are online"
+msgstr "Previne exibir em seu perfil que você está online"
+
+#: ../../mod/settings.php:948
+msgid "Simple Privacy Settings:"
+msgstr "Configurações de privacidade simples:"
+
+#: ../../mod/settings.php:949
+msgid ""
+"Very Public - extremely permissive (should be used with caution)"
+msgstr "Muito público - extremamente permissivo (deve ser usado com cuidado)"
+
+#: ../../mod/settings.php:950
+msgid ""
+"Typical - default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)"
+msgstr "Típico - público por padrão, privado quando desejável (similar às permissões de redes sociais, mas com melhor privacidade)"
+
+#: ../../mod/settings.php:951
+msgid "Private - default private, never open or public"
+msgstr "Privado - privado por padrão, nunca aberto ou público"
+
+#: ../../mod/settings.php:952
+msgid "Blocked - default blocked to/from everybody"
+msgstr "Bloqueado - por padrão bloquado de/para todos"
+
+#: ../../mod/settings.php:954
+msgid "Allow others to tag your posts"
+msgstr "Permitir que outros etiquetem suas publicações"
+
+#: ../../mod/settings.php:954
+msgid ""
+"Often used by the community to retro-actively flag inappropriate content"
+msgstr "Frequentemente utilizado pela comunidade para retroativamente sinalizar conteúdo inapropriado"
+
+#: ../../mod/settings.php:956
+msgid "Advanced Privacy Settings"
+msgstr "Configurações de privacidade avançadas"
+
+#: ../../mod/settings.php:958
+msgid "Maximum Friend Requests/Day:"
+msgstr "Número máximo de requisições de amizade por dia:"
+
+#: ../../mod/settings.php:958
+msgid "May reduce spam activity"
+msgstr "Pode reduzir a frequência de spam"
+
+#: ../../mod/settings.php:959
+msgid "Default Post Permissions"
+msgstr "Permissões padrão de publicação"
+
+#: ../../mod/settings.php:960 ../../mod/mitem.php:134 ../../mod/mitem.php:177
+msgid "(click to open/close)"
+msgstr "(clique para abrir/fechar)"
+
+#: ../../mod/settings.php:971
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Máximo número de mensagens privadas por dia de pessoas desconhecidas:"
+
+#: ../../mod/settings.php:971
+msgid "Useful to reduce spamming"
+msgstr "Útil para reduzir a frequência de spam"
+
+#: ../../mod/settings.php:974
+msgid "Notification Settings"
+msgstr "Configurações de notificação"
+
+#: ../../mod/settings.php:975
+msgid "By default post a status message when:"
+msgstr "Por padrão, publicar uma mensagem de status quando:"
+
+#: ../../mod/settings.php:976
+msgid "accepting a friend request"
+msgstr "aceitar um pedido de amizade"
+
+#: ../../mod/settings.php:977
+msgid "joining a forum/community"
+msgstr "associar-se a um fórum/comunidade"
+
+#: ../../mod/settings.php:978
+msgid "making an interesting profile change"
+msgstr "modificar algo interessante em seu perfil"
+
+#: ../../mod/settings.php:979
+msgid "Send a notification email when:"
+msgstr "Enviar um e-mail de notificação quando:"
+
+#: ../../mod/settings.php:980
+msgid "You receive an introduction"
+msgstr "Você recebeu uma apresentação"
+
+#: ../../mod/settings.php:981
+msgid "Your introductions are confirmed"
+msgstr "Suas solicitações forem confirmadas"
+
+#: ../../mod/settings.php:982
+msgid "Someone writes on your profile wall"
+msgstr "Alguém escrever no mural do seu perfil"
+
+#: ../../mod/settings.php:983
+msgid "Someone writes a followup comment"
+msgstr "Alguém comentou a sua mensagem"
+
+#: ../../mod/settings.php:984
+msgid "You receive a private message"
+msgstr "Você recebeu uma mensagem privada"
+
+#: ../../mod/settings.php:985
+msgid "You receive a friend suggestion"
+msgstr "Você recebe uma sugestão de amizade"
+
+#: ../../mod/settings.php:986
+msgid "You are tagged in a post"
+msgstr "Você é mencionado num post"
+
+#: ../../mod/settings.php:987
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Você foi cutucado/espetado/etc. numa publicação"
+
+#: ../../mod/settings.php:990
+msgid "Advanced Account/Page Type Settings"
+msgstr "Configurações avançadas de conta/tipo de página"
+
+#: ../../mod/settings.php:991
+msgid "Change the behaviour of this account for special situations"
+msgstr "Mudar o comportamento dessa conta em situações especiais"
+
+#: ../../mod/settings.php:994
+msgid ""
+"Please enable expert mode (in Settings > "
+"Additional features) to adjust!"
+msgstr "Por favor, habilite o modo expert (em Configurações > Recursos adicionais) para ajustar!"
+
+#: ../../mod/settings.php:995
+msgid "Miscellaneous Settings"
+msgstr "Configurações miscelâneas"
+
+#: ../../mod/settings.php:997
+msgid "Personal menu to display in your channel pages"
+msgstr "Menu pessoal para exibir nas páginas dos seus canais"
+
+#: ../../mod/menu.php:21
+msgid "Menu updated."
+msgstr "Menu atualizado."
+
+#: ../../mod/menu.php:25
+msgid "Unable to update menu."
+msgstr "Não foi possível atualizar o menu."
+
+#: ../../mod/menu.php:30
+msgid "Menu created."
+msgstr "Menu criado."
+
+#: ../../mod/menu.php:34
+msgid "Unable to create menu."
+msgstr "Não foi possível criar o menu."
+
+#: ../../mod/menu.php:57
+msgid "Manage Menus"
+msgstr "Administrar menus"
+
+#: ../../mod/menu.php:60
+msgid "Drop"
+msgstr "Descartar"
+
+#: ../../mod/menu.php:62
+msgid "Create a new menu"
+msgstr "Criar um novo menu"
+
+#: ../../mod/menu.php:63
+msgid "Delete this menu"
+msgstr "Deletar este menu"
+
+#: ../../mod/menu.php:64 ../../mod/menu.php:109
+msgid "Edit menu contents"
+msgstr "Editar os conteúdos do menu"
+
+#: ../../mod/menu.php:65
+msgid "Edit this menu"
+msgstr "Editar este menu"
+
+#: ../../mod/menu.php:80
+msgid "New Menu"
+msgstr "Novo menu"
+
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Menu name"
+msgstr "Nome do menu"
+
+#: ../../mod/menu.php:81 ../../mod/menu.php:110
+msgid "Must be unique, only seen by you"
+msgstr "Deve ser único, exibido somente para você"
+
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title"
+msgstr "Título do menu"
+
+#: ../../mod/menu.php:82 ../../mod/menu.php:111
+msgid "Menu title as seen by others"
+msgstr "Título do menu quando visto por outros"
+
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Allow bookmarks"
+msgstr "Habilitar links guardados"
+
+#: ../../mod/menu.php:83 ../../mod/menu.php:112
+msgid "Menu may be used to store saved bookmarks"
+msgstr "O menu pode ser utilizado para armazenar links guardados"
+
+#: ../../mod/menu.php:84 ../../mod/mitem.php:142 ../../mod/new_channel.php:117
+msgid "Create"
+msgstr "Criar"
+
+#: ../../mod/menu.php:92 ../../mod/mitem.php:14
+msgid "Menu not found."
+msgstr "O menu não foi encontrado."
+
+#: ../../mod/menu.php:98
+msgid "Menu deleted."
+msgstr "Menu deletado."
+
+#: ../../mod/menu.php:100
+msgid "Menu could not be deleted."
+msgstr "Não foi possível deletar o menu."
+
+#: ../../mod/menu.php:106
+msgid "Edit Menu"
+msgstr "Editar menu"
+
+#: ../../mod/menu.php:108
+msgid "Add or remove entries to this menu"
+msgstr "Adicionar ou remover entradas deste menu"
+
+#: ../../mod/menu.php:114 ../../mod/mitem.php:186
+msgid "Modify"
+msgstr "Modificar"
+
+#: ../../mod/menu.php:120 ../../mod/mitem.php:78 ../../mod/xchan.php:27
+#: ../../mod/dirprofile.php:181
+msgid "Not found."
+msgstr "Não encontrado."
+
+#: ../../mod/webpages.php:121 ../../mod/layouts.php:100
+#: ../../mod/blocks.php:96
+msgid "View"
+msgstr "Ver"
+
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizar a conexão com a aplicação"
+
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Volte para a sua aplicação e digite este código de segurança:"
+
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Por favor, autentique-se para continuar."
+
+#: ../../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 "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
+
+#: ../../mod/apps.php:8
+msgid "No installed applications."
+msgstr "Não existe nenhuma aplicação instalada."
+
+#: ../../mod/apps.php:13
+msgid "Applications"
msgstr "Aplicações"
-#: ../../include/nav.php:80
-msgid "Directory"
-msgstr "Diretório"
+#: ../../mod/rpost.php:86 ../../mod/editpost.php:42
+msgid "Edit post"
+msgstr "Editar a publicação"
-#: ../../include/nav.php:90
-msgid "Network"
-msgstr "Rede"
+#: ../../mod/cloud.php:112
+msgid "Red Matrix - Guests: Username: {your email address}, Password: +++"
+msgstr "Red Matrix - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++"
-#: ../../include/nav.php:98
-msgid "Notifications"
-msgstr "Notificações"
+#: ../../mod/bookmarks.php:38
+msgid "Bookmark added"
+msgstr "O link foi guardado"
-#: ../../include/nav.php:104
-msgid "Manage"
-msgstr "Gerenciar"
+#: ../../mod/bookmarks.php:53
+msgid "My Bookmarks"
+msgstr "Meus links guardados"
-#: ../../include/nav.php:107
-msgid "Settings"
-msgstr "Configurações"
+#: ../../mod/bookmarks.php:64
+msgid "My Connections Bookmarks"
+msgstr "Links guardados das minhas conexões"
-#: ../../include/auth.php:27
-msgid "Logged out."
-msgstr "Saiu."
+#: ../../mod/item.php:145
+msgid "Unable to locate original post."
+msgstr "Não foi possível localizar a publicação original."
-#: ../../include/datetime.php:44 ../../include/datetime.php:46
-msgid "Miscellaneous"
-msgstr "Miscelânea"
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "A publicação em branco foi descartada."
-#: ../../include/datetime.php:148
-msgid "less than a second ago"
-msgstr "menos de um segundo atrás"
+#: ../../mod/item.php:388
+msgid "Executable content type not permitted to this channel."
+msgstr "Conteúdo de tipo executável não permitido para este canal."
-#: ../../include/datetime.php:151
-msgid "year"
-msgstr "ano"
+#: ../../mod/item.php:845
+msgid "System error. Post not saved."
+msgstr "Erro no sistema. A publicação não foi salva."
-#: ../../include/datetime.php:151
-msgid "years"
-msgstr "anos"
+#: ../../mod/item.php:1112 ../../mod/wall_upload.php:34
+msgid "Wall Photos"
+msgstr "Fotos do mural"
-#: ../../include/datetime.php:152
-msgid "month"
-msgstr "mês"
-
-#: ../../include/datetime.php:152
-msgid "months"
-msgstr "meses"
-
-#: ../../include/datetime.php:153
-msgid "week"
-msgstr "semana"
-
-#: ../../include/datetime.php:153
-msgid "weeks"
-msgstr "semanas"
-
-#: ../../include/datetime.php:154
-msgid "day"
-msgstr "dia"
-
-#: ../../include/datetime.php:155
-msgid "hour"
-msgstr "hora"
-
-#: ../../include/datetime.php:155
-msgid "hours"
-msgstr "horas"
-
-#: ../../include/datetime.php:156
-msgid "minute"
-msgstr "minuto"
-
-#: ../../include/datetime.php:156
-msgid "minutes"
-msgstr "minutos"
-
-#: ../../include/datetime.php:157
-msgid "second"
-msgstr "segundo"
-
-#: ../../include/datetime.php:157
-msgid "seconds"
-msgstr "segundos"
-
-#: ../../include/datetime.php:164
-msgid " ago"
-msgstr " atrás"
-
-#: ../../include/poller.php:380
-msgid "From: "
-msgstr "De: "
-
-#: ../../include/bbcode.php:83
-msgid "Image/photo"
-msgstr "Imagem/foto"
-
-#: ../../include/dba.php:31
+#: ../../mod/item.php:1192
#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr ""
-"Não foi possível localizar a informação de DNS para o servidor de banco de "
-"dados '%s'"
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Você atingiu o seu limite de %1$.0f publicações de novos tópicos."
-#: ../../include/acl_selectors.php:133
-msgid "Visible To:"
-msgstr "Visível para:"
+#: ../../mod/item.php:1198
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Você atingiu o seu limite de %1$.0f páginas web."
-#: ../../include/acl_selectors.php:133
-msgid "everybody"
-msgstr "todos"
+#: ../../mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s está acompanhando %3$s de %2$s"
-#: ../../include/acl_selectors.php:137 ../../include/acl_selectors.php:152
-msgid "Groups"
-msgstr "Grupos"
+#: ../../mod/update_network.php:23 ../../mod/update_channel.php:43
+#: ../../mod/update_search.php:46 ../../mod/update_display.php:25
+#: ../../mod/update_community.php:18
+msgid "[Embedded content - reload page to view]"
+msgstr "[Conteúdo incorporado - recarregue a página para ver]"
-#: ../../include/acl_selectors.php:148
-msgid "Except For:"
-msgstr "Exceto para:"
+#: ../../mod/chanview.php:77 ../../mod/home.php:50 ../../mod/page.php:47
+#: ../../mod/wall_upload.php:28
+msgid "Channel not found."
+msgstr "O canal não foi encontrado."
-#: ../../include/notifier.php:414
-msgid "(no subject)"
-msgstr "(sem assunto)"
+#: ../../mod/chanview.php:93
+msgid "toggle full screen mode"
+msgstr "alternar o mode de tela inteira"
-#: ../../include/items.php:1447
-msgid "You have a new follower at "
-msgstr "Você tem um novo acompanhante em "
+#: ../../mod/tagger.php:98
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
-#: ../../include/conversation.php:191 ../../include/conversation.php:451
-#: ../../include/conversation.php:452
+#: ../../mod/chat.php:19 ../../mod/channel.php:25
+msgid "You must be logged in to see this page."
+msgstr "Você precisa estar autenticado para ver esta página."
+
+#: ../../mod/chat.php:165
+msgid "Room not found"
+msgstr "Sala não encontrada"
+
+#: ../../mod/chat.php:175
+msgid "Leave Room"
+msgstr "Sair da sala"
+
+#: ../../mod/chat.php:176
+msgid "I am away right now"
+msgstr "Eu estou ausente no momento"
+
+#: ../../mod/chat.php:177
+msgid "I am online"
+msgstr "Eu estou online"
+
+#: ../../mod/chat.php:179
+msgid "Bookmark this room"
+msgstr "Guarde esta sala"
+
+#: ../../mod/chat.php:203 ../../mod/chat.php:223
+msgid "New Chatroom"
+msgstr "Nova sala de bate-papo"
+
+#: ../../mod/chat.php:204
+msgid "Chatroom Name"
+msgstr "Nome da sala de bate-papo"
+
+#: ../../mod/chat.php:219
+#, php-format
+msgid "%1$s's Chatrooms"
+msgstr "Salas de bate-papo de %1$s"
+
+#: ../../mod/viewconnections.php:17 ../../mod/search.php:13
+#: ../../mod/directory.php:15 ../../mod/display.php:9
+#: ../../mod/community.php:18 ../../mod/dirprofile.php:9
+#: ../../mod/photos.php:443
+msgid "Public access denied."
+msgstr "Acesso público negado."
+
+#: ../../mod/viewconnections.php:43
+msgid "No connections."
+msgstr "Nenhuma conexão."
+
+#: ../../mod/viewconnections.php:55
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Ver o perfil de %s [%s]"
+
+#: ../../mod/viewconnections.php:70
+msgid "View Connnections"
+msgstr "Ver conexões"
+
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "A etiqueta foi removida"
+
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Remover a etiqueta de item"
+
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selecione uma etiqueta para remover: "
+
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 ../../mod/photos.php:909
+msgid "Remove"
+msgstr "Remover"
+
+#: ../../mod/connect.php:55 ../../mod/connect.php:103
+msgid "Continue"
+msgstr "Continuar"
+
+#: ../../mod/connect.php:84
+msgid "Premium Channel Setup"
+msgstr "Configuração de canal premium"
+
+#: ../../mod/connect.php:86
+msgid "Enable premium channel connection restrictions"
+msgstr "Habilitar restrições de canal premium para conexão"
+
+#: ../../mod/connect.php:87
+msgid ""
+"Please enter your restrictions or conditions, such as paypal receipt, usage "
+"guidelines, etc."
+msgstr "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc."
+
+#: ../../mod/connect.php:89 ../../mod/connect.php:109
+msgid ""
+"This channel may require additional steps or acknowledgement of the "
+"following conditions prior to connecting:"
+msgstr "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:"
+
+#: ../../mod/connect.php:90
+msgid ""
+"Potential connections will then see the following text before proceeding:"
+msgstr "Tentativas de conexões verão então o seguinte texto antes de prosseguir:"
+
+#: ../../mod/connect.php:91 ../../mod/connect.php:112
+msgid ""
+"By continuing, I certify that I have complied with any instructions provided"
+" on this page."
+msgstr "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página."
+
+#: ../../mod/connect.php:100
+msgid "(No specific instructions have been provided by the channel owner.)"
+msgstr "(Nenhuma instrução foi especificada pelo dono do canal.)"
+
+#: ../../mod/connect.php:108
+msgid "Restricted or Premium Channel"
+msgstr "Canal restrito ou premium"
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Nenhum potencial delegado para páginas localizado."
+
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "Delegar administração de página"
+
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Delegados podem administrar todos os aspectos desta conta/página exceto pelas configurações básicas da conta. Por favor, não delegue sua conta pessoal para alguém que você não confie completamente."
+
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Atuais administradores da página"
+
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Atuais delegados da página"
+
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Potenciais delegados"
+
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Adicionar"
+
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Sem entradas."
+
+#: ../../mod/attach.php:9
+msgid "Item not available."
+msgstr "O item não está disponível."
+
+#: ../../mod/mitem.php:47
+msgid "Menu element updated."
+msgstr "O elemento de menu foi atualizado."
+
+#: ../../mod/mitem.php:51
+msgid "Unable to update menu element."
+msgstr "Não foi possível atualizar o elemento de menu."
+
+#: ../../mod/mitem.php:57
+msgid "Menu element added."
+msgstr "O elemento de menu foi adicionado."
+
+#: ../../mod/mitem.php:61
+msgid "Unable to add menu element."
+msgstr "Não foi possível adicionar o elemento de menu."
+
+#: ../../mod/mitem.php:96
+msgid "Manage Menu Elements"
+msgstr "Administrar elementos de menu"
+
+#: ../../mod/mitem.php:99
+msgid "Edit menu"
+msgstr "Editar menu"
+
+#: ../../mod/mitem.php:102
+msgid "Edit element"
+msgstr "Editar elemento"
+
+#: ../../mod/mitem.php:103
+msgid "Drop element"
+msgstr "Descartar elemento"
+
+#: ../../mod/mitem.php:104
+msgid "New element"
+msgstr "Novo elemento"
+
+#: ../../mod/mitem.php:105
+msgid "Edit this menu container"
+msgstr "Editar esta caixa de menu"
+
+#: ../../mod/mitem.php:106
+msgid "Add menu element"
+msgstr "Adicionar um elemento de menu"
+
+#: ../../mod/mitem.php:107
+msgid "Delete this menu item"
+msgstr "Deleter este item de menu"
+
+#: ../../mod/mitem.php:108
+msgid "Edit this menu item"
+msgstr "Editar este item de menu"
+
+#: ../../mod/mitem.php:131
+msgid "New Menu Element"
+msgstr "Novo elemento de menu"
+
+#: ../../mod/mitem.php:133 ../../mod/mitem.php:176
+msgid "Menu Item Permissions"
+msgstr "Permissões do item do menu"
+
+#: ../../mod/mitem.php:136 ../../mod/mitem.php:180
+msgid "Link text"
+msgstr "Texto do link"
+
+#: ../../mod/mitem.php:137 ../../mod/mitem.php:181
+msgid "URL of link"
+msgstr "URL do link"
+
+#: ../../mod/mitem.php:138 ../../mod/mitem.php:182
+msgid "Use Red magic-auth if available"
+msgstr "Usar Red magic-auth se disponível"
+
+#: ../../mod/mitem.php:139 ../../mod/mitem.php:183
+msgid "Open link in new window"
+msgstr "Abrir link em uma nova janela"
+
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Order in list"
+msgstr "Ordem na lista"
+
+#: ../../mod/mitem.php:141 ../../mod/mitem.php:185
+msgid "Higher numbers will sink to bottom of listing"
+msgstr "Números mais altos descem para o fim da lista"
+
+#: ../../mod/mitem.php:154
+msgid "Menu item not found."
+msgstr "O item de menu não foi encontrado."
+
+#: ../../mod/mitem.php:163
+msgid "Menu item deleted."
+msgstr "O item de menu foi deletado."
+
+#: ../../mod/mitem.php:165
+msgid "Menu item could not be deleted."
+msgstr "Não foi possível deletar o item de menu."
+
+#: ../../mod/mitem.php:174
+msgid "Edit Menu Element"
+msgstr "Editar elemento de menu"
+
+#: ../../mod/profperm.php:29 ../../mod/profperm.php:58
+msgid "Invalid profile identifier."
+msgstr "Identificador de perfil inválido."
+
+#: ../../mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Editor de visibilidade do perfil"
+
+#: ../../mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Clique em um contato para adicionar ou remover."
+
+#: ../../mod/profperm.php:118
+msgid "Visible To"
+msgstr "Visível para"
+
+#: ../../mod/profperm.php:134 ../../mod/connections.php:250
+msgid "All Connections"
+msgstr "Todas as conexões"
+
+#: ../../mod/group.php:20
+msgid "Collection created."
+msgstr "Coleção criada"
+
+#: ../../mod/group.php:26
+msgid "Could not create collection."
+msgstr "Não foi possível criar a coleção."
+
+#: ../../mod/group.php:54
+msgid "Collection updated."
+msgstr "Coleção atualizada"
+
+#: ../../mod/group.php:86
+msgid "Create a collection of channels."
+msgstr "Criar uma coleção de canais."
+
+#: ../../mod/group.php:87 ../../mod/group.php:183
+msgid "Collection Name: "
+msgstr "Nome da coleção:"
+
+#: ../../mod/group.php:89 ../../mod/group.php:186
+msgid "Members are visible to other channels"
+msgstr "Membros são visíveis para outros canais"
+
+#: ../../mod/group.php:107
+msgid "Collection removed."
+msgstr "Coleção removida."
+
+#: ../../mod/group.php:109
+msgid "Unable to remove collection."
+msgstr "Não foi possível remover a coleção."
+
+#: ../../mod/group.php:182
+msgid "Collection Editor"
+msgstr "Editor de coleção"
+
+#: ../../mod/group.php:196
+msgid "Members"
+msgstr "Membros"
+
+#: ../../mod/group.php:198
+msgid "All Connected Channels"
+msgstr "Todas os canais conectados"
+
+#: ../../mod/group.php:231
+msgid "Click on a channel to add or remove."
+msgstr "Clique em um canal para adicionar ou remover."
+
+#: ../../mod/admin.php:48
+msgid "Theme settings updated."
+msgstr "As configurações de tema foram atualizadas."
+
+#: ../../mod/admin.php:88 ../../mod/admin.php:430
+msgid "Site"
+msgstr "Site"
+
+#: ../../mod/admin.php:89 ../../mod/admin.php:738 ../../mod/admin.php:750
+msgid "Users"
+msgstr "Usuários"
+
+#: ../../mod/admin.php:90 ../../mod/admin.php:836 ../../mod/admin.php:878
+msgid "Plugins"
+msgstr "Plugins"
+
+#: ../../mod/admin.php:91 ../../mod/admin.php:1041 ../../mod/admin.php:1077
+msgid "Themes"
+msgstr "Temas"
+
+#: ../../mod/admin.php:92 ../../mod/admin.php:529
+msgid "Server"
+msgstr "Servidor"
+
+#: ../../mod/admin.php:93
+msgid "DB updates"
+msgstr "Atualizações do Banco de Dados"
+
+#: ../../mod/admin.php:107 ../../mod/admin.php:114 ../../mod/admin.php:1164
+msgid "Logs"
+msgstr "Logs"
+
+#: ../../mod/admin.php:113
+msgid "Plugin Features"
+msgstr "Recursos dos plugins"
+
+#: ../../mod/admin.php:115
+msgid "User registrations waiting for confirmation"
+msgstr "Registros de usuário aguardando confirmação"
+
+#: ../../mod/admin.php:189
+msgid "Message queues"
+msgstr "Filas de mensagem"
+
+#: ../../mod/admin.php:194 ../../mod/admin.php:429 ../../mod/admin.php:528
+#: ../../mod/admin.php:737 ../../mod/admin.php:835 ../../mod/admin.php:877
+#: ../../mod/admin.php:1040 ../../mod/admin.php:1076 ../../mod/admin.php:1163
+msgid "Administration"
+msgstr "Administração"
+
+#: ../../mod/admin.php:195
+msgid "Summary"
+msgstr "Resumo"
+
+#: ../../mod/admin.php:197
+msgid "Registered users"
+msgstr "Usuários registrados"
+
+#: ../../mod/admin.php:199 ../../mod/admin.php:532
+msgid "Pending registrations"
+msgstr "Registros pendentes"
+
+#: ../../mod/admin.php:200
+msgid "Version"
+msgstr "Versão"
+
+#: ../../mod/admin.php:202 ../../mod/admin.php:533
+msgid "Active plugins"
+msgstr "Plugins ativos"
+
+#: ../../mod/admin.php:350
+msgid "Site settings updated."
+msgstr "As configurações de site foram atualizadas."
+
+#: ../../mod/admin.php:381
+msgid "No special theme for accessibility"
+msgstr "Sem tema especial para acessibilidade"
+
+#: ../../mod/admin.php:409
+msgid "Closed"
+msgstr "Fechado"
+
+#: ../../mod/admin.php:410
+msgid "Requires approval"
+msgstr "Requer aprovação"
+
+#: ../../mod/admin.php:411
+msgid "Open"
+msgstr "Aberto"
+
+#: ../../mod/admin.php:416
+msgid "Private"
+msgstr "Privado"
+
+#: ../../mod/admin.php:417
+msgid "Paid Access"
+msgstr "Acesso pago"
+
+#: ../../mod/admin.php:418
+msgid "Free Access"
+msgstr "Acesso gratuito"
+
+#: ../../mod/admin.php:419
+msgid "Tiered Access"
+msgstr "Acesso em níveis"
+
+#: ../../mod/admin.php:432 ../../mod/register.php:189
+msgid "Registration"
+msgstr "Registro"
+
+#: ../../mod/admin.php:433
+msgid "File upload"
+msgstr "Carregamento de arquivos"
+
+#: ../../mod/admin.php:434
+msgid "Policies"
+msgstr "Políticas"
+
+#: ../../mod/admin.php:435
+msgid "Advanced"
+msgstr "Avançado"
+
+#: ../../mod/admin.php:439
+msgid "Site name"
+msgstr "Nome do site"
+
+#: ../../mod/admin.php:440
+msgid "Banner/Logo"
+msgstr "Cartaz/Logo"
+
+#: ../../mod/admin.php:441
+msgid "Administrator Information"
+msgstr "Informações do Administrador"
+
+#: ../../mod/admin.php:441
+msgid ""
+"Contact information for site administrators. Displayed on siteinfo page. "
+"BBCode can be used here"
+msgstr "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui."
+
+#: ../../mod/admin.php:442
+msgid "System language"
+msgstr "Idioma do sistema"
+
+#: ../../mod/admin.php:443
+msgid "System theme"
+msgstr "Tema do sistema"
+
+#: ../../mod/admin.php:443
+msgid ""
+"Default system theme - may be over-ridden by user profiles - change theme settings"
+msgstr "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - mudar configurações do tema"
+
+#: ../../mod/admin.php:444
+msgid "Mobile system theme"
+msgstr "Tema do sistema móvel"
+
+#: ../../mod/admin.php:444
+msgid "Theme for mobile devices"
+msgstr "Tema para dispositivos móveis"
+
+#: ../../mod/admin.php:445
+msgid "Accessibility system theme"
+msgstr "Tema do sistema acessível"
+
+#: ../../mod/admin.php:445
+msgid "Accessibility theme"
+msgstr "Tema acessível"
+
+#: ../../mod/admin.php:446
+msgid "Channel to use for this website's static pages"
+msgstr "Canal a utilizar para as páginas estáticas desse website"
+
+#: ../../mod/admin.php:446
+msgid "Site Channel"
+msgstr "Canal do site"
+
+#: ../../mod/admin.php:448
+msgid "Maximum image size"
+msgstr "Tamanho máximo de imagens"
+
+#: ../../mod/admin.php:448
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites."
+
+#: ../../mod/admin.php:449
+msgid "Register policy"
+msgstr "Política de registro"
+
+#: ../../mod/admin.php:450
+msgid "Access policy"
+msgstr "Política de acesso"
+
+#: ../../mod/admin.php:451
+msgid "Register text"
+msgstr "Texto de registro"
+
+#: ../../mod/admin.php:451
+msgid "Will be displayed prominently on the registration page."
+msgstr "Será exibido proeminentemente na página de registro."
+
+#: ../../mod/admin.php:452
+msgid "Accounts abandoned after x days"
+msgstr "Contas abandonadas após x dias"
+
+#: ../../mod/admin.php:452
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo."
+
+#: ../../mod/admin.php:453
+msgid "Allowed friend domains"
+msgstr "Domínios permitidos para amigos"
+
+#: ../../mod/admin.php:453
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. Wildcards são aceitas. Vazio para permitir qualquer domínio"
+
+#: ../../mod/admin.php:454
+msgid "Allowed email domains"
+msgstr "Domínios permitidos de e-mail"
+
+#: ../../mod/admin.php:454
+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 "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. Wildcards são aceitas. Vazio para permitir qualquer domínio"
+
+#: ../../mod/admin.php:455
+msgid "Block public"
+msgstr "Bloquear público"
+
+#: ../../mod/admin.php:455
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado."
+
+#: ../../mod/admin.php:456
+msgid "Force publish"
+msgstr "Forçar publicação"
+
+#: ../../mod/admin.php:456
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site."
+
+#: ../../mod/admin.php:457
+msgid "No login on Homepage"
+msgstr "Sem formulário de autenticação na página inicial"
+
+#: ../../mod/admin.php:457
+msgid ""
+"Check to hide the login form from your sites homepage when visitors arrive "
+"who are not logged in (e.g. when you put the content of the homepage in via "
+"the site channel)."
+msgstr "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site)."
+
+#: ../../mod/admin.php:459
+msgid "Proxy user"
+msgstr "Usuário do proxy"
+
+#: ../../mod/admin.php:460
+msgid "Proxy URL"
+msgstr "URL do proxy"
+
+#: ../../mod/admin.php:461
+msgid "Network timeout"
+msgstr "Timeout da rede"
+
+#: ../../mod/admin.php:461
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valor em segundos. Use 0 para ilimitado (não recomendado)."
+
+#: ../../mod/admin.php:462
+msgid "Delivery interval"
+msgstr "Intervalo de entrega"
+
+#: ../../mod/admin.php:462
+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 "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados."
+
+#: ../../mod/admin.php:463
+msgid "Poll interval"
+msgstr "Intervalo de coleta"
+
+#: ../../mod/admin.php:463
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega."
+
+#: ../../mod/admin.php:464
+msgid "Maximum Load Average"
+msgstr "Carga média máxima"
+
+#: ../../mod/admin.php:464
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50."
+
+#: ../../mod/admin.php:520
+msgid "No server found"
+msgstr "Nenhum servidor foi encontrado"
+
+#: ../../mod/admin.php:527 ../../mod/admin.php:751
+msgid "ID"
+msgstr "ID"
+
+#: ../../mod/admin.php:527
+msgid "for channel"
+msgstr "para o canal"
+
+#: ../../mod/admin.php:527
+msgid "on server"
+msgstr "no servidor"
+
+#: ../../mod/admin.php:527
+msgid "Status"
+msgstr "Status"
+
+#: ../../mod/admin.php:548
+msgid "Update has been marked successful"
+msgstr "A atualização foi designada bem sucedida"
+
+#: ../../mod/admin.php:558
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Execução de %s falhou. Verifique os logs do sistema."
+
+#: ../../mod/admin.php:561
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "A atualização %s foi aplicada com sucesso."
+
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso."
+
+#: ../../mod/admin.php:568
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "A função de atualização %s não foi encontrada."
+
+#: ../../mod/admin.php:583
+msgid "No failed updates."
+msgstr "Nenhuma falha nas atualizações."
+
+#: ../../mod/admin.php:587
+msgid "Failed Updates"
+msgstr "Falha nas atualizações"
+
+#: ../../mod/admin.php:589
+msgid "Mark success (if update was manually applied)"
+msgstr "Marque sucesso (se a atualização foi aplicada manualmente)"
+
+#: ../../mod/admin.php:590
+msgid "Attempt to execute this update step automatically"
+msgstr "Tente executar este passo da atualização automaticamente"
+
+#: ../../mod/admin.php:616
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s usuário foi bloqueado/desbloqueado"
+msgstr[1] "%s usuários foram bloqueados/desbloqueados"
+
+#: ../../mod/admin.php:623
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s usuário foi deletado"
+msgstr[1] "%s usuários foram deletados"
+
+#: ../../mod/admin.php:654
+msgid "Account not found"
+msgstr "A conta não foi encontrada"
+
+#: ../../mod/admin.php:665
+#, php-format
+msgid "User '%s' deleted"
+msgstr "O usuário/a '%s' foi deletado/a"
+
+#: ../../mod/admin.php:674
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "O usuário/a '%s' foi desbloqueado/a"
+
+#: ../../mod/admin.php:674
+#, php-format
+msgid "User '%s' blocked"
+msgstr "O usuário/a '%s' foi bloqueado/a"
+
+#: ../../mod/admin.php:740
+msgid "select all"
+msgstr "selecionar tudo"
+
+#: ../../mod/admin.php:741
+msgid "User registrations waiting for confirm"
+msgstr "Registros de usuário aguardando confirmação"
+
+#: ../../mod/admin.php:742
+msgid "Request date"
+msgstr "Data de requisição"
+
+#: ../../mod/admin.php:743
+msgid "No registrations."
+msgstr "Nenhum registro."
+
+#: ../../mod/admin.php:744
+msgid "Approve"
+msgstr "Aprovar"
+
+#: ../../mod/admin.php:745
+msgid "Deny"
+msgstr "Negar"
+
+#: ../../mod/admin.php:747 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Block"
+msgstr "Bloquear"
+
+#: ../../mod/admin.php:748 ../../mod/connedit.php:333
+#: ../../mod/connedit.php:475
+msgid "Unblock"
+msgstr "Desbloquear"
+
+#: ../../mod/admin.php:751
+msgid "Register date"
+msgstr "Data de registro"
+
+#: ../../mod/admin.php:751
+msgid "Last login"
+msgstr "Última autenticação"
+
+#: ../../mod/admin.php:751
+msgid "Expires"
+msgstr "Expira"
+
+#: ../../mod/admin.php:751
+msgid "Service Class"
+msgstr "Classe de serviço"
+
+#: ../../mod/admin.php:753
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?"
+
+#: ../../mod/admin.php:754
+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 "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?"
+
+#: ../../mod/admin.php:795
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s desabilitado."
+
+#: ../../mod/admin.php:799
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s habilitado."
+
+#: ../../mod/admin.php:809 ../../mod/admin.php:1011
+msgid "Disable"
+msgstr "Desabilitar"
+
+#: ../../mod/admin.php:811 ../../mod/admin.php:1013
+msgid "Enable"
+msgstr "Habilitar"
+
+#: ../../mod/admin.php:837 ../../mod/admin.php:1042
+msgid "Toggle"
+msgstr "Alternar"
+
+#: ../../mod/admin.php:845 ../../mod/admin.php:1052
+msgid "Author: "
+msgstr "Autor:"
+
+#: ../../mod/admin.php:846 ../../mod/admin.php:1053
+msgid "Maintainer: "
+msgstr "Mantenedor:"
+
+#: ../../mod/admin.php:975
+msgid "No themes found."
+msgstr "Nenhum tema foi encontrado."
+
+#: ../../mod/admin.php:1034
+msgid "Screenshot"
+msgstr "Captura de tela"
+
+#: ../../mod/admin.php:1082
+msgid "[Experimental]"
+msgstr "[Experimental]"
+
+#: ../../mod/admin.php:1083
+msgid "[Unsupported]"
+msgstr "[Desassistido]"
+
+#: ../../mod/admin.php:1110
+msgid "Log settings updated."
+msgstr "As configurações de log foram atualizadas."
+
+#: ../../mod/admin.php:1166
+msgid "Clear"
+msgstr "Limpar"
+
+#: ../../mod/admin.php:1172
+msgid "Debugging"
+msgstr "Depuração"
+
+#: ../../mod/admin.php:1173
+msgid "Log file"
+msgstr "Arquivo de log"
+
+#: ../../mod/admin.php:1173
+msgid ""
+"Must be writable by web server. Relative to your Red top-level directory."
+msgstr "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red."
+
+#: ../../mod/admin.php:1174
+msgid "Log level"
+msgstr "Nível do log"
+
+#: ../../mod/filer.php:35
+msgid "- select -"
+msgstr "- selecionar -"
+
+#: ../../mod/home.php:89
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bem-vindo(a) a %s"
+
+#: ../../mod/editpost.php:20 ../../mod/editlayout.php:36
+#: ../../mod/editwebpage.php:32 ../../mod/editblock.php:36
+msgid "Item not found"
+msgstr "O item não foi encontrado"
+
+#: ../../mod/editpost.php:31
+msgid "Item is not editable"
+msgstr "O item não está editável"
+
+#: ../../mod/editpost.php:53
+msgid "Delete item?"
+msgstr "Deletar item?"
+
+#: ../../mod/editpost.php:116 ../../mod/editlayout.php:110
+#: ../../mod/editwebpage.php:148 ../../mod/editblock.php:124
+msgid "Insert YouTube video"
+msgstr "Inserir vídeo do YouTube"
+
+#: ../../mod/editpost.php:117 ../../mod/editlayout.php:111
+#: ../../mod/editwebpage.php:149 ../../mod/editblock.php:125
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Inserir vídeo Vorbis (.ogg)"
+
+#: ../../mod/editpost.php:118 ../../mod/editlayout.php:112
+#: ../../mod/editwebpage.php:150 ../../mod/editblock.php:126
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Inserir áudio Vorbis (.ogg)"
+
+#: ../../mod/directory.php:144 ../../mod/profiles.php:561
+#: ../../mod/dirprofile.php:98
+msgid "Age: "
+msgstr "Idade: "
+
+#: ../../mod/directory.php:147 ../../mod/dirprofile.php:101
+msgid "Gender: "
+msgstr "Gênero: "
+
+#: ../../mod/directory.php:208
+msgid "Finding:"
+msgstr "Pesquisando:"
+
+#: ../../mod/directory.php:216
+msgid "next page"
+msgstr "próxima página"
+
+#: ../../mod/directory.php:216
+msgid "previous page"
+msgstr "página anterior"
+
+#: ../../mod/directory.php:223
+msgid "No entries (some entries may be hidden)."
+msgstr "Nenhuma entrada (algumas entradas podem estar escondidas)."
+
+#: ../../mod/connedit.php:49 ../../mod/connections.php:37
+msgid "Could not access contact record."
+msgstr "Não foi possível acessar o registro do contato."
+
+#: ../../mod/connedit.php:63 ../../mod/connections.php:51
+msgid "Could not locate selected profile."
+msgstr "Não foi possível localizar o perfil selecionado."
+
+#: ../../mod/connedit.php:107 ../../mod/connections.php:94
+msgid "Connection updated."
+msgstr "A conexão foi atualizada."
+
+#: ../../mod/connedit.php:109 ../../mod/connections.php:96
+msgid "Failed to update connection record."
+msgstr "Não foi possível atualizar o registro da conexão."
+
+#: ../../mod/connedit.php:204
+msgid "Could not access address book record."
+msgstr "Não foi possível acessar o registro do contato."
+
+#: ../../mod/connedit.php:218
+msgid "Refresh failed - channel is currently unavailable."
+msgstr "A atualização falhou - o canal está indisponível no momento."
+
+#: ../../mod/connedit.php:225
+msgid "Channel has been unblocked"
+msgstr "O canal foi desbloqueado"
+
+#: ../../mod/connedit.php:226
+msgid "Channel has been blocked"
+msgstr "O canal foi bloqueado"
+
+#: ../../mod/connedit.php:230 ../../mod/connedit.php:242
+#: ../../mod/connedit.php:254 ../../mod/connedit.php:266
+#: ../../mod/connedit.php:281
+msgid "Unable to set address book parameters."
+msgstr "Não foi possível definir os parâmetros do contato."
+
+#: ../../mod/connedit.php:237
+msgid "Channel has been unignored"
+msgstr "O canal não está mais ignorado"
+
+#: ../../mod/connedit.php:238
+msgid "Channel has been ignored"
+msgstr "O canal passou a estar ignorado"
+
+#: ../../mod/connedit.php:249
+msgid "Channel has been unarchived"
+msgstr "O canal deixou o arquivo"
+
+#: ../../mod/connedit.php:250
+msgid "Channel has been archived"
+msgstr "O canal foi colocado no arquivo"
+
+#: ../../mod/connedit.php:261
+msgid "Channel has been unhidden"
+msgstr "O canal não está mais oculto"
+
+#: ../../mod/connedit.php:262
+msgid "Channel has been hidden"
+msgstr "O canal passou a estar oculto"
+
+#: ../../mod/connedit.php:276
+msgid "Channel has been approved"
+msgstr "O canal foi aprovado"
+
+#: ../../mod/connedit.php:277
+msgid "Channel has been unapproved"
+msgstr "O canal deixou de estar aprovado"
+
+#: ../../mod/connedit.php:295
+msgid "Contact has been removed."
+msgstr "O contato foi removido."
+
+#: ../../mod/connedit.php:315
#, php-format
msgid "View %s's profile"
msgstr "Ver o perfil de %s"
-#: ../../include/conversation.php:207
-msgid "View in context"
-msgstr "Ver no contexto"
+#: ../../mod/connedit.php:319
+msgid "Refresh Permissions"
+msgstr "Atualizar permissões"
-#: ../../include/conversation.php:278
-msgid "See more posts like this"
-msgstr "Ver mais publicações como esta"
+#: ../../mod/connedit.php:322
+msgid "Fetch updated permissions"
+msgstr "Buscar as permissões atualizadas"
-#: ../../include/conversation.php:303
+#: ../../mod/connedit.php:326
+msgid "Recent Activity"
+msgstr "Atividades recentes"
+
+#: ../../mod/connedit.php:329
+msgid "View recent posts and comments"
+msgstr "Exibir publicações e comentários recentes"
+
+#: ../../mod/connedit.php:336
+msgid "Block or Unblock this connection"
+msgstr "Bloquear ou desbloquear esta conexão"
+
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+msgid "Unignore"
+msgstr "Não ignorar"
+
+#: ../../mod/connedit.php:340 ../../mod/connedit.php:476
+#: ../../mod/notifications.php:51
+msgid "Ignore"
+msgstr "Ignorar"
+
+#: ../../mod/connedit.php:343
+msgid "Ignore or Unignore this connection"
+msgstr "Ignorar ou deixar de ignorar esta conexão"
+
+#: ../../mod/connedit.php:346
+msgid "Unarchive"
+msgstr "Não arquivar"
+
+#: ../../mod/connedit.php:346
+msgid "Archive"
+msgstr "Arquivar"
+
+#: ../../mod/connedit.php:349
+msgid "Archive or Unarchive this connection"
+msgstr "Colocar ou retirar do arquivo esta conexão"
+
+#: ../../mod/connedit.php:352
+msgid "Unhide"
+msgstr "Não ocultar"
+
+#: ../../mod/connedit.php:352
+msgid "Hide"
+msgstr "Ocultar"
+
+#: ../../mod/connedit.php:355
+msgid "Hide or Unhide this connection"
+msgstr "Ocultar ou deixar de ocultar esta conexão"
+
+#: ../../mod/connedit.php:362
+msgid "Delete this connection"
+msgstr "Deletar esta conexão"
+
+#: ../../mod/connedit.php:395
+msgid "Unknown"
+msgstr "Desconhecidos"
+
+#: ../../mod/connedit.php:405 ../../mod/connedit.php:434
+msgid "Approve this connection"
+msgstr "Aprovar esta conexão"
+
+#: ../../mod/connedit.php:405
+msgid "Accept connection to allow communication"
+msgstr "Aceite a conexão para permitir comunicação"
+
+#: ../../mod/connedit.php:421
+msgid "Automatic Permissions Settings"
+msgstr "Configurações de permissão automáticas"
+
+#: ../../mod/connedit.php:421
#, php-format
-msgid "See all %d comments"
-msgstr "Ver todos os comentários de %d"
+msgid "Connections: settings for %s"
+msgstr "Conexões: configurações para %s"
-#: ../../include/conversation.php:453
-msgid "to"
-msgstr "para"
+#: ../../mod/connedit.php:425
+msgid ""
+"When receiving a channel introduction, any permissions provided here will be"
+" applied to the new connection automatically and the introduction approved. "
+"Leave this page if you do not wish to use this feature."
+msgstr "Ao receber uma apresentação de um canal, quaisquer permissões definidas aqui serão automaticamente aplicadas à nova conexão e a apresentação aprovada. Deixe esta página se você não quer usar este recurso."
-#: ../../include/conversation.php:454
-msgid "Wall-to-Wall"
-msgstr "Mural-para-mural"
+#: ../../mod/connedit.php:427
+msgid "Slide to adjust your degree of friendship"
+msgstr "Deslize para ajustar seu grau de amizade"
-#: ../../include/conversation.php:455
-msgid "via Wall-To-Wall:"
-msgstr "via Mural-para-mural"
+#: ../../mod/connedit.php:433
+msgid "inherited"
+msgstr "herdado"
-#: ../../include/conversation.php:593
-msgid "View status"
-msgstr "Ver status"
+#: ../../mod/connedit.php:435
+msgid "Connection has no individual permissions!"
+msgstr "A conexão não tem permissões individuais!"
-#: ../../include/conversation.php:594
-msgid "View profile"
-msgstr "Ver perfil"
+#: ../../mod/connedit.php:436
+msgid ""
+"This may be appropriate based on your privacy "
+"settings, though you may wish to review the \"Advanced Permissions\"."
+msgstr "Isso pode ser adequado baseado nas suas configurações de privacidade, mas talvez você queira rever suas \"Permissões Avançadas\"."
-#: ../../include/conversation.php:595
-msgid "View photos"
-msgstr "Ver fotos"
+#: ../../mod/connedit.php:438
+msgid "Profile Visibility"
+msgstr "Visibilidade do perfil"
-#: ../../include/conversation.php:596
-msgid "View recent"
-msgstr "Ver recentes"
-
-#: ../../include/conversation.php:598
-msgid "Send PM"
-msgstr "Enviar MP"
-
-#: ../../include/conversation.php:648
+#: ../../mod/connedit.php:439
#, php-format
-msgid "%s likes this."
-msgstr "%s gostou disso."
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
-#: ../../include/conversation.php:648
+#: ../../mod/connedit.php:440
+msgid "Contact Information / Notes"
+msgstr "Informações de contato / Notas"
+
+#: ../../mod/connedit.php:441
+msgid "Edit contact notes"
+msgstr "Editar anotações sobre o contato"
+
+#: ../../mod/connedit.php:443
+msgid "Their Settings"
+msgstr "Configurações dele/a"
+
+#: ../../mod/connedit.php:444
+msgid "My Settings"
+msgstr "Minhas configurações"
+
+#: ../../mod/connedit.php:446
+msgid "Forum Members"
+msgstr "Membros do fórum"
+
+#: ../../mod/connedit.php:447
+msgid "Soapbox"
+msgstr "Caixa de sabão"
+
+#: ../../mod/connedit.php:448
+msgid "Full Sharing (typical social network permissions)"
+msgstr "Compartilhamento completo (permissões típicas de redes sociais)"
+
+#: ../../mod/connedit.php:449
+msgid "Cautious Sharing "
+msgstr "Compartilhamento cauteloso"
+
+#: ../../mod/connedit.php:450
+msgid "Follow Only"
+msgstr "Apenas seguir"
+
+#: ../../mod/connedit.php:451
+msgid "Individual Permissions"
+msgstr "Permissões individuais"
+
+#: ../../mod/connedit.php:452
+msgid ""
+"Some permissions may be inherited from your channel privacy settings, which have higher priority than "
+"individual settings. Changing those inherited settings on this page will "
+"have no effect."
+msgstr "Algumas permissões serão herdadas das configurações de privacidade do seu canal, e terão prioridade sobre as configurações individuais. Modificar nesta página tais configurações herdadas não surtirá efeito algum."
+
+#: ../../mod/connedit.php:453
+msgid "Advanced Permissions"
+msgstr "Permissões avançadas"
+
+#: ../../mod/connedit.php:454
+msgid "Simple Permissions (select one and submit)"
+msgstr "Permissões simples (slecione uma e submeta)"
+
+#: ../../mod/connedit.php:458
#, php-format
-msgid "%s doesn't like this."
-msgstr "%s não gostou disso."
+msgid "Visit %s's profile - %s"
+msgstr "Ver o perfil de %s - %s"
-#: ../../include/conversation.php:652
-#, php-format
-msgid "%2$d people like this."
-msgstr "%2$d pessoas gostaram disso."
+#: ../../mod/connedit.php:459
+msgid "Block/Unblock contact"
+msgstr "Bloquear/desbloquear o contato"
-#: ../../include/conversation.php:654
-#, php-format
-msgid "%2$d people don't like this."
-msgstr "%2$d pessoas não gostaram disso."
+#: ../../mod/connedit.php:460
+msgid "Ignore contact"
+msgstr "Ignorar o contato"
-#: ../../include/conversation.php:660
-msgid "and"
-msgstr "e"
+#: ../../mod/connedit.php:461
+msgid "Repair URL settings"
+msgstr "Reparar configurações de URL"
-#: ../../include/conversation.php:663
-#, php-format
-msgid ", and %d other people"
-msgstr ", e mais %d outras pessoas"
+#: ../../mod/connedit.php:462
+msgid "View conversations"
+msgstr "Ver as conversas"
-#: ../../include/conversation.php:664
-#, php-format
-msgid "%s like this."
-msgstr "%s gostou disso."
+#: ../../mod/connedit.php:464
+msgid "Delete contact"
+msgstr "Excluir o contato"
-#: ../../include/conversation.php:664
-#, php-format
-msgid "%s don't like this."
-msgstr "%s não gostou disso."
+#: ../../mod/connedit.php:467
+msgid "Last update:"
+msgstr "Última atualização:"
-#: ../../include/conversation.php:683
-msgid "Visible to everybody"
-msgstr "Visível para todos"
+#: ../../mod/connedit.php:469
+msgid "Update public posts"
+msgstr "Atualizar publicações públicas"
-#: ../../include/conversation.php:685
-msgid "Please enter a YouTube link:"
-msgstr "Por favor, digite o link do YouTube:"
+#: ../../mod/connedit.php:471
+msgid "Update now"
+msgstr "Atualizar agora"
-#: ../../include/conversation.php:686
-msgid "Please enter a video(.ogg) link/URL:"
-msgstr "Por favor, digite o link/URL do vídeo (.ogg):"
+#: ../../mod/connedit.php:477
+msgid "Currently blocked"
+msgstr "Atualmente bloqueado"
-#: ../../include/conversation.php:687
-msgid "Please enter an audio(.ogg) link/URL:"
-msgstr "Por favor, digite o link/URL do áudio (.ogg):"
+#: ../../mod/connedit.php:478
+msgid "Currently ignored"
+msgstr "Atualmente ignorado"
-#: ../../include/conversation.php:688
-msgid "Where are you right now?"
-msgstr "Onde você está agora?"
+#: ../../mod/connedit.php:479
+msgid "Currently archived"
+msgstr "Atualmente arquivado"
-#: ../../include/conversation.php:689
-msgid "Enter a title for this item"
-msgstr "Digite um título para este item"
+#: ../../mod/connedit.php:480
+msgid "Currently pending"
+msgstr "Atualmente pendente"
-#: ../../include/conversation.php:740
-msgid "Set title"
-msgstr "Definir o título"
+#: ../../mod/connedit.php:481
+msgid "Hide this contact from others"
+msgstr "Esconda este contato dos demais"
-#: ../../boot.php:385
-msgid "Delete this item?"
-msgstr "Excluir este item?"
+#: ../../mod/connedit.php:481
+msgid ""
+"Replies/likes to your public posts may still be visible"
+msgstr "Respostas/reações às suas publicações públicas podem continuar visíveis."
-#: ../../boot.php:834
-msgid "Create a New Account"
-msgstr "Criar uma nova conta"
+#: ../../mod/layouts.php:45
+msgid "Layout Help"
+msgstr "Ajuda de layout"
-#: ../../boot.php:841
-msgid "Nickname or Email address: "
-msgstr "Identificação ou endereço de e-mail:"
+#: ../../mod/layouts.php:48
+msgid "Help with this feature"
+msgstr "Ajuda com este recurso"
-#: ../../boot.php:842
-msgid "Password: "
-msgstr "Senha:"
+#: ../../mod/layouts.php:69
+msgid "Layout Name"
+msgstr "Nome do layout"
-#: ../../boot.php:847
-msgid "Nickname/Email/OpenID: "
-msgstr "Identificação/E-mail/OpenID:"
+#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55
+msgid "Help:"
+msgstr "Ajuda:"
-#: ../../boot.php:848
-msgid "Password (if not OpenID): "
-msgstr "Senha (caso não use o OpenID):"
-
-#: ../../boot.php:851
-msgid "Forgot your password?"
-msgstr "Esqueceu a sua senha?"
-
-#: ../../boot.php:1113
-msgid "prev"
-msgstr "anterior"
-
-#: ../../boot.php:1115
-msgid "first"
-msgstr "primeiro"
-
-#: ../../boot.php:1144
-msgid "last"
-msgstr "último"
-
-#: ../../boot.php:1147
-msgid "next"
-msgstr "próximo"
-
-#: ../../boot.php:2046
-msgid "No contacts"
-msgstr "Nenhum contato"
-
-#: ../../boot.php:2054
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "Contato de %d"
-msgstr[1] "Contatos de %d"
-
-#: ../../boot.php:2329
-msgid "Connect"
-msgstr "Conectar"
-
-#: ../../boot.php:2344
-msgid "Location:"
-msgstr "Localização:"
-
-#: ../../boot.php:2348
-msgid ", "
-msgstr ", "
-
-#: ../../boot.php:2360
-msgid "Status:"
-msgstr "Estado:"
-
-#: ../../boot.php:2457
-msgid "Monday"
-msgstr "Segunda"
-
-#: ../../boot.php:2457
-msgid "Tuesday"
-msgstr "Terça"
-
-#: ../../boot.php:2457
-msgid "Wednesday"
-msgstr "Quarta"
-
-#: ../../boot.php:2457
-msgid "Thursday"
-msgstr "Quinta"
-
-#: ../../boot.php:2457
-msgid "Friday"
-msgstr "Sexta"
-
-#: ../../boot.php:2457
-msgid "Saturday"
-msgstr "Sábado"
-
-#: ../../boot.php:2457
-msgid "Sunday"
-msgstr "Domingo"
-
-#: ../../boot.php:2461
-msgid "January"
-msgstr "Janeiro"
-
-#: ../../boot.php:2461
-msgid "February"
-msgstr "Fevereiro"
-
-#: ../../boot.php:2461
-msgid "March"
-msgstr "Março"
-
-#: ../../boot.php:2461
-msgid "April"
-msgstr "Abril"
-
-#: ../../boot.php:2461
-msgid "May"
-msgstr "Maio"
-
-#: ../../boot.php:2461
-msgid "June"
-msgstr "Junho"
-
-#: ../../boot.php:2461
-msgid "July"
-msgstr "Julho"
-
-#: ../../boot.php:2461
-msgid "August"
-msgstr "Agosto"
-
-#: ../../boot.php:2461
-msgid "September"
-msgstr "Setembro"
-
-#: ../../boot.php:2461
-msgid "October"
-msgstr "Outubro"
-
-#: ../../boot.php:2461
-msgid "November"
-msgstr "Novembro"
-
-#: ../../boot.php:2461
-msgid "December"
-msgstr "Dezembro"
-
-#: ../../boot.php:2476
-msgid "g A l F d"
-msgstr "G l d F"
-
-#: ../../boot.php:2494
-msgid "Birthday Reminders"
-msgstr "Lembres de aniversário"
-
-#: ../../boot.php:2495
-msgid "Birthdays this week:"
-msgstr "Aniversários nesta semana:"
-
-#: ../../boot.php:2496
-msgid "(Adjusted for local time)"
-msgstr "(Ajustado para a hora local)"
-
-#: ../../boot.php:2507
-msgid "[today]"
-msgstr "[hoje]"
-
-#: ../../boot.php:2570
-msgid "bytes"
-msgstr "bytes"
-
-#: ../../boot.php:2744
-msgid "link to source"
-msgstr "exibir a origem"
-
-#: ../../index.php:199
+#: ../../mod/help.php:69 ../../index.php:223
msgid "Not Found"
msgstr "Não encontrada"
-#: ../../index.php:200
+#: ../../mod/help.php:72 ../../mod/page.php:83 ../../mod/display.php:100
+#: ../../index.php:226
msgid "Page not found."
msgstr "Página não encontrada."
+#: ../../mod/rmagic.php:38
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID."
+#: ../../mod/rmagic.php:38
+msgid "The error message was:"
+msgstr "A mensagem de erro foi:"
+
+#: ../../mod/rmagic.php:42
+msgid "Authentication failed."
+msgstr "A autenticação falhou."
+
+#: ../../mod/rmagic.php:78
+msgid "Remote Authentication"
+msgstr "Autenticação remota"
+
+#: ../../mod/rmagic.php:79
+msgid "Enter your channel address (e.g. channel@example.com)"
+msgstr "Entre o endereço do seu canal (e.g. canal@exemplo.com)"
+
+#: ../../mod/rmagic.php:80
+msgid "Authenticate"
+msgstr "Autenticar"
+
+#: ../../mod/page.php:35
+msgid "Invalid item."
+msgstr "Item inválido."
+
+#: ../../mod/network.php:79
+msgid "No such group"
+msgstr "Este grupo não existe"
+
+#: ../../mod/network.php:118
+msgid "Search Results For:"
+msgstr "Resultados da busca por:"
+
+#: ../../mod/network.php:172
+msgid "Collection is empty"
+msgstr "A coleção está vazia"
+
+#: ../../mod/network.php:180
+msgid "Collection: "
+msgstr "Coleção:"
+
+#: ../../mod/network.php:193
+msgid "Connection: "
+msgstr "Conexão:"
+
+#: ../../mod/network.php:196
+msgid "Invalid connection."
+msgstr "Conexão inválida."
+
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:138
+#: ../../mod/profiles.php:168 ../../mod/profiles.php:463
+msgid "Profile not found."
+msgstr "O perfil não foi encontrado."
+
+#: ../../mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "O perfil foi excluído."
+
+#: ../../mod/profiles.php:56 ../../mod/profiles.php:92
+msgid "Profile-"
+msgstr "Perfil-"
+
+#: ../../mod/profiles.php:77 ../../mod/profiles.php:120
+msgid "New profile created."
+msgstr "O novo perfil foi criado."
+
+#: ../../mod/profiles.php:98
+msgid "Profile unavailable to clone."
+msgstr "O perfil não está disponível para clonagem."
+
+#: ../../mod/profiles.php:178
+msgid "Profile Name is required."
+msgstr "É obrigatório informar o nome do perfil."
+
+#: ../../mod/profiles.php:294
+msgid "Marital Status"
+msgstr "Estado civil"
+
+#: ../../mod/profiles.php:298
+msgid "Romantic Partner"
+msgstr "Parceiro/a romântico/a"
+
+#: ../../mod/profiles.php:302
+msgid "Likes"
+msgstr "Gosta de"
+
+#: ../../mod/profiles.php:306
+msgid "Dislikes"
+msgstr "Não gosta de"
+
+#: ../../mod/profiles.php:310
+msgid "Work/Employment"
+msgstr "Trabalho/Emprego"
+
+#: ../../mod/profiles.php:313
+msgid "Religion"
+msgstr "Religião"
+
+#: ../../mod/profiles.php:317
+msgid "Political Views"
+msgstr "Posição política"
+
+#: ../../mod/profiles.php:321
+msgid "Gender"
+msgstr "Gênero"
+
+#: ../../mod/profiles.php:325
+msgid "Sexual Preference"
+msgstr "Preferência sexual"
+
+#: ../../mod/profiles.php:329
+msgid "Homepage"
+msgstr "Página web"
+
+#: ../../mod/profiles.php:333
+msgid "Interests"
+msgstr "Interesses"
+
+#: ../../mod/profiles.php:337
+msgid "Address"
+msgstr "Endereço"
+
+#: ../../mod/profiles.php:344 ../../mod/pubsites.php:31
+msgid "Location"
+msgstr "Localização"
+
+#: ../../mod/profiles.php:427
+msgid "Profile updated."
+msgstr "O perfil foi atualizado."
+
+#: ../../mod/profiles.php:482
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?"
+
+#: ../../mod/profiles.php:505
+msgid "Edit Profile Details"
+msgstr "Editar os detalhes do perfil"
+
+#: ../../mod/profiles.php:507
+msgid "View this profile"
+msgstr "Ver este perfil"
+
+#: ../../mod/profiles.php:508
+msgid "Change Profile Photo"
+msgstr "Mudar a foto do perfil"
+
+#: ../../mod/profiles.php:509
+msgid "Create a new profile using these settings"
+msgstr "Criar um novo perfil usando estas configurações"
+
+#: ../../mod/profiles.php:510
+msgid "Clone this profile"
+msgstr "Clonar este perfil"
+
+#: ../../mod/profiles.php:511
+msgid "Delete this profile"
+msgstr "Excluir este perfil"
+
+#: ../../mod/profiles.php:512
+msgid "Profile Name:"
+msgstr "Nome do perfil:"
+
+#: ../../mod/profiles.php:513
+msgid "Your Full Name:"
+msgstr "Seu nome completo:"
+
+#: ../../mod/profiles.php:514
+msgid "Title/Description:"
+msgstr "Título/Descrição:"
+
+#: ../../mod/profiles.php:515
+msgid "Your Gender:"
+msgstr "Seu gênero:"
+
+#: ../../mod/profiles.php:516
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Aniversário (%s):"
+
+#: ../../mod/profiles.php:517
+msgid "Street Address:"
+msgstr "Endereço:"
+
+#: ../../mod/profiles.php:518
+msgid "Locality/City:"
+msgstr "Localidade/Cidade:"
+
+#: ../../mod/profiles.php:519
+msgid "Postal/Zip Code:"
+msgstr "CEP:"
+
+#: ../../mod/profiles.php:520
+msgid "Country:"
+msgstr "País:"
+
+#: ../../mod/profiles.php:521
+msgid "Region/State:"
+msgstr "Região/Estado:"
+
+#: ../../mod/profiles.php:522
+msgid "♥ Marital Status:"
+msgstr "Estado civil ♥:"
+
+#: ../../mod/profiles.php:523
+msgid "Who: (if applicable)"
+msgstr "Quem: (se aplicável)"
+
+#: ../../mod/profiles.php:524
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
+
+#: ../../mod/profiles.php:525
+msgid "Since [date]:"
+msgstr "Desde [data]:"
+
+#: ../../mod/profiles.php:527
+msgid "Homepage URL:"
+msgstr "Endereço do website:"
+
+#: ../../mod/profiles.php:530
+msgid "Religious Views:"
+msgstr "Orientação religiosa:"
+
+#: ../../mod/profiles.php:531
+msgid "Keywords:"
+msgstr "Palavras-chave:"
+
+#: ../../mod/profiles.php:534
+msgid "Example: fishing photography software"
+msgstr "Exemplo: pesca fotografia software"
+
+#: ../../mod/profiles.php:535
+msgid "Used in directory listings"
+msgstr "Usado em listas de diretório"
+
+#: ../../mod/profiles.php:536
+msgid "Tell us about yourself..."
+msgstr "Fale um pouco sobre você..."
+
+#: ../../mod/profiles.php:537
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interesses"
+
+#: ../../mod/profiles.php:538
+msgid "Contact information and Social Networks"
+msgstr "Informações de contato e redes sociais"
+
+#: ../../mod/profiles.php:539
+msgid "My other channels"
+msgstr "Meus outros canais"
+
+#: ../../mod/profiles.php:540
+msgid "Musical interests"
+msgstr "Interesses musicais"
+
+#: ../../mod/profiles.php:541
+msgid "Books, literature"
+msgstr "Livros, literatura"
+
+#: ../../mod/profiles.php:542
+msgid "Television"
+msgstr "Televisão"
+
+#: ../../mod/profiles.php:543
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/dança/cultura/entretenimento"
+
+#: ../../mod/profiles.php:544
+msgid "Love/romance"
+msgstr "Amor/romance"
+
+#: ../../mod/profiles.php:545
+msgid "Work/employment"
+msgstr "Trabalho/emprego"
+
+#: ../../mod/profiles.php:546
+msgid "School/education"
+msgstr "Escola/educação"
+
+#: ../../mod/profiles.php:551
+msgid ""
+"This is your public profile. It may "
+"be visible to anybody using the internet."
+msgstr "Este é o seu perfil público. Ele pode estar visível para qualquer um que acesse a Internet."
+
+#: ../../mod/profiles.php:600
+msgid "Edit/Manage Profiles"
+msgstr "Editar/Administrar perfis"
+
+#: ../../mod/profiles.php:601
+msgid "Add profile things"
+msgstr "Adicionar coisas ao perfil"
+
+#: ../../mod/profiles.php:602
+msgid "Include desirable objects in your profile"
+msgstr "Inclua objetos desejáveis no seu perfil"
+
+#: ../../mod/follow.php:25
+msgid "Channel added."
+msgstr "Canal adicionado."
+
+#: ../../mod/post.php:226
+msgid ""
+"Remote authentication blocked. You are logged into this site locally. Please"
+" logout and retry."
+msgstr "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente."
+
+#: ../../mod/post.php:256 ../../mod/openid.php:71 ../../mod/openid.php:176
+#, php-format
+msgid "Welcome %s. Remote authentication successful."
+msgstr "Bem vindo %s. Autenticação remota realizada com sucesso."
+
+#: ../../mod/dirsearch.php:21
+msgid "This site is not a directory server"
+msgstr "Este site não é um servidor de diretório"
+
+#: ../../mod/sources.php:32
+msgid "Failed to create source. No channel selected."
+msgstr "Falha ao criar a fonte. Nenhum canal selecionado."
+
+#: ../../mod/sources.php:45
+msgid "Source created."
+msgstr "Fonte criada."
+
+#: ../../mod/sources.php:57
+msgid "Source updated."
+msgstr "A fonte foi atualizada."
+
+#: ../../mod/sources.php:82
+msgid "*"
+msgstr "*"
+
+#: ../../mod/sources.php:89
+msgid "Manage remote sources of content for your channel."
+msgstr "Administrar as fontes remotas de conteúdo para o seu canal."
+
+#: ../../mod/sources.php:90 ../../mod/sources.php:100
+msgid "New Source"
+msgstr "Nova fonte"
+
+#: ../../mod/sources.php:101 ../../mod/sources.php:133
+msgid ""
+"Import all or selected content from the following channel into this channel "
+"and distribute it according to your channel settings."
+msgstr "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal."
+
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Only import content with these words (one per line)"
+msgstr "Importar apenas conteúd com estas palavras (uma por linha)"
+
+#: ../../mod/sources.php:102 ../../mod/sources.php:134
+msgid "Leave blank to import all public content"
+msgstr "Deixe em branco para importar todo o conteúdo público"
+
+#: ../../mod/sources.php:103 ../../mod/sources.php:137
+#: ../../mod/new_channel.php:110
+msgid "Channel Name"
+msgstr "Nome do canal"
+
+#: ../../mod/sources.php:123 ../../mod/sources.php:150
+msgid "Source not found."
+msgstr "A fonte não foi encontrada."
+
+#: ../../mod/sources.php:130
+msgid "Edit Source"
+msgstr "Editar fonte"
+
+#: ../../mod/sources.php:131
+msgid "Delete Source"
+msgstr "Deletar fonte"
+
+#: ../../mod/sources.php:158
+msgid "Source removed"
+msgstr "A fonte foi removida."
+
+#: ../../mod/sources.php:160
+msgid "Unable to remove source."
+msgstr "Não foi possível remover a fonte."
+
+#: ../../mod/lockview.php:34
+msgid "Remote privacy information not available."
+msgstr "Não existe informação disponível sobre a privacidade remota."
+
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
+msgstr "Visível para:"
+
+#: ../../mod/magic.php:70
+msgid "Hub not found."
+msgstr "O hub não foi encontrado."
+
+#: ../../mod/setup.php:161
+msgid "Red Matrix Server - Setup"
+msgstr "Servidor Red Matrix - Configuração"
+
+#: ../../mod/setup.php:167
+msgid "Could not connect to database."
+msgstr "Não foi possível conectar ao banco de dados."
+
+#: ../../mod/setup.php:171
+msgid ""
+"Could not connect to specified site URL. Possible SSL certificate or DNS "
+"issue."
+msgstr "Não foi possível conectar à URL especificada para o site. Provavlmente um problema de DNS ou com o certificado SSL."
+
+#: ../../mod/setup.php:176
+msgid "Could not create table."
+msgstr "Não foi possível criar a tabela."
+
+#: ../../mod/setup.php:182
+msgid "Your site database has been installed."
+msgstr "O banco de dados do seu site foi instalado."
+
+#: ../../mod/setup.php:187
+msgid ""
+"You may need to import the file \"install/database.sql\" manually using "
+"phpmyadmin or mysql."
+msgstr "Pode ser que você precise importar o arquivo \"install/database.sql\" manualmente, usando o phpmyadmin or mysql."
+
+#: ../../mod/setup.php:188 ../../mod/setup.php:257 ../../mod/setup.php:609
+msgid "Please see the file \"install/INSTALL.txt\"."
+msgstr "Por favor, veja o arquivo \"install/INSTALL.txt\"."
+
+#: ../../mod/setup.php:254
+msgid "System check"
+msgstr "Checagem do sistema"
+
+#: ../../mod/setup.php:259
+msgid "Check again"
+msgstr "Cheque novamente"
+
+#: ../../mod/setup.php:281
+msgid "Database connection"
+msgstr "Conexão ao banco de dados"
+
+#: ../../mod/setup.php:282
+msgid ""
+"In order to install Red Matrix we need to know how to connect to your "
+"database."
+msgstr "Para instalar a Red Matrix é necessário saber como se conectar ao seu banco de dados."
+
+#: ../../mod/setup.php:283
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a isso."
+
+#: ../../mod/setup.php:284
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "O banco de dados que você especificar abaixo já deve existir. Caso contrário, crie-o antes de prosseguir."
+
+#: ../../mod/setup.php:288
+msgid "Database Server Name"
+msgstr "Nome do servidor de banco de dados"
+
+#: ../../mod/setup.php:288
+msgid "Default is localhost"
+msgstr "O default é localhost"
+
+#: ../../mod/setup.php:289
+msgid "Database Port"
+msgstr "Porta do banco de dados"
+
+#: ../../mod/setup.php:289
+msgid "Communication port number - use 0 for default"
+msgstr "Número da porta de comunicação - use 0 para o default"
+
+#: ../../mod/setup.php:290
+msgid "Database Login Name"
+msgstr "Nome do usuário do banco de dados"
+
+#: ../../mod/setup.php:291
+msgid "Database Login Password"
+msgstr "Senha do usuário do banco de dados"
+
+#: ../../mod/setup.php:292
+msgid "Database Name"
+msgstr "Nome do banco de dados"
+
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
+msgid "Site administrator email address"
+msgstr "Endereço de email do administrador do site"
+
+#: ../../mod/setup.php:294 ../../mod/setup.php:336
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
+
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Website URL"
+msgstr "URL do website"
+
+#: ../../mod/setup.php:295 ../../mod/setup.php:338
+msgid "Please use SSL (https) URL if available."
+msgstr "Por favor, use uma URL SSL (https) se disponível."
+
+#: ../../mod/setup.php:298 ../../mod/setup.php:341
+msgid "Please select a default timezone for your website"
+msgstr "Por favor, selecione o fuso horário padrão para o seu site"
+
+#: ../../mod/setup.php:325
+msgid "Site settings"
+msgstr "Configurações do site"
+
+#: ../../mod/setup.php:384
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
+
+#: ../../mod/setup.php:385
+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."
+msgstr "Caso você não tenha uma versão de linha de comando do PHP instalada no seu servidor, você não será capaz de executar coletas em segundo plano pelo cron."
+
+#: ../../mod/setup.php:389
+msgid "PHP executable path"
+msgstr "Caminho para o executável do PHP"
+
+#: ../../mod/setup.php:389
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
+
+#: ../../mod/setup.php:394
+msgid "Command line PHP"
+msgstr "PHP em linha de comando"
+
+#: ../../mod/setup.php:403
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
+
+#: ../../mod/setup.php:404
+msgid "This is required for message delivery to work."
+msgstr "Isto é necessário para o funcionamento do envio de mensagens."
+
+#: ../../mod/setup.php:406
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: ../../mod/setup.php:427
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
+
+#: ../../mod/setup.php:428
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
+
+#: ../../mod/setup.php:430
+msgid "Generate encryption keys"
+msgstr "Gerar chaves de criptografia"
+
+#: ../../mod/setup.php:437
+msgid "libCurl PHP module"
+msgstr "Módulo PHP libCurl"
+
+#: ../../mod/setup.php:438
+msgid "GD graphics PHP module"
+msgstr "Módulo PHP GD graphics"
+
+#: ../../mod/setup.php:439
+msgid "OpenSSL PHP module"
+msgstr "Módulo PHP OpenSSL"
+
+#: ../../mod/setup.php:440
+msgid "mysqli PHP module"
+msgstr "Módulo PHP mysqli"
+
+#: ../../mod/setup.php:441
+msgid "mb_string PHP module"
+msgstr "Módulo PHP mb_string "
+
+#: ../../mod/setup.php:442
+msgid "mcrypt PHP module"
+msgstr "Módulo PHP mcrypt"
+
+#: ../../mod/setup.php:447 ../../mod/setup.php:449
+msgid "Apache mod_rewrite module"
+msgstr "Módulo mod_rewrite do Apache"
+
+#: ../../mod/setup.php:447
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
+
+#: ../../mod/setup.php:453 ../../mod/setup.php:456
+msgid "proc_open"
+msgstr "proc_open"
+
+#: ../../mod/setup.php:453
+msgid ""
+"Error: proc_open is required but is either not installed or has been "
+"disabled in php.ini"
+msgstr "Erro: proc_open é necessário, mas não está instalado ou foi desabilitado no php.ini"
+
+#: ../../mod/setup.php:461
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
+
+#: ../../mod/setup.php:465
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
+
+#: ../../mod/setup.php:469
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
+
+#: ../../mod/setup.php:473
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
+
+#: ../../mod/setup.php:477
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erro: o módulo mb_string do PHP é necessário, mas não está instalado."
+
+#: ../../mod/setup.php:481
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Erro: o módulo mcrypt do PHP é necessário, mas não está instalado."
+
+#: ../../mod/setup.php:497
+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 "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
+
+#: ../../mod/setup.php:498
+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 "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
+
+#: ../../mod/setup.php:499
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Red top folder."
+msgstr "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome .htconfig.php, na pasta raiz do seu Red."
+
+#: ../../mod/setup.php:500
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"install/INSTALL.txt\" for instructions."
+msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"install/INSTALL.TXT\" para instruções."
+
+#: ../../mod/setup.php:503
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php tem permissão de escrita"
+
+#: ../../mod/setup.php:513
+msgid ""
+"Red uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Red usa o engine de template Smarty3 para renderizar suas telas. Smarty3 compila templates para PHP para acelerar a renderização."
+
+#: ../../mod/setup.php:514
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/tpl/smarty3/ under the Red top level "
+"folder."
+msgstr "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/tpl/smarty3/ dentro do diretório raiz da Red."
+
+#: ../../mod/setup.php:515 ../../mod/setup.php:533
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Por favor, certifique-se de que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
+
+#: ../../mod/setup.php:516
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/tpl/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita somente em view/tpl/smarty3/ e não aos arquivos de template (.tpl) que ele contém."
+
+#: ../../mod/setup.php:519
+msgid "view/tpl/smarty3 is writable"
+msgstr "view/tpl/smarty3 tem permissão de escrita"
+
+#: ../../mod/setup.php:532
+msgid ""
+"Red uses the store directory to save uploaded files. The web server needs to"
+" have write access to the store directory under the Red top level folder"
+msgstr "A Red usa o diretório store para salvar arquivos carregados. O servidor web necessita de permissão de escrita no diretório store dentro do diretório raiz da Red"
+
+#: ../../mod/setup.php:536
+msgid "store is writable"
+msgstr "store tem permissão de escrita"
+
+#: ../../mod/setup.php:551
+msgid "SSL certificate validation"
+msgstr "Validação do certificado SSL"
+
+#: ../../mod/setup.php:551
+msgid ""
+"SSL certificate cannot be validated. Fix certificate or disable https access"
+" to this site."
+msgstr "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site."
+
+#: ../../mod/setup.php:558
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor."
+
+#: ../../mod/setup.php:560
+msgid "Url rewrite is working"
+msgstr "A reescrita de URLs está funcionando"
+
+#: ../../mod/setup.php:570
+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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
+
+#: ../../mod/setup.php:594
+msgid "Errors encountered creating database tables."
+msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
+
+#: ../../mod/setup.php:607
+msgid "
What next
"
+msgstr "
Próximos passos
"
+
+#: ../../mod/setup.php:608
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o coletor."
+
+#: ../../mod/siteinfo.php:57
+#, php-format
+msgid "Version %s"
+msgstr "Versão %s"
+
+#: ../../mod/siteinfo.php:76
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugins/complementos/aplicações instalados:"
+
+#: ../../mod/siteinfo.php:89
+msgid "No installed plugins/addons/apps"
+msgstr "Nenhum plugin/complemento/aplicação instalado"
+
+#: ../../mod/siteinfo.php:93
+msgid "Project Donations"
+msgstr "Doações para o projeto"
+
+#: ../../mod/siteinfo.php:94
+msgid ""
+"
The Red Matrix is provided for you by volunteers working in their spare "
+"time. Your support will help us to build a better, freer, and privacy "
+"respecting web. Select the following option for a one-time donation of your "
+"choosing
"
+msgstr "
A Red Matrix é oferecida a você por voluntários trabalhando no seu tempo livre. Seu apoio irá nos ajudar a construir uma web melhor, mais livre e com respeito à privacidade. Selecione uma das opções abaixo para realizar uma única doação de sua escolha:
"
+
+#: ../../mod/siteinfo.php:95
+msgid "
or
"
+msgstr "
ou
"
+
+#: ../../mod/siteinfo.php:96
+msgid "Recurring Donation Options"
+msgstr "Opções para doações recorrentes"
+
+#: ../../mod/siteinfo.php:115
+msgid "Red"
+msgstr "Red"
+
+#: ../../mod/siteinfo.php:116
+msgid ""
+"This is a hub of the Red Matrix - a global cooperative network of "
+"decentralised privacy enhanced websites."
+msgstr "Este é um hub da Red Matrix - uma rede global cooperativa de websites descentralizados com privacidade aprimorada."
+
+#: ../../mod/siteinfo.php:119
+msgid "Running at web location"
+msgstr "Sendo executado no endereço web"
+
+#: ../../mod/siteinfo.php:120
+msgid ""
+"Please visit GetZot.com to learn more "
+"about the Red Matrix."
+msgstr "Para aprender mais sobre a Red Matrix, visite GetZot.com."
+
+#: ../../mod/siteinfo.php:121
+msgid "Bug reports and issues: please visit"
+msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
+
+#: ../../mod/siteinfo.php:124
+msgid ""
+"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
+"com"
+msgstr "Sugestões, elogios, etc - mande um e-mail para \"redmatrix\" arrôba librelist ponto com"
+
+#: ../../mod/siteinfo.php:126
+msgid "Site Administrators"
+msgstr "Administradores do site"
+
+#: ../../mod/new_channel.php:107
+msgid "Add a Channel"
+msgstr "Adicionar um canal"
+
+#: ../../mod/new_channel.php:108
+msgid ""
+"A channel is your own collection of related web pages. A channel can be used"
+" to hold social network profiles, blogs, conversation groups and forums, "
+"celebrity pages, and much more. You may create as many channels as your "
+"service provider allows."
+msgstr "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns, páginas de celebridades, e muito mais. Você pode criar tantos canais quanto seu provedor de serviço permita."
+
+#: ../../mod/new_channel.php:111
+msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "
+msgstr "Exemplos: \"Beto Salinas\", \"Elis e seus Cavalos\", \"Futebol\", \"Grupo de aviadores\""
+
+#: ../../mod/new_channel.php:112
+msgid "Choose a short nickname"
+msgstr "Escolha um apelido curto"
+
+#: ../../mod/new_channel.php:113
+msgid ""
+"Your nickname will be used to create an easily remembered channel address "
+"(like an email address) which you can share with others."
+msgstr "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros."
+
+#: ../../mod/new_channel.php:114
+msgid "Or import an existing channel from another location"
+msgstr "Ou importe um canal existente de outro local"
+
+#: ../../mod/lostpass.php:15
+msgid "No valid account found."
+msgstr "Não foi encontrada uma conta válida."
+
+#: ../../mod/lostpass.php:29
+msgid "Password reset request issued. Check your email."
+msgstr "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail."
+
+#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102
+#, php-format
+msgid "Site Member (%s)"
+msgstr "Membro do site (%s)"
+
+#: ../../mod/lostpass.php:40
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Foi feita uma solicitação de restauração de senha em %s"
+
+#: ../../mod/lostpass.php:63
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada."
+
+#: ../../mod/lostpass.php:85 ../../boot.php:1436
+msgid "Password Reset"
+msgstr "Reiniciar a senha"
+
+#: ../../mod/lostpass.php:86
+msgid "Your password has been reset as requested."
+msgstr "Sua senha foi restaurada, conforme solicitado."
+
+#: ../../mod/lostpass.php:87
+msgid "Your new password is"
+msgstr "Sua nova senha é"
+
+#: ../../mod/lostpass.php:88
+msgid "Save or copy your new password - and then"
+msgstr "Salve ou copie a sua nova senha e, então"
+
+#: ../../mod/lostpass.php:89
+msgid "click here to login"
+msgstr "clique aqui para entrar"
+
+#: ../../mod/lostpass.php:90
+msgid ""
+"Your password may be changed from the Settings page after "
+"successful login."
+msgstr "Sua senha pode ser alterada na página de Configurações após você entrar em sua conta."
+
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has changed at %s"
+msgstr "Sua senha foi modificada em %s"
+
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Esqueceu a sua senha?"
+
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções."
+
+#: ../../mod/lostpass.php:124
+msgid "Email Address"
+msgstr "Endereço de e-mail"
+
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Restaurar"
+
+#: ../../mod/rbmark.php:88
+msgid "Select a bookmark folder"
+msgstr "Escolha uma pasta de links onde guardar"
+
+#: ../../mod/rbmark.php:93
+msgid "Save Bookmark"
+msgstr "Guardar link"
+
+#: ../../mod/rbmark.php:94
+msgid "URL of bookmark"
+msgstr "URL do link guardado"
+
+#: ../../mod/rbmark.php:95
+msgid "Description"
+msgstr "Descrição"
+
+#: ../../mod/rbmark.php:99
+msgid "Or enter new bookmark folder name"
+msgstr "Ou digite o nome para uma nova pasta de links"
+
+#: ../../mod/import.php:36
+msgid "Nothing to import."
+msgstr "Nada a importar."
+
+#: ../../mod/import.php:58
+msgid "Unable to download data from old server"
+msgstr "Não foi possível descarregar os dados do servidor antigo"
+
+#: ../../mod/import.php:64
+msgid "Imported file is empty."
+msgstr "O arquivo importado está vazio."
+
+#: ../../mod/import.php:88
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr "Não foi possível criar um identificador de canal duplicado neste sistema. A importação falhou."
+
+#: ../../mod/import.php:106
+msgid "Channel clone failed. Import failed."
+msgstr "Clonagem do canal falhou. A importação falhou."
+
+#: ../../mod/import.php:116
+msgid "Cloned channel not found. Import failed."
+msgstr "Canal a clonar não encontrado. A importação falhou."
+
+#: ../../mod/import.php:358
+msgid "Import completed."
+msgstr "A importação foi completada."
+
+#: ../../mod/import.php:371
+msgid "You must be logged in to use this feature."
+msgstr "Você precisa estar autenticado para usar este recurso."
+
+#: ../../mod/import.php:376
+msgid "Import Channel"
+msgstr "Importar canal"
+
+#: ../../mod/import.php:377
+msgid ""
+"Use this form to import an existing channel from a different server/hub. You"
+" may retrieve the channel identity from the old server/hub via the network "
+"or provide an export file. Only identity and connections/relationships will "
+"be imported. Importation of content is not yet available."
+msgstr "Use este formulário para importar um canal existente de um servidor/hub diferente. Você pode obter a identidade do canal do servidor/hub antigo pela rede, ou fornecer um arquivo de exportação. Somente a identidade e as conexões/relacionamentos serão importados. Importação de conteúdos ainda não está disponível."
+
+#: ../../mod/import.php:378
+msgid "File to Upload"
+msgstr "Arquivo a carregar"
+
+#: ../../mod/import.php:379
+msgid "Or provide the old server/hub details"
+msgstr "Ou forneça os detalhes do antigo servidor/hub"
+
+#: ../../mod/import.php:380
+msgid "Your old identity address (xyz@example.com)"
+msgstr "O endereço da sua velha identidade (xyz@exemplo.com)"
+
+#: ../../mod/import.php:381
+msgid "Your old login email address"
+msgstr "O endereço de e-mail da sua antiga conta"
+
+#: ../../mod/import.php:382
+msgid "Your old login password"
+msgstr "A senha dua sua antiga conta"
+
+#: ../../mod/import.php:383
+msgid ""
+"For either option, please choose whether to make this hub your new primary "
+"address, or whether your old location should continue this role. You will be"
+" able to post from either location, but only one can be marked as the "
+"primary location for files, photos, and media."
+msgstr "Para qualquer das opções, por favor escolha se deseja fazer deste hub seu novo endereço primário, ou se o velho local deve continuar com esse papel. Você será capaz de publicar a partir de ambos os locais, mas somente um pode estar designado como local primário para arquivos, fotos e mídia."
+
+#: ../../mod/import.php:384
+msgid "Make this hub my primary location"
+msgstr "Faça deste hub meu local primário"
+
+#: ../../mod/manage.php:64
+#, php-format
+msgid "You have created %1$.0f of %2$.0f allowed channels."
+msgstr "Você criou %1$.0f de %2$.0f canais permitidos."
+
+#: ../../mod/manage.php:72
+msgid "Create a new channel"
+msgstr "Criar um novo canal"
+
+#: ../../mod/manage.php:77
+msgid "Channel Manager"
+msgstr "Administrador do canal"
+
+#: ../../mod/manage.php:78
+msgid "Current Channel"
+msgstr "Canal atual"
+
+#: ../../mod/manage.php:80
+msgid "Attach to one of your channels by selecting it."
+msgstr "Selecione um dos seus canais para utilizá-lo."
+
+#: ../../mod/manage.php:81
+msgid "Default Channel"
+msgstr "Canal padrão"
+
+#: ../../mod/manage.php:82
+msgid "Make Default"
+msgstr "Tornar padrão"
+
+#: ../../mod/vote.php:97
+msgid "Total votes"
+msgstr "Votos totais"
+
+#: ../../mod/vote.php:98
+msgid "Average Rating"
+msgstr "Média das avaliações"
+
+#: ../../mod/match.php:16
+msgid "Profile Match"
+msgstr "Correspondência de perfil"
+
+#: ../../mod/match.php:24
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Nenhuma palavra-chave para combinar. Por favor, adicione palavras-chave ao seu perfil padrão."
+
+#: ../../mod/match.php:61
+msgid "is interested in:"
+msgstr "se interessa por:"
+
+#: ../../mod/match.php:69
+msgid "No matches"
+msgstr "Nenhuma correspondência"
+
+#: ../../mod/zfinger.php:23
+msgid "invalid target signature"
+msgstr "assinatura do destino inválida"
+
+#: ../../mod/chatsvc.php:102
+msgid "Away"
+msgstr "Ausente"
+
+#: ../../mod/chatsvc.php:106
+msgid "Online"
+msgstr "Online"
+
+#: ../../mod/mail.php:33
+msgid "Unable to lookup recipient."
+msgstr "Não foi possível encontrar o destinatário."
+
+#: ../../mod/mail.php:41
+msgid "Unable to communicate with requested channel."
+msgstr "Não foi possível comunicar com o canal solicitado."
+
+#: ../../mod/mail.php:48
+msgid "Cannot verify requested channel."
+msgstr "Não foi possível verificar o canal requisitado."
+
+#: ../../mod/mail.php:74
+msgid "Selected channel has private message restrictions. Send failed."
+msgstr "O canal solicitado tem restrições a mensagens privadas. Falha no envio."
+
+#: ../../mod/mail.php:121 ../../mod/message.php:31
+msgid "Messages"
+msgstr "Mensagens"
+
+#: ../../mod/mail.php:132
+msgid "Message deleted."
+msgstr "A mensagem foi excluída."
+
+#: ../../mod/mail.php:149
+msgid "Message recalled."
+msgstr "Mensagem retirada."
+
+#: ../../mod/mail.php:206
+msgid "Send Private Message"
+msgstr "Enviar mensagem privada"
+
+#: ../../mod/mail.php:207 ../../mod/mail.php:323
+msgid "To:"
+msgstr "Para:"
+
+#: ../../mod/mail.php:212 ../../mod/mail.php:325
+msgid "Subject:"
+msgstr "Assunto:"
+
+#: ../../mod/mail.php:249
+msgid "Message not found."
+msgstr "Mensagem não encontrada."
+
+#: ../../mod/mail.php:292 ../../mod/message.php:72
+msgid "Delete message"
+msgstr "Excluir a mensagem"
+
+#: ../../mod/mail.php:293
+msgid "Recall message"
+msgstr "Retirar mensagem"
+
+#: ../../mod/mail.php:295
+msgid "Message has been recalled."
+msgstr "A mensagem foi retirada."
+
+#: ../../mod/mail.php:312
+msgid "Private Conversation"
+msgstr "Conversa privada"
+
+#: ../../mod/mail.php:316
+msgid "Delete conversation"
+msgstr "Excluir conversa"
+
+#: ../../mod/mail.php:318
+msgid ""
+"No secure communications available. You may be able to "
+"respond from the sender's profile page."
+msgstr "Comunicação segura indisponível. Você talvez consiga responder pela página de perfil do remetente."
+
+#: ../../mod/mail.php:322
+msgid "Send Reply"
+msgstr "Enviar resposta"
+
+#: ../../mod/openid.php:26
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erro do protocolo OpenID. Nenhuma ID retornada."
+
+#: ../../mod/editlayout.php:72
+msgid "Edit Layout"
+msgstr "Editar layout"
+
+#: ../../mod/editlayout.php:82
+msgid "Delete layout?"
+msgstr "Deletar layout?"
+
+#: ../../mod/editlayout.php:147
+msgid "Delete Layout"
+msgstr "Deletar layout"
+
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "A imagem foi enviada, mas não foi possível cortá-la."
+
+#: ../../mod/profile_photo.php:97
+msgid "Image resize failed."
+msgstr "Falha ao modificar o tamanho da imagem."
+
+#: ../../mod/profile_photo.php:141
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Se a nova foto não aparecer imediatamente, recarregue a página segurando a tecla \"shift\" ou limpe o cache do navegador, "
+
+#: ../../mod/profile_photo.php:163
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "A imagem excede o limite de tamanho de %d"
+
+#: ../../mod/profile_photo.php:172
+msgid "Unable to process image."
+msgstr "Não foi possível processar a imagem."
+
+#: ../../mod/profile_photo.php:214 ../../mod/profile_photo.php:262
+msgid "Photo not available."
+msgstr "A foto não está disponível."
+
+#: ../../mod/profile_photo.php:281
+msgid "Upload File:"
+msgstr "Enviar arquivo:"
+
+#: ../../mod/profile_photo.php:282
+msgid "Select a profile:"
+msgstr "Selecione um perfil:"
+
+#: ../../mod/profile_photo.php:283
+msgid "Upload Profile Photo"
+msgstr "Enviar foto do perfil"
+
+#: ../../mod/profile_photo.php:284
+msgid "Upload"
+msgstr "Enviar"
+
+#: ../../mod/profile_photo.php:288
+msgid "skip this step"
+msgstr "pule esta etapa"
+
+#: ../../mod/profile_photo.php:288
+msgid "select a photo from your photo albums"
+msgstr "selecione uma foto do seu álbum de fotos"
+
+#: ../../mod/profile_photo.php:302
+msgid "Crop Image"
+msgstr "Cortar a imagem"
+
+#: ../../mod/profile_photo.php:303
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
+
+#: ../../mod/profile_photo.php:305
+msgid "Done Editing"
+msgstr "Encerrar a edição"
+
+#: ../../mod/profile_photo.php:340
+msgid "Image uploaded successfully."
+msgstr "A imagem foi enviada com sucesso."
+
+#: ../../mod/profile_photo.php:342
+msgid "Image upload failed."
+msgstr "Não foi possível enviar a imagem."
+
+#: ../../mod/profile_photo.php:351
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Não foi possível reduzir o tamanho da imagem [%s]."
+
+#: ../../mod/connections.php:191 ../../mod/connections.php:263
+msgid "Blocked"
+msgstr "Bloqueado"
+
+#: ../../mod/connections.php:196 ../../mod/connections.php:270
+msgid "Ignored"
+msgstr "Ignorado"
+
+#: ../../mod/connections.php:201 ../../mod/connections.php:284
+msgid "Hidden"
+msgstr "Oculto"
+
+#: ../../mod/connections.php:206 ../../mod/connections.php:277
+msgid "Archived"
+msgstr "Arquivado"
+
+#: ../../mod/connections.php:217
+msgid "All"
+msgstr "Todos"
+
+#: ../../mod/connections.php:241
+msgid "Suggest new connections"
+msgstr "Sugerir novas conexões"
+
+#: ../../mod/connections.php:247
+msgid "Show pending (new) connections"
+msgstr "Exibir conexões pendentes (novas)"
+
+#: ../../mod/connections.php:253
+msgid "Show all connections"
+msgstr "Exibir todas as conexões"
+
+#: ../../mod/connections.php:256
+msgid "Unblocked"
+msgstr "Não bloqueado"
+
+#: ../../mod/connections.php:259
+msgid "Only show unblocked connections"
+msgstr "Exibir apenas conexões não bloqueadas"
+
+#: ../../mod/connections.php:266
+msgid "Only show blocked connections"
+msgstr "Exibir apenas conexões bloqueadas"
+
+#: ../../mod/connections.php:273
+msgid "Only show ignored connections"
+msgstr "Exibir apenas conexões ignoradas"
+
+#: ../../mod/connections.php:280
+msgid "Only show archived connections"
+msgstr "Exibir apenas conexões arquivadas"
+
+#: ../../mod/connections.php:287
+msgid "Only show hidden connections"
+msgstr "Exibir apenas conexões ocultas"
+
+#: ../../mod/connections.php:331
+#, php-format
+msgid "%1$s [%2$s]"
+msgstr "%1$s [%2$s]"
+
+#: ../../mod/connections.php:332
+msgid "Edit contact"
+msgstr "Editar o contato"
+
+#: ../../mod/connections.php:355
+msgid "Search your connections"
+msgstr "Pesquisar em suas conexões"
+
+#: ../../mod/connections.php:356
+msgid "Finding: "
+msgstr "Pesquisando: "
+
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identificador de solicitação inválido"
+
+#: ../../mod/notifications.php:35
+msgid "Discard"
+msgstr "Descartar"
+
+#: ../../mod/notifications.php:93 ../../mod/notify.php:54
+msgid "No more system notifications."
+msgstr "Sem novas notificações do sistema."
+
+#: ../../mod/notifications.php:97 ../../mod/notify.php:58
+msgid "System Notifications"
+msgstr "Notificações do sistema"
+
+#: ../../mod/blocks.php:65
+msgid "Block Name"
+msgstr "Nome do bloco"
+
+#: ../../mod/oexchange.php:23
+msgid "Unable to find your hub."
+msgstr "Não foi possível localizar seu hub."
+
+#: ../../mod/oexchange.php:37
+msgid "Post successful."
+msgstr "Publicado com sucesso."
+
+#: ../../mod/editwebpage.php:106
+msgid "Edit Webpage"
+msgstr "Editar página web"
+
+#: ../../mod/editwebpage.php:116
+msgid "Delete webpage?"
+msgstr "Deletar página web?"
+
+#: ../../mod/editwebpage.php:189
+msgid "Delete Webpage"
+msgstr "Deletar página web"
+
+#: ../../mod/profile.php:64 ../../mod/profile.php:72
+msgid "Access to this profile has been restricted."
+msgstr "O acesso a este perfil está restrito."
+
+#: ../../mod/poke.php:159
+msgid "Poke/Prod"
+msgstr "Cutucar/Espetar"
+
+#: ../../mod/poke.php:160
+msgid "poke, prod or do other things to somebody"
+msgstr "Cutucar, espetar ou fazer outras coisas a alguém"
+
+#: ../../mod/poke.php:161
+msgid "Recipient"
+msgstr "Destinatário"
+
+#: ../../mod/poke.php:162
+msgid "Choose what you wish to do to recipient"
+msgstr "Escolha o que você deseja fazer com seu alvo"
+
+#: ../../mod/poke.php:165
+msgid "Make this post private"
+msgstr "Torne esta publicação privada"
+
+#: ../../mod/channel.php:85
+msgid "Insufficient permissions. Request redirected to profile page."
+msgstr "Permissões insuficientes. Requisição redirecionada para a página de perfil."
+
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Não disponível."
+
+#: ../../mod/community.php:32
+msgid "Community"
+msgstr "Comunidade"
+
+#: ../../mod/community.php:63 ../../mod/community.php:88
+msgid "No results."
+msgstr "Nenhum resultado."
+
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "O contato não foi encontrado."
+
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Sugestão de amizade enviada."
+
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Sugerir amigos"
+
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Sugerir um amigo para %s"
+
+#: ../../mod/editblock.php:86
+msgid "Edit Block"
+msgstr "Editar bloco"
+
+#: ../../mod/editblock.php:96
+msgid "Delete block?"
+msgstr "Deletar bloco?"
+
+#: ../../mod/editblock.php:163
+msgid "Delete Block"
+msgstr "Deletar bloco"
+
+#: ../../mod/dirprofile.php:114
+msgid "Status: "
+msgstr "Status:"
+
+#: ../../mod/dirprofile.php:115
+msgid "Sexual Preference: "
+msgstr "Preferência sexual:"
+
+#: ../../mod/dirprofile.php:117
+msgid "Homepage: "
+msgstr "Website:"
+
+#: ../../mod/dirprofile.php:118
+msgid "Hometown: "
+msgstr "Cidade natal:"
+
+#: ../../mod/dirprofile.php:120
+msgid "About: "
+msgstr "Sobre:"
+
+#: ../../mod/dirprofile.php:168
+msgid "Keywords: "
+msgstr "Palavras-chave:"
+
+#: ../../mod/filestorage.php:68
+msgid "Permission Denied."
+msgstr "Permissão negada."
+
+#: ../../mod/filestorage.php:85
+msgid "File not found."
+msgstr "O arquivo não foi encontrado."
+
+#: ../../mod/filestorage.php:119
+msgid "Edit file permissions"
+msgstr "Editar permissões do arquivo"
+
+#: ../../mod/filestorage.php:124 ../../mod/photos.php:607
+#: ../../mod/photos.php:950
+msgid "Permissions"
+msgstr "Permissões"
+
+#: ../../mod/filestorage.php:126
+msgid "Include all files and sub folders"
+msgstr "Incluir todos os arquivos e subpastas"
+
+#: ../../mod/filestorage.php:127
+msgid "Return to file list"
+msgstr "Retornar à lista de arquivos"
+
+#: ../../mod/filestorage.php:129
+msgid "Copy/paste this code to attach file to a post"
+msgstr "Copiar/colar este código para anexar um arquivo a uma publicação"
+
+#: ../../mod/filestorage.php:130
+msgid "Copy/paste this URL to link file from a web page"
+msgstr "Copiar/colar este URL para linkar para o arquivo em uma página web"
+
+#: ../../mod/filestorage.php:167
+msgid "Download"
+msgstr "Baixar"
+
+#: ../../mod/filestorage.php:173
+msgid "Used: "
+msgstr "Utilizado:"
+
+#: ../../mod/filestorage.php:174
+msgid "[directory]"
+msgstr "[diretório]"
+
+#: ../../mod/filestorage.php:176
+msgid "Limit: "
+msgstr "Limite:"
+
+#: ../../mod/suggest.php:35
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Nenhuma sugestão disponível. Se este site é novo, por favor tente novamente em 24 horas."
+
+#: ../../mod/message.php:41
+msgid "Conversation removed."
+msgstr "A conversa foi removida."
+
+#: ../../mod/message.php:56
+msgid "No messages."
+msgstr "Nenhuma mensagem."
+
+#: ../../mod/message.php:74
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
+
+#: ../../mod/pubsites.php:22
+msgid "Public Sites"
+msgstr "Sites públicos"
+
+#: ../../mod/pubsites.php:25
+msgid ""
+"The listed sites allow public registration into the Red Matrix. All sites in"
+" the matrix are interlinked so membership on any of them conveys membership "
+"in the matrix as a whole. Some sites may require subscription or provide "
+"tiered service plans. The provider links may provide "
+"additional details."
+msgstr "Os sites listados permitem ao público geral registrar contas na Red Matrix. Todos os sites na matrix são interligados, portanto ser membro em qualquer um deles te torna membro na matrix como um todo. Alguns sites podem solicitar uma assinatura ou prover planos em níveis. Os links para cada provedor podem fornecer mais detalhes."
+
+#: ../../mod/pubsites.php:31
+msgid "Site URL"
+msgstr "URL do site"
+
+#: ../../mod/pubsites.php:31
+msgid "Access Type"
+msgstr "Tipo de acesso"
+
+#: ../../mod/pubsites.php:31
+msgid "Registration Policy"
+msgstr "Política de registro"
+
+#: ../../mod/register.php:43
+msgid "Maximum daily site registrations exceeded. Please try again tomorrow."
+msgstr "Número máximo de novos registros neste site excedido por hoje. Por favor, tente novamente amanhã."
+
+#: ../../mod/register.php:49
+msgid ""
+"Please indicate acceptance of the Terms of Service. Registration failed."
+msgstr "Por favor, indique a aceitação dos Termos de Serviço. Falha ao registrar."
+
+#: ../../mod/register.php:77
+msgid "Passwords do not match."
+msgstr "Senhas não conferem."
+
+#: ../../mod/register.php:105
+msgid ""
+"Registration successful. Please check your email for validation "
+"instructions."
+msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para confirmar o registro."
+
+#: ../../mod/register.php:111
+msgid "Your registration is pending approval by the site owner."
+msgstr "A aprovação do seu registro está pendente junto ao administrador do site."
+
+#: ../../mod/register.php:114
+msgid "Your registration can not be processed."
+msgstr "Não foi possível processar o seu registro."
+
+#: ../../mod/register.php:147
+msgid "Registration on this site/hub is by approval only."
+msgstr "O registro neste site/hub requer aprovação."
+
+#: ../../mod/register.php:148
+msgid "Register at another affiliated site/hub"
+msgstr "Registre em um outro site/hub afiliado"
+
+#: ../../mod/register.php:156
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Este site excedeu o número máximo de registros de novas contas. Por favor, tente novamente amanhã."
+
+#: ../../mod/register.php:167
+msgid "Terms of Service"
+msgstr "Termos de Serviço"
+
+#: ../../mod/register.php:173
+#, php-format
+msgid "I accept the %s for this website"
+msgstr "Eu aceito os %s deste website."
+
+#: ../../mod/register.php:175
+#, php-format
+msgid "I am over 13 years of age and accept the %s for this website"
+msgstr "Eu sou maior de 13 anos e aceito os %s deste website"
+
+#: ../../mod/register.php:194
+msgid "Membership on this site is by invitation only."
+msgstr "Novas contas neste site se dão apenas por convite."
+
+#: ../../mod/register.php:195
+msgid "Please enter your invitation code"
+msgstr "Por favor, digite o código do seu convite"
+
+#: ../../mod/register.php:198
+msgid "Your email address"
+msgstr "Seu endereço de e-mail"
+
+#: ../../mod/register.php:199
+msgid "Choose a password"
+msgstr "Escolha uma senha"
+
+#: ../../mod/register.php:200
+msgid "Please re-enter your password"
+msgstr "Por favor, digite sua senha novamente"
+
+#: ../../mod/regmod.php:12
+msgid "Please login."
+msgstr "Por favor, autentique-se."
+
+#: ../../mod/removeme.php:49
+msgid "Remove This Channel"
+msgstr "Remover este canal"
+
+#: ../../mod/removeme.php:50
+msgid ""
+"This will completely remove this channel from the network. Once this has "
+"been done it is not recoverable."
+msgstr "Isso irá remover completamente este canal da rede. Uma vez que seja feito não será possível recuperá-lo."
+
+#: ../../mod/removeme.php:51
+msgid "Please enter your password for verification:"
+msgstr "Por favor, digite a sua senha para verificação:"
+
+#: ../../mod/removeme.php:52
+msgid "Remove this channel and all its clones from the network"
+msgstr "Remover este canal e todos os seus clones da rede"
+
+#: ../../mod/removeme.php:52
+msgid ""
+"By default only the instance of the channel located on this hub will be "
+"removed from the network"
+msgstr "Por padrão, apenas a instância do canal localizada neste hub será removida da rede"
+
+#: ../../mod/removeme.php:53
+msgid "Remove Channel"
+msgstr "Remover canal"
+
+#: ../../mod/photos.php:77
+msgid "Page owner information could not be retrieved."
+msgstr "As informações do dono da pagina não puderam ser obtidas."
+
+#: ../../mod/photos.php:97
+msgid "Album not found."
+msgstr "O álbum não foi encontrado."
+
+#: ../../mod/photos.php:119 ../../mod/photos.php:672
+msgid "Delete Album"
+msgstr "Excluir o álbum"
+
+#: ../../mod/photos.php:159 ../../mod/photos.php:955
+msgid "Delete Photo"
+msgstr "Excluir a foto"
+
+#: ../../mod/photos.php:453
+msgid "No photos selected"
+msgstr "Não foi selecionada nenhuma foto"
+
+#: ../../mod/photos.php:500
+msgid "Access to this item is restricted."
+msgstr "O acesso a este item está restrito."
+
+#: ../../mod/photos.php:577
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Você usou %1$.2f Mbytes de %2$.2f Mbytes de armazenamento de fotos."
+
+#: ../../mod/photos.php:580
+#, php-format
+msgid "You have used %1$.2f Mbytes of photo storage."
+msgstr "Você usou %1$.2f Mbytes de armazenamento de fotos."
+
+#: ../../mod/photos.php:599
+msgid "Upload Photos"
+msgstr "Enviar fotos"
+
+#: ../../mod/photos.php:603 ../../mod/photos.php:667
+msgid "New album name: "
+msgstr "Novo nome de álbum: "
+
+#: ../../mod/photos.php:604
+msgid "or existing album name: "
+msgstr "ou nome de um álbum já existente: "
+
+#: ../../mod/photos.php:605
+msgid "Do not show a status post for this upload"
+msgstr "Não exibir uma publicação de status para este carregamento"
+
+#: ../../mod/photos.php:656 ../../mod/photos.php:678 ../../mod/photos.php:1127
+#: ../../mod/photos.php:1142
+msgid "Contact Photos"
+msgstr "Fotos dos contatos"
+
+#: ../../mod/photos.php:682
+msgid "Edit Album"
+msgstr "Editar o álbum"
+
+#: ../../mod/photos.php:688
+msgid "Show Newest First"
+msgstr "Exibir primeiro os mais recentes"
+
+#: ../../mod/photos.php:690
+msgid "Show Oldest First"
+msgstr "Exibir primeiro os mais antigos"
+
+#: ../../mod/photos.php:733 ../../mod/photos.php:1174
+msgid "View Photo"
+msgstr "Ver a foto"
+
+#: ../../mod/photos.php:779
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permissão negada. Acesso a este item pode estar restrito."
+
+#: ../../mod/photos.php:781
+msgid "Photo not available"
+msgstr "A foto não está disponível"
+
+#: ../../mod/photos.php:841
+msgid "Use as profile photo"
+msgstr "Usar como uma foto de perfil"
+
+#: ../../mod/photos.php:865
+msgid "View Full Size"
+msgstr "Ver no tamanho real"
+
+#: ../../mod/photos.php:939
+msgid "Edit photo"
+msgstr "Editar a foto"
+
+#: ../../mod/photos.php:941
+msgid "Rotate CW (right)"
+msgstr "Rotacionar H (horário)"
+
+#: ../../mod/photos.php:942
+msgid "Rotate CCW (left)"
+msgstr "Rotacionar AH (anti-horário)"
+
+#: ../../mod/photos.php:944
+msgid "New album name"
+msgstr "Novo nome para o álbum"
+
+#: ../../mod/photos.php:947
+msgid "Caption"
+msgstr "Legenda"
+
+#: ../../mod/photos.php:949
+msgid "Add a Tag"
+msgstr "Adicionar uma etiqueta"
+
+#: ../../mod/photos.php:952
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
+
+#: ../../mod/photos.php:1105
+msgid "In This Photo:"
+msgstr "Nesta foto:"
+
+#: ../../mod/photos.php:1180
+msgid "View Album"
+msgstr "Ver álbum"
+
+#: ../../mod/photos.php:1189
+msgid "Recent Photos"
+msgstr "Fotos recentes"
+
+#: ../../mod/mood.php:138
+msgid "Mood"
+msgstr "Humor"
+
+#: ../../mod/mood.php:139
+msgid "Set your current mood and tell your friends"
+msgstr "Marque seu humor atual e compartilhe com seus amigos"
+
+#: ../../mod/ping.php:192
+msgid "sent you a private message"
+msgstr "lhe enviou uma mensagem privada"
+
+#: ../../mod/ping.php:250
+msgid "added your channel"
+msgstr "adicionou seu canal"
+
+#: ../../mod/ping.php:294
+msgid "posted an event"
+msgstr "publicou um evento"
+
+#: ../../view/theme/redbasic/php/config.php:78
+msgid "Scheme Default"
+msgstr "Padrão do esquema"
+
+#: ../../view/theme/redbasic/php/config.php:89
+msgid "silver"
+msgstr "prata"
+
+#: ../../view/theme/redbasic/php/config.php:100
+#: ../../view/theme/apw/php/config.php:250
+#: ../../view/theme/blogga/view/theme/blog/config.php:69
+#: ../../view/theme/blogga/php/config.php:69
+msgid "Theme settings"
+msgstr "Configurações de tema"
+
+#: ../../view/theme/redbasic/php/config.php:101
+#: ../../view/theme/apw/php/config.php:251
+msgid "Set scheme"
+msgstr "Definir esquema"
+
+#: ../../view/theme/redbasic/php/config.php:102
+msgid "Narrow navbar"
+msgstr "Barra de navegação estreita"
+
+#: ../../view/theme/redbasic/php/config.php:103
+msgid "Navigation bar colour"
+msgstr "Cor da barra de navegação"
+
+#: ../../view/theme/redbasic/php/config.php:104
+msgid "link colour"
+msgstr "cor dos links"
+
+#: ../../view/theme/redbasic/php/config.php:105
+msgid "Set font-colour for banner"
+msgstr "Definir a cor da fonte para o cartaz"
+
+#: ../../view/theme/redbasic/php/config.php:106
+msgid "Set the background colour"
+msgstr "Definir a cor do pano de fundo"
+
+#: ../../view/theme/redbasic/php/config.php:107
+msgid "Set the background image"
+msgstr "Definir a imagem do pano de fundo"
+
+#: ../../view/theme/redbasic/php/config.php:108
+msgid "Set the background colour of items"
+msgstr "Definir a cor de fundo dos items"
+
+#: ../../view/theme/redbasic/php/config.php:109
+msgid "Set the opacity of items"
+msgstr "Definir a opacidade de items"
+
+#: ../../view/theme/redbasic/php/config.php:110
+msgid "Set the basic colour for item icons"
+msgstr "Definir a cor básica para ícones de itens"
+
+#: ../../view/theme/redbasic/php/config.php:111
+msgid "Set the hover colour for item icons"
+msgstr "Definir a cor para ícones de itens quando que o mouse está sobre eles"
+
+#: ../../view/theme/redbasic/php/config.php:112
+msgid "Set font-size for the entire application"
+msgstr "Definir o tamanho da fonte para a aplicação como um todo"
+
+#: ../../view/theme/redbasic/php/config.php:113
+#: ../../view/theme/apw/php/config.php:252
+msgid "Set font-size for posts and comments"
+msgstr "Definir o tamanho da fonte para publicações e comentários"
+
+#: ../../view/theme/redbasic/php/config.php:114
+msgid "Set font-colour for posts and comments"
+msgstr "Definir a cor da fonte para publicações e comentários"
+
+#: ../../view/theme/redbasic/php/config.php:115
+msgid "Set radius of corners"
+msgstr "Definir o raio de curvatura dos cantos"
+
+#: ../../view/theme/redbasic/php/config.php:116
+msgid "Set shadow depth of photos"
+msgstr "Definir a profundidade de sombra das fotos"
+
+#: ../../view/theme/redbasic/php/config.php:117
+msgid "Set maximum width of conversation regions"
+msgstr "Definir a largura máxima da área de conversas"
+
+#: ../../view/theme/redbasic/php/config.php:118
+msgid "Set minimum opacity of nav bar - to hide it"
+msgstr "Definir opacidade mínima para a barra de navegação - para escondê-la"
+
+#: ../../view/theme/redbasic/php/config.php:119
+msgid "Set size of conversation author photo"
+msgstr "Definir o tamanho da foto do autor da conversa"
+
+#: ../../view/theme/redbasic/php/config.php:120
+msgid "Set size of followup author photos"
+msgstr "Definir o tamanho da foto dos autores de comentários"
+
+#: ../../view/theme/redbasic/php/config.php:121
+msgid "Sloppy photo albums"
+msgstr "Álbuns de fotos desleixados"
+
+#: ../../view/theme/redbasic/php/config.php:121
+msgid "Are you a clean desk or a messy desk person?"
+msgstr "Sua mesa é do tipo limpinha ou bagunçada?"
+
+#: ../../view/theme/apw/php/config.php:193
+#: ../../view/theme/apw/php/config.php:227
+msgid "Schema Default"
+msgstr "Padrão do esquema"
+
+#: ../../view/theme/apw/php/config.php:194
+msgid "Sans-Serif"
+msgstr "Sans-Serif"
+
+#: ../../view/theme/apw/php/config.php:195
+msgid "Monospace"
+msgstr "Monoespaçada"
+
+#: ../../view/theme/apw/php/config.php:253
+msgid "Set font face"
+msgstr "Definir a face da fonte"
+
+#: ../../view/theme/apw/php/config.php:254
+msgid "Set iconset"
+msgstr "Definir o conjunto de ícones"
+
+#: ../../view/theme/apw/php/config.php:255
+msgid "Set big shadow size, default 15px 15px 15px"
+msgstr "Definir o tamanho da sombra grande, padrão 15px 15px 15px"
+
+#: ../../view/theme/apw/php/config.php:256
+msgid "Set small shadow size, default 5px 5px 5px"
+msgstr "Definir o tamanho da sombra pequena, padrão 5px 5px 5px"
+
+#: ../../view/theme/apw/php/config.php:257
+msgid "Set shadow colour, default #000"
+msgstr "Definir a cor da sombra, padrão #000"
+
+#: ../../view/theme/apw/php/config.php:258
+msgid "Set radius size, default 5px"
+msgstr "Definir o tamanho do raio de curvatura, padrão 5px"
+
+#: ../../view/theme/apw/php/config.php:259
+msgid "Set line-height for posts and comments"
+msgstr "Definir a altura da linha para publicações e comentários"
+
+#: ../../view/theme/apw/php/config.php:260
+msgid "Set background image"
+msgstr "Definir a imagem do pano de fundo"
+
+#: ../../view/theme/apw/php/config.php:261
+msgid "Set background colour"
+msgstr "Definir a cor do pano de fundo"
+
+#: ../../view/theme/apw/php/config.php:262
+msgid "Set section background image"
+msgstr "Definir a imagem de fundo de seção"
+
+#: ../../view/theme/apw/php/config.php:263
+msgid "Set section background colour"
+msgstr "Definir a cor de fundo de seção"
+
+#: ../../view/theme/apw/php/config.php:264
+msgid "Set colour of items - use hex"
+msgstr "Definir a cor dos itens - use hex"
+
+#: ../../view/theme/apw/php/config.php:265
+msgid "Set colour of links - use hex"
+msgstr "Definir a cor dos links - use hex"
+
+#: ../../view/theme/apw/php/config.php:266
+msgid "Set max-width for items. Default 400px"
+msgstr "Definir a largura máxima para itens. Padrão 400px"
+
+#: ../../view/theme/apw/php/config.php:267
+msgid "Set min-width for items. Default 240px"
+msgstr "Definir a largura mínima para itens. Padrão 240px"
+
+#: ../../view/theme/apw/php/config.php:268
+msgid "Set the generic content wrapper width. Default 48%"
+msgstr "Definir a largura do envólucro para conteúdo genérico. Padrão 48%"
+
+#: ../../view/theme/apw/php/config.php:269
+msgid "Set colour of fonts - use hex"
+msgstr "Definir a cor das fontes - use hex"
+
+#: ../../view/theme/apw/php/config.php:270
+msgid "Set background-size element"
+msgstr "Definir o elemento background-size"
+
+#: ../../view/theme/apw/php/config.php:271
+msgid "Item opacity"
+msgstr "Opacidade de itens"
+
+#: ../../view/theme/apw/php/config.php:272
+msgid "Display post previews only"
+msgstr "Exibir apenas a pré-visualização de publicações"
+
+#: ../../view/theme/apw/php/config.php:273
+msgid "Display side bar on channel page"
+msgstr "Exibir a barra lateral na página do canal"
+
+#: ../../view/theme/apw/php/config.php:274
+msgid "Colour of the navigation bar"
+msgstr "Cor da barra de navegação"
+
+#: ../../view/theme/apw/php/config.php:275
+msgid "Item float"
+msgstr "Flutuação de item"
+
+#: ../../view/theme/apw/php/config.php:276
+msgid "Left offset of the section element"
+msgstr "Deslocamento esquerdo do elemento de seção"
+
+#: ../../view/theme/apw/php/config.php:277
+msgid "Right offset of the section element"
+msgstr "Deslocamento direito do elemento de seção"
+
+#: ../../view/theme/apw/php/config.php:278
+msgid "Section width"
+msgstr "largura de seção"
+
+#: ../../view/theme/apw/php/config.php:279
+msgid "Left offset of the aside"
+msgstr "Deslocamento esquerdo do aparte"
+
+#: ../../view/theme/apw/php/config.php:280
+msgid "Right offset of the aside element"
+msgstr "Deslocamento direito do aparte"
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:47
+#: ../../view/theme/blogga/php/config.php:47
+msgid "None"
+msgstr "Nenhum"
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:70
+#: ../../view/theme/blogga/php/config.php:70
+msgid "Header image"
+msgstr "Imagem de cabeçalho"
+
+#: ../../view/theme/blogga/view/theme/blog/config.php:71
+#: ../../view/theme/blogga/php/config.php:71
+msgid "Header image only on profile pages"
+msgstr "Imagem de cabeçalho apenas em páginas de perfil"
+
+#: ../../boot.php:1234
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "A atualização %s falhou. Veja os logs de erro."
+
+#: ../../boot.php:1237
+#, php-format
+msgid "Update Error at %s"
+msgstr "Erro de atualização em %s"
+
+#: ../../boot.php:1401
+msgid ""
+"Create an account to access services and applications within the Red Matrix"
+msgstr "Crie uma conta para acessar serviços e aplicações na Red Matrix"
+
+#: ../../boot.php:1429
+msgid "Password"
+msgstr "Senha"
+
+#: ../../boot.php:1430
+msgid "Remember me"
+msgstr "Lembrar de mim"
+
+#: ../../boot.php:1435
+msgid "Forgot your password?"
+msgstr "Esqueceu a sua senha?"
+
+#: ../../boot.php:1500
+msgid "permission denied"
+msgstr "permissão negada"
+
+#: ../../boot.php:1501
+msgid "Got Zot?"
+msgstr "Já tem Zot?"
+
+#: ../../boot.php:1920
+msgid "toggle mobile"
+msgstr "alternar para interface móvel"
diff --git a/view/pt-br/passchanged_eml.tpl b/view/pt-br/passchanged_eml.tpl
index 0d94be3c2..8a9e0b637 100644
--- a/view/pt-br/passchanged_eml.tpl
+++ b/view/pt-br/passchanged_eml.tpl
@@ -1,20 +1,22 @@
-Dear {{$username}},
- Your password has been changed as requested. Please retain this
-information for your records (or change your password immediately to
-something that you will remember).
+Caro/a {{$username}},
+
+ Sua senha foi modificada como solicitado. Por favor retenha
+essa informação contigo (ou modifique sua senha imediatamente para
+algo que você se lembrará).
-Your login details are as follows:
+Suas informações de autenticação são as seguintes:
-Site Location: {{$siteurl}}
-Login Name: {{$email}}
-Password: {{$new_password}}
+Localização do site: {{$siteurl}}
+Nome: {{$email}}
+Senha: {{$new_password}}
-You may change that password from your account settings page after logging in.
+Você pode modificar esta senha a partir da página de configurações de conta,
+após autenticar-se.
-Sincerely,
- {{$sitename}} Administrator
+Atenciosamente,
+ {{$sitename}} Administrador
diff --git a/view/pt-br/register_open_eml.tpl b/view/pt-br/register_open_eml.tpl
index 4b397201c..6dd4b714b 100644
--- a/view/pt-br/register_open_eml.tpl
+++ b/view/pt-br/register_open_eml.tpl
@@ -1,19 +1,18 @@
-An account has been created at {{$sitename}} for this email address.
-The login details are as follows:
+Uma conta foi criada em {{$sitename}} para este endereço de e-mail.
+Os detalhes de autenticação são os seguintes:
-Site Location: {{$siteurl}}
-Login: {{$email}}
-Password: (the password which was provided during registration)
+Localização do site: {{$siteurl}}
+Nome: {{$email}}
+Senha: (the password which was provided during registration)
-If this account was created without your knowledge and is not desired, you may
-visit this site and reset the password. This will allow you to remove the
-account from the links on the Settings page, and we
-apologise for any inconvenience.
+Se esta conta foi criada sem seu conhecimento e não é desejada, você pode
+visitar o site e reiniciar a senha. Isso permitirá que você a remova a partir
+da página de Configurações, e nesse caso desculpamo-nos pela inconveniência.
-Thank you and welcome to {{$sitename}}.
+Obrigado e bem vindo a {{$sitename}}.
-Sincerely,
- {{$sitename}} Administrator
+Atenciosamente,
+ {{$sitename}} Administrador
diff --git a/view/pt-br/register_verify_eml.tpl b/view/pt-br/register_verify_eml.tpl
index 85d9a12d3..9576039bc 100644
--- a/view/pt-br/register_verify_eml.tpl
+++ b/view/pt-br/register_verify_eml.tpl
@@ -1,25 +1,25 @@
-A new user registration request was received at {{$sitename}} which requires
-your approval.
+Uma nova solicitação de registro de usuário foi recebida em {{$sitename}} e
+requer sua aprovação.
-The login details are as follows:
+Os detalhes de autenticação são os seguintes:
-Site Location: {{$siteurl}}
-Login Name: {{$email}}
-IP Address: {{$details}}
+Localização do site: {{$siteurl}}
+Nome: {{$email}}
+Endereço IP: {{$details}}
-To approve this request please visit the following link:
+Para aprovar essa solicitação, acesse o link abaixo:
{{$siteurl}}/regmod/allow/{{$hash}}
-To deny the request and remove the account, please visit:
+Para negar a solicitação e remover a conta, acesse:
{{$siteurl}}/regmod/deny/{{$hash}}
-Thank you.
+Obrigado.
diff --git a/view/pt-br/request_notify_eml.tpl b/view/pt-br/request_notify_eml.tpl
index d01b8ff27..3f0befb3f 100644
--- a/view/pt-br/request_notify_eml.tpl
+++ b/view/pt-br/request_notify_eml.tpl
@@ -1,17 +1,17 @@
-Dear {{$myname}},
+Caro/a {{$myname}},
-You have just received a connection request at {{$sitename}}
+Você acaba de receber uma solicitação de conexão em {{$sitename}}
-from '{{$requestor}}'.
+por '{{$requestor}}'.
-You may visit their profile at {{$url}}.
+Você pode ver o perfil dele em {{$url}}.
-Please login to your site to view the complete introduction
-and approve or ignore/cancel the request.
+Por favor, autentique-se no seu site para ver a apresentação completa
+e aprovar ou ignorar/cancelar o pedido.
{{$siteurl}}
-Regards,
+Gratidão,
- {{$sitename}} administrator
+ {{$sitename}} administrador
diff --git a/view/pt-br/strings.php b/view/pt-br/strings.php
index 0cf143db4..439d6db9f 100644
--- a/view/pt-br/strings.php
+++ b/view/pt-br/strings.php
@@ -1,819 +1,167 @@
1);
+ return ($n > 1);;
}
;
-$a->strings["Post successful."] = "Publicado com sucesso.";
-$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
-$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
-$a->strings["Permission denied."] = "Permissão negada.";
-$a->strings["Contact not found."] = "O contato não foi encontrado.";
-$a->strings["Repair Contact Settings"] = "Reparar configurações do contato";
-$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact will stop working."] = "AVISO: Essas são configurações mais avançadas e caso você entre com alguma informação incorreta, suas comunicações com este contato deixarão de funcionar.";
-$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador agora, caso você não tenha certeza do que está fazendo.";
-$a->strings["Name"] = "Nome";
-$a->strings["Account Nickname"] = "Identificação da conta";
-$a->strings["Account URL"] = "URL da conta";
-$a->strings["Friend Request URL"] = "URL da requisição de amizade";
-$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
-$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
-$a->strings["Poll/Feed URL"] = "URL do inquisidor (poll)/fonte de notícias";
-$a->strings["Submit"] = "Enviar";
-$a->strings["Help:"] = "Ajuda:";
-$a->strings["Help"] = "Ajuda";
-$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
-$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
-$a->strings["Cancel"] = "Cancelar";
-$a->strings["Tag removed"] = "A etiqueta foi removida";
-$a->strings["Remove Item Tag"] = "Remover a etiqueta de item";
-$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
-$a->strings["Remove"] = "Remover";
-$a->strings["%s welcomes %s"] = "%s da as boas vindas a %s";
-$a->strings["Photo Albums"] = "Álbum de fotos";
-$a->strings["Contact Photos"] = "Fotos dos contatos";
-$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
-$a->strings["Profile Photos"] = "Fotos do perfil";
-$a->strings["Album not found."] = "O álbum não foi encontrado.";
-$a->strings["Delete Album"] = "Excluir o álbum";
-$a->strings["Delete Photo"] = "Excluir a foto";
-$a->strings["was tagged in a"] = "foi etiquetada em uma";
-$a->strings["photo"] = "foto";
-$a->strings["by"] = "por";
-$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de ";
-$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
-$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
-$a->strings["Public access denied."] = "Acesso público negado.";
-$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
-$a->strings["Upload Photos"] = "Enviar fotos";
-$a->strings["New album name: "] = "Novo nome de álbum: ";
-$a->strings["or existing album name: "] = "ou nome de um álbum já existente: ";
-$a->strings["Permissions"] = "Permissões";
-$a->strings["Edit Album"] = "Editar o álbum";
-$a->strings["View Photo"] = "Ver a foto";
-$a->strings["Photo not available"] = "A foto não está disponível";
-$a->strings["Edit photo"] = "Editar a foto";
-$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
-$a->strings["Private Message"] = "Mensagem privada";
-$a->strings["<< Prev"] = "<< Anterior";
-$a->strings["View Full Size"] = "Ver no tamanho real";
-$a->strings["Next >>"] = "Próxima >>";
-$a->strings["Tags: "] = "Etiquetas: ";
-$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
-$a->strings["New album name"] = "Novo nome para o álbum";
-$a->strings["Caption"] = "Legenda";
-$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
-$a->strings["I like this (toggle)"] = "Eu gostei disso (alterna)";
-$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alterna)";
-$a->strings["Share"] = "Compartilhar";
-$a->strings["Please wait"] = "Por favor, espere";
-$a->strings["This is you"] = "Este(a) é você";
-$a->strings["Comment"] = "Comentar";
-$a->strings["Delete"] = "Excluir";
-$a->strings["Recent Photos"] = "Fotos recentes";
-$a->strings["Upload New Photos"] = "Enviar novas fotos";
-$a->strings["View Album"] = "Ver álbum";
-$a->strings["Item not found"] = "O item não foi encontrado";
-$a->strings["Edit post"] = "Editar a publicação";
-$a->strings["Post to Email"] = "Publicar em e-mail";
-$a->strings["Edit"] = "Editar";
-$a->strings["Upload photo"] = "Enviar foto";
-$a->strings["Attach file"] = "Anexar arquivo";
-$a->strings["Insert web link"] = "Inserir link web";
-$a->strings["Insert YouTube video"] = "Inserir vídeo do YouTube";
-$a->strings["Insert Vorbis [.ogg] video"] = "Inserir vídeo Vorbis (.ogg)";
-$a->strings["Insert Vorbis [.ogg] audio"] = "Inserir áudio Vorbis (.ogg)";
-$a->strings["Set your location"] = "Definir sua localização";
-$a->strings["Clear browser location"] = "Limpar a localização do navegador";
-$a->strings["Permission settings"] = "Configurações de permissão";
-$a->strings["CC: email addresses"] = "CC: endereço de e-mail";
-$a->strings["Public post"] = "Publicação pública";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
-$a->strings["This introduction has already been accepted."] = "Esta introdução já foi aceita.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém informação de perfil.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
-$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
-$a->strings["%d required parameter was not found at the given location"] = array(
- 0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
- 1 => "",
-);
-$a->strings["Introduction complete."] = "A introdução foi completada.";
-$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro de protocolo irrecuperável.";
-$a->strings["Profile unavailable."] = "O perfil não está disponível.";
-$a->strings["%s has received too many connection requests today."] = "%s recebeu muitas solicitações de conexão hoje.";
-$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
-$a->strings["Invalid locator"] = "Localizador inválido";
-$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível resolver o seu nome no localizador indicado.";
-$a->strings["You have already introduced yourself here."] = "Você já fez a sua introdução aqui.";
-$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
-$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
-$a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
-$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
-$a->strings["Your introduction has been sent."] = "A sua introdução foi enviada.";
-$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a introdução.";
-$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "A identidade autenticada está incorreta. Por favor, entre como este perfil.";
-$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de introdução/conexão para %s.";
-$a->strings["Confirm"] = "Confirmar";
-$a->strings["[Name Withheld]"] = "[Nome não revelado]";
-$a->strings["Introduction received at "] = "Introdução recebida em ";
-$a->strings["Administrator"] = "Administrador";
-$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
-$a->strings["Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca"] = "Exemplos: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, teste@identi.ca";
-$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
-$a->strings["Does \$name know you?"] = "$name conhece você?";
-$a->strings["Yes"] = "Sim";
-$a->strings["No"] = "Não";
-$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
-$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Por favor, digite o seu 'endereço de identificação' de uma das seguintes redes sociais suportadas:";
-$a->strings["Friendika"] = "Friendika";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings["Private (secure) network"] = "Rede privada (segura)";
-$a->strings["Public (insecure) network"] = "Rede pública (insegura)";
-$a->strings["Your Identity Address:"] = "Seu endereço de identificação:";
-$a->strings["Submit Request"] = "Enviar solicitação";
-$a->strings["Could not create/connect to database."] = "Não foi possível criar/conectar-se ao banco de dados.";
-$a->strings["Connected to database."] = "Conectado ao banco de dados.";
-$a->strings["Proceed with Installation"] = "Prossiga com a instalação";
-$a->strings["Your Friendika site database has been installed."] = "O banco de dados do seu site Friendika foi instalado.";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o pesquisador.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\".";
-$a->strings["Proceed to registration"] = "Prossiga com o registro";
-$a->strings["Database import failed."] = "Não foi possível importar o banco de dados.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql.";
-$a->strings["Welcome to Friendika."] = "Bem-vindo(a) ao Friendika.";
-$a->strings["Friendika Social Network"] = "Rede social Friendika";
-$a->strings["Installation"] = "Instalação";
-$a->strings["In order to install Friendika we need to know how to contact your database."] = "Para instalar o Friendika é necessário saber como contactar o seu banco de dados.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a isso.";
-$a->strings["The database you specify below must already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificar abaixo já deve existir. Caso contrário, por favor crie-o antes de prosseguir.";
-$a->strings["Database Server Name"] = "Nome do servidor de banco de dados";
-$a->strings["Database Login Name"] = "Nome do usuário do banco de dados";
-$a->strings["Database Login Password"] = "Senha do usuário do banco de dados";
-$a->strings["Database Name"] = "Nome do banco de dados";
-$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web.";
-$a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "Isto é necessário. Por favor, faça os ajustes no arquivo de configurações .htconfig.php.";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema.";
-$a->strings["This is required for message delivery to work."] = "Isto é requerido para o funcionamento do envio de mensagens.";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
-$a->strings["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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
-$a->strings["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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
-$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Por favor, verifique a documentação ou o suporte do seu site para verificar se esta situação pode ser corrigida.";
-$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Caso contrário você terá que efetuar uma instalação manual. Por favor, verifique o arquivo \"INSTALL.TXT\" para mais instruções.";
-$a->strings["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."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
-$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
-$a->strings["Profile Match"] = "Correspondência de perfil";
-$a->strings["No matches"] = "Nenhuma correspondência";
-$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
-$a->strings["Visible to:"] = "Visível para:";
-$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
-$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
-$a->strings["Discard"] = "Descartar";
-$a->strings["Ignore"] = "Ignorar";
-$a->strings["Pending Friend/Connect Notifications"] = "Notificações pendentes de amigo/conexão";
-$a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas";
-$a->strings["Hide Ignored Requests"] = "Esconder solicitações ignoradas";
-$a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: ";
-$a->strings["yes"] = "sim";
-$a->strings["no"] = "não";
-$a->strings["Approve as: "] = "Aprovar como:";
-$a->strings["Friend"] = "Amigo";
-$a->strings["Fan/Admirer"] = "Fã/Admirador";
-$a->strings["Notification type: "] = "Tipo de notificação:";
-$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
-$a->strings["New Follower"] = "Novo acompanhante";
-$a->strings["Approve"] = "Aprovar";
-$a->strings["No notifications."] = "Nenhuma notificação";
-$a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação";
-$a->strings["Deny"] = "Negar";
-$a->strings["No registrations."] = "Nenhum registro.";
-$a->strings["Invite Friends"] = "Convidar amigos";
-$a->strings["Find People With Shared Interests"] = "Encontre pessoas com interesses similares";
-$a->strings["Connect/Follow"] = "Conectar/Acompanhar";
+$a->strings["Categories"] = "Categorias";
+$a->strings["Connect"] = "Conectar";
+$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
+$a->strings["Suggestions"] = "Sugestões";
+$a->strings["See more..."] = "Veja mais...";
+$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Você tem %1$.0f de %2$.0f conexões permitidas.";
+$a->strings["Add New Connection"] = "Adicionar nova conexão";
+$a->strings["Enter the channel address"] = "Digite o endereço do canal";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
-$a->strings["Follow"] = "Acompanhar";
-$a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato.";
-$a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado.";
-$a->strings["Contact updated."] = "O contato foi atualizado.";
-$a->strings["Contact has been blocked"] = "O contato foi bloqueado";
-$a->strings["Contact has been unblocked"] = "O contato foi desbloqueado";
-$a->strings["Contact has been ignored"] = "O contato está sendo ignorado";
-$a->strings["Contact has been unignored"] = "O contato deixou de ser ignorado";
-$a->strings["stopped following"] = "parou de acompanhar";
-$a->strings["Contact has been removed."] = "O contato foi removido.";
-$a->strings["Mutual Friendship"] = "Amizade mútua";
-$a->strings["is a fan of yours"] = "é um fã seu";
-$a->strings["you are a fan of"] = "você é um fã de";
-$a->strings["Privacy Unavailable"] = "Privacidade não disponível";
-$a->strings["Private communications are not available for this contact."] = "As comunicações privadas não estão disponíveis para este contato.";
-$a->strings["Never"] = "Nunca";
-$a->strings["(Update was successful)"] = "(A atualização foi bem sucedida)";
-$a->strings["(Update was not successful)"] = "(A atualização não foi bem sucedida)";
-$a->strings["Contact Editor"] = "Editor de contatos";
-$a->strings["Profile Visibility"] = "Visibilidade do perfil";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro.";
-$a->strings["Contact Information / Notes"] = "Informações de contato / Notas";
-$a->strings["Online Reputation"] = "Reputação on-line";
-$a->strings["Occasionally your friends may wish to inquire about this person's online legitimacy."] = "Ocasionalmente os seus amigos podem querer saber sobre a legitimidade on-line desta pessoa.";
-$a->strings["You may help them choose whether or not to interact with this person by providing a reputation to guide them."] = "Você pode então ajudá-los a decidir se eles devem ou não interagir com esta pessoa, fornecendo uma reputação para guiá-los.";
-$a->strings["Please take a moment to elaborate on this selection if you feel it could be helpful to others."] = "Por favor, dedique um momento para trabalhar nisso, caso você sinta que possa ser útil a outras pessoas.";
-$a->strings["Visit \$name's profile"] = "Visite o perfil de \$name";
-$a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato";
-$a->strings["Ignore contact"] = "Ignorar o contato";
-$a->strings["Repair contact URL settings"] = "Reparar as configurações de URL do contato";
-$a->strings["Repair contact URL settings (WARNING: Advanced)"] = "Reparar as configurações de URL do contato (ATENÇÃO: Avançado)";
-$a->strings["View conversations"] = "Ver as conversas";
-$a->strings["Delete contact"] = "Excluir o contato";
-$a->strings["Last updated: "] = "Última atualização: ";
-$a->strings["Update public posts: "] = "Atualizar publicações públicas: ";
-$a->strings["Update now"] = "Atualizar agora";
-$a->strings["Unblock this contact"] = "Desbloquear este contato";
-$a->strings["Block this contact"] = "Bloquear este contato";
-$a->strings["Unignore this contact"] = "Deixar de ignorar este usuário";
-$a->strings["Ignore this contact"] = "Ignorar este usuário";
-$a->strings["Currently blocked"] = "Atualmente bloqueado";
-$a->strings["Currently ignored"] = "Atualmente ignorado";
-$a->strings["Contacts"] = "Contatos";
-$a->strings["Show Blocked Connections"] = "Exibir as conexões bloqueadas";
-$a->strings["Hide Blocked Connections"] = "Esconder as conexões bloqueadas";
-$a->strings["Finding: "] = "Pesquisando: ";
-$a->strings["Find"] = "Pesquisar";
-$a->strings["Visit \$username's profile"] = "Visitar o perfil de \$username";
-$a->strings["Edit contact"] = "Editar o contato";
-$a->strings["Password reset request issued. Check your email."] = "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail.";
-$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de restauração de senha em %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada.";
-$a->strings["Password Reset"] = "Reiniciar a senha";
-$a->strings["Your password has been reset as requested."] = "Sua senha foi restaurada, conforme solicitado.";
-$a->strings["Your new password is"] = "Sua nova senha é";
-$a->strings["Save or copy your new password - and then"] = "Salve ou copie a sua nova senha e, então";
-$a->strings["click here to login"] = "clique aqui para entrar";
-$a->strings["Your password may be changed from the Settings page after successful login."] = "Sua senha pode ser alterada na página de Configurações após você entrar em seu perfil.";
-$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções.";
-$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
-$a->strings["Reset"] = "Restaurar";
-$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada.";
-$a->strings["Password changed."] = "A senha foi modificada.";
-$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente.";
-$a->strings[" Please use a shorter name."] = " Por favor, use um nome mais curto.";
-$a->strings[" Name too short."] = " O nome é muito curto.";
-$a->strings[" Not valid email."] = " Não é um e-mail válido.";
-$a->strings[" Cannot change to that email."] = " Não foi possível alterar para esse e-mail.";
-$a->strings["Settings updated."] = "As configurações foram atualizadas.";
-$a->strings["Plugin Settings"] = "Configurações do plugin";
-$a->strings["Account Settings"] = "Configurações da conta";
-$a->strings["No Plugin settings configured"] = "Não foi definida nenhuma configuração de plugin";
-$a->strings["Normal Account"] = "Conta normal";
-$a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal";
-$a->strings["Soapbox Account"] = "Conta de palanque";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs de somente leitura";
-$a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs de leitura e escrita";
-$a->strings["Automatic Friend Account"] = "Conta de amigo automático";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprova automaticamente todas as solicitações de conexão/amizade como amigos";
-$a->strings["OpenID: "] = "OpenID: ";
-$a->strings[" (Optional) Allow this OpenID to login to this account."] = " (Opcional) Permite a este OpenID autenticar-se nesta conta.";
-$a->strings["Publish your default profile in site directory?"] = "Publicar seu perfil padrão no diretório do site?";
-$a->strings["Publish your default profile in global social directory?"] = "Publica seu perfil padrão no diretório social global?";
-$a->strings["Profile is not published."] = "O perfil não está publicado.";
-$a->strings["or"] = "ou";
-$a->strings["Your Identity Address is"] = "O endereço da sua identidade é";
-$a->strings["Export Personal Data"] = "Exportar dados pessoais";
-$a->strings["Basic Settings"] = "Configurações básicas";
-$a->strings["Full Name:"] = "Nome completo:";
-$a->strings["Email Address:"] = "Endereço de e-mail:";
-$a->strings["Your Timezone:"] = "Seu fuso horário:";
-$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:";
-$a->strings["Use Browser Location:"] = "Usar localizador do navegador:";
-$a->strings["Display Theme:"] = "Tema do perfil:";
-$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade";
-$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:";
-$a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)";
-$a->strings["Allow friends to post to your profile page:"] = "Permite aos seus amigos publicarem na sua página de perfil:";
-$a->strings["Automatically expire (delete) posts older than"] = "Expira (exclui) automaticamente publicações mais velhas que";
-$a->strings["days"] = "dias";
-$a->strings["Notification Settings"] = "Configurações de notificação";
-$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação quando:";
-$a->strings["You receive an introduction"] = "Você receber uma solicitação";
-$a->strings["Your introductions are confirmed"] = "Suas solicitações forem confirmadas";
-$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil";
-$a->strings["Someone writes a followup comment"] = "Alguém comentou a sua mensagem";
-$a->strings["You receive a private message"] = "Você receber uma mensagem privada";
-$a->strings["Password Settings"] = "Configurações da senha";
-$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la";
-$a->strings["New Password:"] = "Nova senha:";
-$a->strings["Confirm:"] = "Confirme:";
-$a->strings["Advanced Page Settings"] = "Configurações avançadas da página";
-$a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
-$a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
-$a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal.";
-$a->strings["IMAP server name:"] = "Nome do servidor IMAP:";
-$a->strings["IMAP port:"] = "Porta do IMAP:";
-$a->strings["Security (TLS or SSL):"] = "Segurança (TLS ou SSL):";
-$a->strings["Email login name:"] = "Nome de usuário do e-mail:";
-$a->strings["Email password:"] = "Senha do e-mail:";
-$a->strings["Reply-to address (Optional):"] = "Endereço de resposta (Reply-to) (opcional):";
-$a->strings["Send public posts to all email contacts:"] = "Enviar publicações públicas para todos os contatos de e-mail:";
-$a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site.";
-$a->strings["Welcome back %s"] = "Bem-vindo(a) de volta %s";
-$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
-$a->strings["(Toggle between different identities or community/group pages which share your account details.)"] = "(Alterna entre as diferentes páginas de identidades ou comunidades/grupos que compartilham os detalhes da sua conta.)";
-$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
-$a->strings["Normal View"] = "Visão normal";
-$a->strings["New Item View"] = "Visão de novos itens";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
- 0 => "Aviso: Este grupo contém %s membro de uma rede insegura.",
- 1 => "Aviso: Este grupo contém %s membros de uma rede insegura.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública.";
-$a->strings["No such group"] = "Este grupo não existe";
-$a->strings["Group is empty"] = "O grupo está vazio";
-$a->strings["Group: "] = "Grupo: ";
-$a->strings["Contact: "] = "Contato: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
-$a->strings["Invalid contact."] = "Contato inválido.";
-$a->strings["Shared content is covered by the Creative Commons Attribution 3.0 license."] = "O conteúdo compartilhado está coberto pela licença Creative Commons Atribuição 3.0.";
-$a->strings["Private Notes"] = "Anotações privadas";
+$a->strings["Notes"] = "Notas";
$a->strings["Save"] = "Salvar";
-$a->strings["Item not available."] = "O item não está disponível.";
-$a->strings["Item was not found."] = "O item não foi encontrado.";
-$a->strings["Group created."] = "O grupo foi criado.";
-$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
-$a->strings["Group not found."] = "O grupo não foi encontrado.";
-$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
-$a->strings["Permission denied"] = "Permissão negada";
-$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
-$a->strings["Group Name: "] = "Nome do grupo: ";
-$a->strings["Group removed."] = "O grupo foi removido.";
-$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
-$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
-$a->strings["Group Editor"] = "Editor de grupo";
-$a->strings["Members"] = "Membros";
-$a->strings["All Contacts"] = "Todos os contatos";
-$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
-$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
-$a->strings["Profile"] = "Perfil ";
-$a->strings["Visible To"] = "Visível para";
-$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)";
-$a->strings["View Contacts"] = "Ver contatos";
-$a->strings["No contacts."] = "Nenhum contato.";
-$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
-$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
-$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
-$a->strings["Name too short."] = "O nome é muito curto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
-$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
-$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra.";
-$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outro.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
-$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
-$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi.";
-$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
-$a->strings["Registration request at %s"] = "Solicitação de registro em %s";
-$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
-$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
-$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
-$a->strings["Registration"] = "Registro";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (por exemplo, José da Silva): ";
-$a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será 'identificação@\$sitename'";
-$a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
+$a->strings["Remove term"] = "Remover termo";
+$a->strings["Saved Searches"] = "Pesquisas salvas";
+$a->strings["add"] = "adicionar";
+$a->strings["Saved Folders"] = "Pastas salvas";
+$a->strings["Everything"] = "Tudo";
+$a->strings["Archives"] = "Arquivos";
+$a->strings["Refresh"] = "Atualizar";
+$a->strings["Me"] = "Eu";
+$a->strings["Best Friends"] = "Melhores amigos";
+$a->strings["Friends"] = "Amigos";
+$a->strings["Co-workers"] = "Colegas de trabalho";
+$a->strings["Former Friends"] = "Amigos afastados";
+$a->strings["Acquaintances"] = "Conhecidos";
+$a->strings["Everybody"] = "Todos";
+$a->strings["Account settings"] = "Configurações da conta";
+$a->strings["Channel settings"] = "Configurações do canal";
+$a->strings["Additional features"] = "Recursos adicionais";
+$a->strings["Feature settings"] = "Configurações dos recursos";
+$a->strings["Display settings"] = "Configurações de exibição";
+$a->strings["Connected apps"] = "Aplicações conectadas";
+$a->strings["Export channel"] = "Exportar o canal";
+$a->strings["Automatic Permissions (Advanced)"] = "Permissões automáticas (avançado)";
+$a->strings["Premium Channel Settings"] = "Configurações de canal premium";
+$a->strings["Channel Sources"] = "Fontes do canal";
+$a->strings["Settings"] = "Configurações";
+$a->strings["Check Mail"] = "Checar mensagens";
+$a->strings["New Message"] = "Nova mensagem";
+$a->strings["Chat Rooms"] = "Salas de bate-papo";
+$a->strings["Bookmarked Chatrooms"] = "Salas de bate-papo guardadas";
+$a->strings["Suggested Chatrooms"] = "Salas de bate-papo sugeridas";
+$a->strings["Visible to everybody"] = "Visível para todos";
+$a->strings["show"] = "exibir";
+$a->strings["don't show"] = "não exibir";
+$a->strings[" and "] = " e ";
+$a->strings["public profile"] = "perfil público";
+$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s mudou %2\$s para “%3\$s”";
+$a->strings["Visit %1\$s's %2\$s"] = "Visite o %2\$s de %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s atualizou %2\$s, alterando %3\$s.";
+$a->strings["Logout"] = "Sair";
+$a->strings["End this session"] = "Encerrar essa sessão";
+$a->strings["Home"] = "Ver canal";
+$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
+$a->strings["View Profile"] = "Ver perfil";
+$a->strings["Your profile page"] = "A página do seu perfil";
+$a->strings["Edit Profiles"] = "Editar perfis";
+$a->strings["Manage/Edit profiles"] = "Administrar/Editar perfis";
+$a->strings["Photos"] = "Fotos";
+$a->strings["Your photos"] = "Suas fotos";
+$a->strings["Files"] = "Arquivos";
+$a->strings["Your files"] = "Seus arquivos";
+$a->strings["Chat"] = "Bate-papo";
+$a->strings["Your chatrooms"] = "Suas salas de bate-papo";
+$a->strings["Events"] = "Eventos";
+$a->strings["Your events"] = "Seus eventos";
+$a->strings["Bookmarks"] = "Links guardados";
+$a->strings["Your bookmarks"] = "Seus links guardados";
+$a->strings["Webpages"] = "Páginas web";
+$a->strings["Your webpages"] = "Suas páginas web";
+$a->strings["Login"] = "Entrar";
+$a->strings["Sign in"] = "Entrar";
+$a->strings["%s - click to logout"] = "%s - clique para sair";
+$a->strings["Click to authenticate to your home hub"] = "Clique para se autenticar com seu hub de origem";
+$a->strings["Home Page"] = "Página inicial";
$a->strings["Register"] = "Registrar";
-$a->strings["status"] = "status";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
-$a->strings["This is Friendika version"] = "Este é o Friendika versão";
-$a->strings["running at web location"] = "sendo executado no endereço web";
-$a->strings["Shared content within the Friendika network is provided under the Creative Commons Attribution 3.0 license"] = "O compartilhamento de conteúdo com a rede Friendika ocorre sob a licença Creative Commons Atribuição 3.0";
-$a->strings["Please visit Project.Friendika.com to learn more about the Friendika project."] = "Por favor, visite o project.friendika.com para aprender mais sobre o Projeto Friendika.";
-$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - dot com"] = "Para sugestões, pedidos, doações, etc., por favor, envie um e-mail para info arroba friendika ponto com";
-$a->strings["Installed plugins/addons/apps"] = "Plugins/complementos/aplicações instalados";
-$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicação instalado";
-$a->strings["Please login."] = "Por favor, autentique-se.";
-$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
-$a->strings["Account approved."] = "A conta foi aprovada.";
-$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
-$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
-$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
-$a->strings["Wall Photos"] = "Fotos do mural";
-$a->strings["noreply"] = "naoresponda";
-$a->strings["Administrator@"] = "Administrador@";
-$a->strings["%s commented on an item at %s"] = "%s comentou um item em %s";
-$a->strings["%s posted to your profile wall at %s"] = "%s publicou no mural do seu perfil em %s";
-$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
-$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "Esta mensagem foi enviada para você por %s, um membro da rede social Friendika.";
-$a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens.";
-$a->strings["%s posted an update."] = "%s publicou uma atualização.";
-$a->strings["Item not found."] = "O item não foi encontrado.";
-$a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la.";
-$a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s].";
-$a->strings["Unable to process image"] = "Não foi possível processar a imagem";
-$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
-$a->strings["Upload File:"] = "Enviar arquivo:";
-$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
-$a->strings["Upload"] = "Enviar";
-$a->strings["skip this step"] = "pule esta etapa";
-$a->strings["select a photo from your photo albums"] = "selecione uma foto do seu álbum de fotos";
-$a->strings["Crop Image"] = "Cortar a imagem";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização.";
-$a->strings["Done Editing"] = "Encerrar a edição";
-$a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso.";
-$a->strings["Remove My Account"] = "Remover minha conta";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
-$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
-$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
-$a->strings["[no subject]"] = "[sem assunto]";
-$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
-$a->strings["Message sent."] = "A mensagem foi enviada.";
-$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
-$a->strings["Messages"] = "Mensagens";
+$a->strings["Create an account"] = "Criar uma conta";
+$a->strings["Help"] = "Ajuda";
+$a->strings["Help and documentation"] = "Ajuda e documentação";
+$a->strings["Apps"] = "Aplicações";
+$a->strings["Addon applications, utilities, games"] = "Aplicações adicionais, utilitários, jogos";
+$a->strings["Search"] = "Pesquisar";
+$a->strings["Search site content"] = "Pesquisar o conteúdo do site";
+$a->strings["Directory"] = "Diretório";
+$a->strings["Channel Locator"] = "Localizador de canais";
+$a->strings["Matrix"] = "Matriz";
+$a->strings["Your matrix"] = "Sua matriz";
+$a->strings["Mark all matrix notifications seen"] = "Marcar todas as notificações da matriz como vistas";
+$a->strings["Channel Home"] = "Página inicial do canal";
+$a->strings["Channel home"] = "Página inicial do canal";
+$a->strings["Mark all channel notifications seen"] = "Marcar todas as notificações de canais como vistas";
+$a->strings["Intros"] = "Apresentações";
+$a->strings["New Connections"] = "Novas conexões";
+$a->strings["Notices"] = "Notificações";
+$a->strings["Notifications"] = "Notificações";
+$a->strings["See all notifications"] = "Ver todas as notificações";
+$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
+$a->strings["Mail"] = "Mensagens";
+$a->strings["Private mail"] = "Mensagens privadas";
+$a->strings["See all private messages"] = "Ver todas as mensagens privadas";
+$a->strings["Mark all private messages seen"] = "Marcar todas as mensagens privadas como vistas";
$a->strings["Inbox"] = "Recebidas";
$a->strings["Outbox"] = "Enviadas";
-$a->strings["New Message"] = "Nova mensagem";
-$a->strings["Message deleted."] = "A mensagem foi excluída.";
-$a->strings["Conversation removed."] = "A conversa foi removida.";
-$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
-$a->strings["Send Private Message"] = "Enviar mensagem privada";
-$a->strings["To:"] = "Para:";
-$a->strings["Subject:"] = "Assunto:";
-$a->strings["Your message:"] = "Sua mensagem:";
-$a->strings["No messages."] = "Nenhuma mensagem.";
-$a->strings["Delete conversation"] = "Excluir conversa";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["Message not available."] = "A mensagem não está disponível.";
-$a->strings["Delete message"] = "Excluir a mensagem";
-$a->strings["Send Reply"] = "Enviar resposta";
-$a->strings["No profile"] = "Nenhum perfil";
-$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
-$a->strings["Status"] = "Status";
-$a->strings["Photos"] = "Fotos";
-$a->strings["Login failed."] = "Não foi possível autenticar.";
-$a->strings["Welcome "] = "Bem-vindo(a) ";
-$a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil.";
-$a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
-$a->strings["The profile address specified does not provide adequate information."] = "O endereço de perfil especificado não fornece informação adequada.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível.";
-$a->strings["An author or name was not found."] = "Não foi encontrado nenhum autor ou nome.";
-$a->strings["No browser URL could be matched to this address."] = "Não foi possível encontrar nenhuma URL de navegação neste endereço.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você.";
-$a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato.";
-$a->strings["following"] = "acompanhando";
-$a->strings["Item has been removed."] = "O item foi removido.";
-$a->strings["New mail received at "] = "Nova mensagem recebida em ";
-$a->strings["Applications"] = "Aplicações";
-$a->strings["Search"] = "Pesquisar";
-$a->strings["No results."] = "Nenhum resultado.";
-$a->strings["Profile not found."] = "O perfil não foi encontrado.";
-$a->strings["Profile Name is required."] = "É necessário informar o nome do perfil.";
-$a->strings["Profile updated."] = "O perfil foi atualizado.";
-$a->strings["Profile deleted."] = "O perfil foi excluído.";
-$a->strings["Profile-"] = "Perfil-";
-$a->strings["New profile created."] = "O novo perfil foi criado.";
-$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem.";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?";
-$a->strings["Hide profile details and all your messages from unknown viewers?"] = "Esconder os detalhes do perfil e todas as suas mensagens dos visitantes desconhecidos?";
-$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil";
-$a->strings["View this profile"] = "Ver este perfil";
-$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações";
-$a->strings["Clone this profile"] = "Clonar este perfil";
-$a->strings["Delete this profile"] = "Excluir este perfil";
-$a->strings["Profile Name:"] = "Nome do perfil:";
-$a->strings["Your Full Name:"] = "Seu nome completo:";
-$a->strings["Title/Description:"] = "Título/Descrição:";
-$a->strings["Your Gender:"] = "Seu gênero:";
-$a->strings["Birthday (y/m/d):"] = "Data de nascimento (ano/mês/dia):";
-$a->strings["Street Address:"] = "Endereço:";
-$a->strings["Locality/City:"] = "Localidade/Cidade:";
-$a->strings["Postal/Zip Code:"] = "CEP:";
-$a->strings["Country:"] = "País:";
-$a->strings["Region/State:"] = "Região/Estado:";
-$a->strings["♥ Marital Status:"] = "Estado civil ♥:";
-$a->strings["Who: (if applicable)"] = "Quem: (se aplicável)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com";
-$a->strings["Sexual Preference:"] = "Preferência sexual:";
-$a->strings["Homepage URL:"] = "Endereço do site web:";
-$a->strings["Political Views:"] = "Posição política:";
-$a->strings["Religious Views:"] = "Orientação religiosa:";
-$a->strings["Public Keywords:"] = "Palavras-chave públicas:";
-$a->strings["Private Keywords:"] = "Palavras-chave privadas:";
-$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)";
-$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
-$a->strings["Hobbies/Interests"] = "Hobbies/Interesses";
-$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
-$a->strings["Musical interests"] = "Interesses musicais";
-$a->strings["Books, literature"] = "Livros, literatura";
-$a->strings["Television"] = "Televisão";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
-$a->strings["Love/romance"] = "Amor/romance";
-$a->strings["Work/employment"] = "Trabalho/emprego";
-$a->strings["School/education"] = "Escola/educação";
-$a->strings["This is your public profile. It may be visible to anybody using the internet."] = "Este é o seu perfil público. Ele pode estar visível para qualquer um que acesse a Internet.";
-$a->strings["Age: "] = "Idade: ";
-$a->strings["Profiles"] = "Perfis";
-$a->strings["Change profile photo"] = "Mudar a foto do perfil";
-$a->strings["Create New Profile"] = "Criar um novo perfil";
-$a->strings["Profile Image"] = "Imagem do perfil";
-$a->strings["Visible to everybody"] = "Visível para todos";
-$a->strings["Edit visibility"] = "Editar a visibilidade";
-$a->strings["Global Directory"] = "Diretório global";
-$a->strings["Normal site view"] = "Visão normal do site";
-$a->strings["View all site entries"] = "Ver todas as entradas do site";
-$a->strings["Site Directory"] = "Diretório do site";
-$a->strings["Gender: "] = "Gênero: ";
-$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar escondidas).";
-$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
-$a->strings["Please join my network on %s"] = "Por favor, junte-se à minha rede em %s";
-$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
-$a->strings["%d message sent."] = array(
- 0 => "%d mensagem enviada.",
- 1 => "%d mensagens enviadas.",
-);
-$a->strings["Send invitations"] = "Enviar convites.";
-$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
-$a->strings["Please join my social network on %s"] = "Por favor, junte-se à minha rede social em %s";
-$a->strings["To accept this invitation, please visit:"] = "Para aceitar este convite, por favor visite:";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Uma vez que você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
-$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
-$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
-$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
-$a->strings["Remote site reported: "] = "O site remoto reportou: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
-$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na introdução ou ela foi revogada.";
-$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s";
-$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
-$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
-$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
-$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
-$a->strings["Connection accepted at %s"] = "Conexão aceita em %s";
-$a->strings["Facebook disabled"] = "O Facebook está desabilitado";
-$a->strings["Updating contacts"] = "Atualizando os contatos";
-$a->strings["Facebook API key is missing."] = "A chave de API do Facebook não foi encontrada.";
-$a->strings["Facebook Connect"] = "Conexão com o Facebook";
-$a->strings["Install Facebook connector for this account."] = "Instalar o conector do Facebook nesta conta.";
-$a->strings["Remove Facebook connector"] = "Remover o conector do Facebook";
-$a->strings["Post to Facebook by default"] = "Publicar no Facebook por padrão";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Facebook Connector Settings"] = "Configurações do conector do Facebook";
-$a->strings["Post to Facebook"] = "Publicar no Facebook";
-$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "A publicação no Facebook foi cancelada devido a um conflito de permissão de acesso multi-rede.";
-$a->strings["Image: "] = "Imagem: ";
-$a->strings["View on Friendika"] = "Ver no Friendika";
-$a->strings["Widgets key: "] = "Chave de widgets: ";
-$a->strings["Generate new key"] = "Gerar nova chave";
-$a->strings["Connect on Friendika!"] = "Conectar ao Friendika!";
-$a->strings["Three Dimensional Tic-Tac-Toe"] = "Jogo da Velha tridimensional";
-$a->strings["3D Tic-Tac-Toe"] = "Jogo da Velha 3D";
-$a->strings["New game"] = "Novo jogo";
-$a->strings["New game with handicap"] = "Novo jogo com limitador";
-$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "O Jogo da Velha tridimensional é similar ao jogo tradicional, com a exceção que ele é jogado simultaneamente em múltiplos níveis.";
-$a->strings["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."] = "Neste caso, existem três níveis. Ganha quem conseguir alinhar três casas, não só no mesmo nível como também pra cima, pra baixo ou na diagonal entre os níveis.";
-$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "O jogo com limitador desabilita a posição central do nível do meio, uma vez que o jogador que obtém essa casa ganha uma vantagem desleal.";
-$a->strings["You go first..."] = "Você começa...";
-$a->strings["I'm going first this time..."] = "Eu vou começar desta vez...";
-$a->strings["You won!"] = "Você ganhou!";
-$a->strings["\"Cat\" game!"] = "Empatamos!";
-$a->strings["I won!"] = "Eu ganhei!";
-$a->strings["Randplace Settings"] = "Configurações do Randplace";
-$a->strings["Enable Randplace Plugin"] = "Habilitar o plugin Randplace";
-$a->strings["Select files to upload: "] = "Selecione os arquivos a serem enviados: ";
-$a->strings["Use the following controls only if the Java uploader [above] fails to launch."] = "Use os controles abaixo apenas se o enviador Java [acima] não puder ser iniciado.";
-$a->strings["Upload a file"] = "Enviar um arquivo";
-$a->strings["Drop files here to upload"] = "Solte os arquivos a serem enviados aqui";
-$a->strings["Failed"] = "Falhou";
-$a->strings["No files were uploaded."] = "Nenhum arquivo foi enviado.";
-$a->strings["Uploaded file is empty"] = "O arquivo enviado está em branco";
-$a->strings["Uploaded file is too large"] = "O arquivo enviado é muito grande";
-$a->strings["File has an invalid extension, it should be one of "] = "O arquivo possui uma extensão inválida, são aceitas somente ";
-$a->strings["Upload was cancelled, or server error encountered"] = "O envio foi cancelado ou ocorreu algum erro no servidor";
-$a->strings["OEmbed settings updated"] = "As configurações OEmbed foram atualizadas";
-$a->strings["Use OEmbed for YouTube videos: "] = "Usar OEmbed para vídeos do YouTube: ";
-$a->strings["URL to embed:"] = "URL a ser incorporada:";
-$a->strings["Post to StatusNet"] = "Publicar no StatusNet";
-$a->strings["Please contact your site administrator. The provided API URL is not valid."] = "Por favor, entre em contato com o administrados do seu site. A URL da API fornecida não é válida.";
-$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Não foi possível contactar a API do StatusNet a partir do caminho que você informou.";
-$a->strings["StatusNet settings updated."] = "As configurações do StatusNet foram atualizadas.";
-$a->strings["StatusNet Posting Settings"] = "Configurações de publicação no StatusNet";
-$a->strings["Globally Available StatusNet OAuthKeys"] = "OAuthKeys do StatusNet disponíveis globalmente";
-$a->strings["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)."] = "Existem pares de chaves OAuth para alguns servidores StatusNet disponíveis. Se você estiver usando algum desses servidores, por favor utilize essas credenciais. Caso contrário, sinta-se à vontade para conectar-se a qualquer outra instância do StatusNet (veja abaixo).";
-$a->strings["Provide your own OAuth Credentials"] = "Forneça suas próprias credenciais OAuth";
-$a->strings["No consumer key pair for StatusNet found. Register your Friendika 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 Friendika installation at your favorited StatusNet installation."] = "Não foi encontrado nenhum par de chaves de consumidor para o StatusNet. Registre sua conta do Friendika como um cliente desktop na sua conta StatusNet, copie o par de chaves de consumidor aqui e digite a raiz da base da API. Antes de você registrar se próprio par de chaves OAuth, pergunte ao administrador se já existe um par de chaves para esta instalação do Friendika no site do StatusNet que você está querendo utilizar.";
-$a->strings["OAuth Consumer Key"] = "Chave de consumidor OAuth";
-$a->strings["OAuth Consumer Secret"] = "Segredo de consumidor OAuth";
-$a->strings["Base API Path (remember the trailing /)"] = "Caminho base da API (lembre-se da / final)";
-$a->strings["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."] = "Para conectar à sua conta StatusNet, clique no botão abaixo para obter um código de segurança do StatusNet, o qual você deve copiar na caixa de texto abaixo e clicar no botão para enviar o formulário. Somente suas publicações públicas serão enviadas para o StatusNet.";
-$a->strings["Log in with StatusNet"] = "Autenticar-se no StatusNet";
-$a->strings["Copy the security code from StatusNet here"] = "Copie o código de segurança do StatusNet aqui";
-$a->strings["Cancel Connection Process"] = "Cancelar o processo de conexão";
-$a->strings["Current StatusNet API is"] = "A API atual do StatusNet é";
-$a->strings["Cancel StatusNet Connection"] = "Cancelar a conexão com o StatusNet";
-$a->strings["Currently connected to: "] = "Atualmente conectado como: ";
-$a->strings["If enabled all your public postings will be posted to the associated StatusNet account."] = "Caso esteja habilitado, todas as suas publicações públicas serão enviadas para a conta associada ao StatusNet.";
-$a->strings["Allow posting to StatusNet"] = "Permitir a publicação no StatusNet";
-$a->strings["Send public postings to StatusNet by default"] = "Enviar publicações públicas para o StatusNet por padrão";
-$a->strings["Clear OAuth configuration"] = "Limpar a configuração OAuth";
-$a->strings["Post to Twitter"] = "Publicar no Twitter";
-$a->strings["Twitter Posting Settings"] = "Configurações de publicação no Twitter";
-$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Não foi encontrado nenhum par de chaves de consumidor para o Twitter. Por favor, entre em contato com o administrador do site.";
-$a->strings["At this Friendika 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."] = "Nesta instalação do Friendika, o plugin do Twitter foi habilitado, mas você ainda não conectou sua conta local com a do Twitter. Para fazê-lo, clique no botão abaixo para obter um PIN do Twitter, que você deve copiar na caixa de texto abaixo e clicar no botão para enviar o formulário. Somente suas publicações públicas serão enviadas para o Twitter.";
-$a->strings["Log in with Twitter"] = "Autenticar-se no Twitter";
-$a->strings["Copy the PIN from Twitter here"] = "Copie o PIN do Twitter aqui";
-$a->strings["If enabled all your public postings will be posted to the associated Twitter account as well."] = "Caso esteja habilitado, suas publicações públicas serão replicadas na conta do Twitter que você configurou.";
-$a->strings["Send public postings to Twitter"] = "Enviar publicações públicas para o Twitter";
-$a->strings["Gender:"] = "Gênero:";
-$a->strings["Birthday:"] = "Aniversário";
-$a->strings["j F, Y"] = "j de F, Y";
-$a->strings["j F"] = "j de F";
-$a->strings["Age:"] = "Idade:";
-$a->strings["♥ Status:"] = "Estado ♥:";
-$a->strings["Homepage:"] = "Página web:";
-$a->strings["Religion:"] = "Religião:";
-$a->strings["About:"] = "Sobre:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interesses:";
-$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
-$a->strings["Musical interests:"] = "Interesses musicais:";
-$a->strings["Books, literature:"] = "Livros, literatura";
-$a->strings["Television:"] = "Televisão";
-$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
-$a->strings["Love/Romance:"] = "Amor/romance:";
-$a->strings["Work/employment:"] = "Trabalho/emprego:";
-$a->strings["School/education:"] = "Escola/educação:";
-$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
-$a->strings["Block immediately"] = "Bloquear imediatamente";
-$a->strings["Shady, spammer, self-marketer"] = "Sombreado, spammer, propagandista";
-$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca";
-$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
-$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
-$a->strings["Frequently"] = "Frequentemente";
-$a->strings["Hourly"] = "De hora em hora";
-$a->strings["Twice daily"] = "Duas vezes ao dia";
-$a->strings["Daily"] = "Diariamente";
-$a->strings["Weekly"] = "Semanalmente";
-$a->strings["Monthly"] = "Mensalmente";
-$a->strings["Male"] = "Masculino";
-$a->strings["Female"] = "Feminino";
-$a->strings["Currently Male"] = "Atualmente masculino";
-$a->strings["Currently Female"] = "Atualmente feminino";
-$a->strings["Mostly Male"] = "Masculino a maior parte do tempo";
-$a->strings["Mostly Female"] = "Feminino a maior parte do tempo";
-$a->strings["Transgender"] = "Transgênero";
-$a->strings["Intersex"] = "Intersexuado";
-$a->strings["Transsexual"] = "Transexual";
-$a->strings["Hermaphrodite"] = "Hermafrodita";
-$a->strings["Neuter"] = "Neutro";
-$a->strings["Non-specific"] = "Não especificado";
-$a->strings["Other"] = "Outro";
-$a->strings["Undecided"] = "Indeciso";
-$a->strings["Males"] = "Homens";
-$a->strings["Females"] = "Mulheres";
-$a->strings["Gay"] = "Gays";
-$a->strings["Lesbian"] = "Lésbicas";
-$a->strings["No Preference"] = "Sem preferência";
-$a->strings["Bisexual"] = "Bissexuais";
-$a->strings["Autosexual"] = "Autossexuais";
-$a->strings["Abstinent"] = "Abstinentes";
-$a->strings["Virgin"] = "Virgens";
-$a->strings["Deviant"] = "Desviantes";
-$a->strings["Fetish"] = "Fetiches";
-$a->strings["Oodles"] = "Abundância";
-$a->strings["Nonsexual"] = "Não sexual";
-$a->strings["Single"] = "Solteiro(a)";
-$a->strings["Lonely"] = "Solitário(a)";
-$a->strings["Available"] = "Disponível";
-$a->strings["Unavailable"] = "Não disponível";
-$a->strings["Dating"] = "Saindo com alguém";
-$a->strings["Unfaithful"] = "Infiel";
-$a->strings["Sex Addict"] = "Viciado(a) em sexo";
-$a->strings["Friends"] = "Amigos";
-$a->strings["Friends/Benefits"] = "Amigos/Benefícios";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Envolvido(a)";
-$a->strings["Married"] = "Casado(a)";
-$a->strings["Partners"] = "Parceiros";
-$a->strings["Cohabiting"] = "Coabitando";
-$a->strings["Happy"] = "Feliz";
-$a->strings["Not Looking"] = "Não estou procurando";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Traído(a)";
-$a->strings["Separated"] = "Separado(a)";
-$a->strings["Unstable"] = "Instável";
-$a->strings["Divorced"] = "Divorciado(a)";
-$a->strings["Widowed"] = "Viúvo(a)";
-$a->strings["Uncertain"] = "Incerto(a)";
-$a->strings["Complicated"] = "Complicado(a)";
-$a->strings["Don't care"] = "Não importa";
-$a->strings["Ask me"] = "Pergunte-me";
-$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
-$a->strings["Create a new group"] = "Criar um novo grupo";
-$a->strings["Everybody"] = "Todos";
-$a->strings["Logout"] = "Sair";
-$a->strings["Login"] = "Entrar";
-$a->strings["Home"] = "Pessoal";
-$a->strings["Apps"] = "Aplicações";
-$a->strings["Directory"] = "Diretório";
-$a->strings["Network"] = "Rede";
-$a->strings["Notifications"] = "Notificações";
-$a->strings["Manage"] = "Gerenciar";
-$a->strings["Settings"] = "Configurações";
-$a->strings["Logged out."] = "Saiu.";
-$a->strings["Miscellaneous"] = "Miscelânea";
-$a->strings["less than a second ago"] = "menos de um segundo atrás";
-$a->strings["year"] = "ano";
-$a->strings["years"] = "anos";
-$a->strings["month"] = "mês";
-$a->strings["months"] = "meses";
-$a->strings["week"] = "semana";
-$a->strings["weeks"] = "semanas";
-$a->strings["day"] = "dia";
-$a->strings["hour"] = "hora";
-$a->strings["hours"] = "horas";
-$a->strings["minute"] = "minuto";
-$a->strings["minutes"] = "minutos";
-$a->strings["second"] = "segundo";
-$a->strings["seconds"] = "segundos";
-$a->strings[" ago"] = " atrás";
-$a->strings["From: "] = "De: ";
-$a->strings["Image/photo"] = "Imagem/foto";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
-$a->strings["Visible To:"] = "Visível para:";
-$a->strings["everybody"] = "todos";
-$a->strings["Groups"] = "Grupos";
-$a->strings["Except For:"] = "Exceto para:";
-$a->strings["(no subject)"] = "(sem assunto)";
-$a->strings["You have a new follower at "] = "Você tem um novo acompanhante em ";
-$a->strings["View %s's profile"] = "Ver o perfil de %s";
-$a->strings["View in context"] = "Ver no contexto";
-$a->strings["See more posts like this"] = "Ver mais publicações como esta";
-$a->strings["See all %d comments"] = "Ver todos os comentários de %d";
-$a->strings["to"] = "para";
-$a->strings["Wall-to-Wall"] = "Mural-para-mural";
-$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural";
-$a->strings["View status"] = "Ver status";
-$a->strings["View profile"] = "Ver perfil";
-$a->strings["View photos"] = "Ver fotos";
-$a->strings["View recent"] = "Ver recentes";
-$a->strings["Send PM"] = "Enviar MP";
-$a->strings["%s likes this."] = "%s gostou disso.";
-$a->strings["%s doesn't like this."] = "%s não gostou disso.";
-$a->strings["%2\$d people like this."] = "%2\$d pessoas gostaram disso.";
-$a->strings["%2\$d people don't like this."] = "%2\$d pessoas não gostaram disso.";
-$a->strings["and"] = "e";
-$a->strings[", and %d other people"] = ", e mais %d outras pessoas";
-$a->strings["%s like this."] = "%s gostou disso.";
-$a->strings["%s don't like this."] = "%s não gostou disso.";
-$a->strings["Visible to everybody"] = "Visível para todos";
-$a->strings["Please enter a YouTube link:"] = "Por favor, digite o link do YouTube:";
-$a->strings["Please enter a video(.ogg) link/URL:"] = "Por favor, digite o link/URL do vídeo (.ogg):";
-$a->strings["Please enter an audio(.ogg) link/URL:"] = "Por favor, digite o link/URL do áudio (.ogg):";
-$a->strings["Where are you right now?"] = "Onde você está agora?";
-$a->strings["Enter a title for this item"] = "Digite um título para este item";
-$a->strings["Set title"] = "Definir o título";
-$a->strings["Delete this item?"] = "Excluir este item?";
-$a->strings["Create a New Account"] = "Criar uma nova conta";
-$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail:";
-$a->strings["Password: "] = "Senha:";
-$a->strings["Nickname/Email/OpenID: "] = "Identificação/E-mail/OpenID:";
-$a->strings["Password (if not OpenID): "] = "Senha (caso não use o OpenID):";
-$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
+$a->strings["Event Calendar"] = "Agenda de eventos";
+$a->strings["See all events"] = "Ver todos os eventos";
+$a->strings["Mark all events seen"] = "Marcar todos os eventos como vistos";
+$a->strings["Channel Select"] = "Seleção de canal";
+$a->strings["Manage Your Channels"] = "Gerencie os seus canais";
+$a->strings["Account/Channel Settings"] = "Configurações da conta/canal";
+$a->strings["Connections"] = "Conexões";
+$a->strings["Manage/Edit Friends and Connections"] = "Gerenciar/editar os amigos e as conexões";
+$a->strings["Admin"] = "Admin";
+$a->strings["Site Setup and Configuration"] = "Configuração do site";
+$a->strings["Nothing new here"] = "Nada de novo aqui";
+$a->strings["Please wait..."] = "Por favor, aguarde...";
$a->strings["prev"] = "anterior";
$a->strings["first"] = "primeiro";
$a->strings["last"] = "último";
$a->strings["next"] = "próximo";
-$a->strings["No contacts"] = "Nenhum contato";
-$a->strings["%d Contact"] = array(
- 0 => "Contato de %d",
- 1 => "Contatos de %d",
+$a->strings["older"] = "mais antigo";
+$a->strings["newer"] = "mais recente";
+$a->strings["No connections"] = "Nenhuma conexão";
+$a->strings["%d Connection"] = array(
+ 0 => "%d conexão",
+ 1 => "%d conexões",
);
-$a->strings["Connect"] = "Conectar";
-$a->strings["Location:"] = "Localização:";
-$a->strings[", "] = ", ";
-$a->strings["Status:"] = "Estado:";
+$a->strings["View Connections"] = "Ver conexões";
+$a->strings["poke"] = "cutucar";
+$a->strings["poked"] = "cutucado";
+$a->strings["ping"] = "pingar";
+$a->strings["pinged"] = "pingou";
+$a->strings["prod"] = "espetar";
+$a->strings["prodded"] = "espetou";
+$a->strings["slap"] = "estapear";
+$a->strings["slapped"] = "estapeou";
+$a->strings["finger"] = "dar um toque";
+$a->strings["fingered"] = "deu um toque";
+$a->strings["rebuff"] = "rebater";
+$a->strings["rebuffed"] = "rebateu";
+$a->strings["happy"] = "feliz";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "suave";
+$a->strings["tired"] = "cansado";
+$a->strings["perky"] = "animado/a";
+$a->strings["angry"] = "nervoso";
+$a->strings["stupified"] = "embasbacado/a";
+$a->strings["puzzled"] = "confuso/a";
+$a->strings["interested"] = "interessado";
+$a->strings["bitter"] = "amargo/a";
+$a->strings["cheerful"] = "alegre";
+$a->strings["alive"] = "vivo";
+$a->strings["annoyed"] = "aborrecido";
+$a->strings["anxious"] = "ansioso";
+$a->strings["cranky"] = "irritado/a";
+$a->strings["disturbed"] = "perturbado";
+$a->strings["frustrated"] = "frustrado";
+$a->strings["motivated"] = "motivado";
+$a->strings["relaxed"] = "relaxado";
+$a->strings["surprised"] = "surpreso";
$a->strings["Monday"] = "Segunda";
$a->strings["Tuesday"] = "Terça";
$a->strings["Wednesday"] = "Quarta";
@@ -833,12 +181,1572 @@ $a->strings["September"] = "Setembro";
$a->strings["October"] = "Outubro";
$a->strings["November"] = "Novembro";
$a->strings["December"] = "Dezembro";
+$a->strings["unknown.???"] = "desconhecido.???";
+$a->strings["bytes"] = "bytes";
+$a->strings["remove category"] = "remover categoria";
+$a->strings["remove from file"] = "remover do arquivo";
+$a->strings["Click to open/close"] = "Clique para abrir/fechar";
+$a->strings["link to source"] = "Link para a origem";
+$a->strings["Select a page layout: "] = "Selecione um layout de página:";
+$a->strings["default"] = "default";
+$a->strings["Page content type: "] = "Tipo de conteúdo da página: ";
+$a->strings["Select an alternate language"] = "Selecione um idioma alternativo";
+$a->strings["photo"] = "foto";
+$a->strings["event"] = "evento";
+$a->strings["status"] = "status";
+$a->strings["comment"] = "comentário";
+$a->strings["activity"] = "atividade";
+$a->strings["Design"] = "Design";
+$a->strings["Blocks"] = "Blocos";
+$a->strings["Menus"] = "Menus";
+$a->strings["Layouts"] = "Layouts";
+$a->strings["Pages"] = "Páginas";
+$a->strings["Image/photo"] = "Imagem/foto";
+$a->strings["Encrypted content"] = "Conteúdo criptografado";
+$a->strings["QR code"] = "código QR";
+$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escreveu a seguinte %2\$s %3\$s";
+$a->strings["post"] = "publicação";
+$a->strings["$1 wrote:"] = "$1 escreveu:";
+$a->strings["New window"] = "Nova janela";
+$a->strings["Open the selected location in a different window or browser tab"] = "Abre a localização selecionada em outra aba ou janela";
+$a->strings["General Features"] = "Recursos gerais";
+$a->strings["Content Expiration"] = "Expiração de conteúdo";
+$a->strings["Remove posts/comments and/or private messages at a future time"] = "Remover publicações/comentários e/ou mensagens privadas num momento futuro.";
+$a->strings["Multiple Profiles"] = "Múltiplos perfis";
+$a->strings["Ability to create multiple profiles"] = "Possibilidade de criar múltiplos perfis";
+$a->strings["Web Pages"] = "Páginas web";
+$a->strings["Provide managed web pages on your channel"] = "Fornece páginas web gerenciáveis no seu canal";
+$a->strings["Private Notes"] = "Notas privadas";
+$a->strings["Enables a tool to store notes and reminders"] = "Habilita uma ferramenta para guardar notas e lembretes";
+$a->strings["Extended Identity Sharing"] = "Compartilhamento estendido de identidade";
+$a->strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Compartilhar sua identidade com todos os websites na internet. Quando desabilitado, sua identidade é compartilhada apenas com outros sites na matrix.";
+$a->strings["Expert Mode"] = "Modo Expert";
+$a->strings["Enable Expert Mode to provide advanced configuration options"] = "O Modo Expert fornece opções de configurações avançadas";
+$a->strings["Premium Channel"] = "Canal premium";
+$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Permite definir restrições e termos para aqueles que se conectarem ao seu canal";
+$a->strings["Post Composition Features"] = "Recursos de composição de publicações";
+$a->strings["Richtext Editor"] = "Editor richtext";
+$a->strings["Enable richtext editor"] = "Habilita o editor richtext";
+$a->strings["Post Preview"] = "Pré-visualizar a publicação";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permite visualizar publicações e comentários antes de publicá-los";
+$a->strings["Automatically import channel content from other channels or feeds"] = "Importar automaticamente conteúdo de outros canais ou fontes";
+$a->strings["Even More Encryption"] = "Mais encriptação ainda";
+$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir encriptação opcional de conteúdo, ponta-a-ponta com uma chave secreta compartilhada";
+$a->strings["Network and Stream Filtering"] = "Filtragem de rede e fluxo";
+$a->strings["Search by Date"] = "Pesquisar por data";
+$a->strings["Ability to select posts by date ranges"] = "capacidade de selecionar publicações por intervalos de datas";
+$a->strings["Collections Filter"] = "Filtros de coleções";
+$a->strings["Enable widget to display Network posts only from selected collections"] = "Habilita widget para exibir publicações da rede apenas para determinadas coleções";
+$a->strings["Save search terms for re-use"] = "Termos de pesquisa salvos para reutilização";
+$a->strings["Network Personal Tab"] = "Aba de interações na rede";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilita uma aba para exibir apenas publicações da rede com as quais você interagiu";
+$a->strings["Network New Tab"] = "Aba de novidades da rede";
+$a->strings["Enable tab to display all new Network activity"] = "Habilita uma aba para exibir todas as novas atividades da rede";
+$a->strings["Affinity Tool"] = "Ferramenta de afinidade";
+$a->strings["Filter stream activity by depth of relationships"] = "Filtra o fluxo de atividades de acordo com o nível do relacionamento";
+$a->strings["Suggest Channels"] = "Sugerir canais";
+$a->strings["Show channel suggestions"] = "Exibir sugestões de canais";
+$a->strings["Post/Comment Tools"] = "Ferramentas de publicação/comentário";
+$a->strings["Edit Sent Posts"] = "Editar publicações enviadas";
+$a->strings["Edit and correct posts and comments after sending"] = "Edita e corrige publicações e comentários após terem sido enviados";
+$a->strings["Tagging"] = "Etiquetagem";
+$a->strings["Ability to tag existing posts"] = "Possibilidade de colocar etiquetas em publicações existentes";
+$a->strings["Post Categories"] = "Categorizar publicações";
+$a->strings["Add categories to your posts"] = "Adiciona categorias às suas publicações";
+$a->strings["Ability to file posts under folders"] = "Possibilidade de arquivar publicações em pastas";
+$a->strings["Dislike Posts"] = "Desgostar de publicações";
+$a->strings["Ability to dislike posts/comments"] = "Possibilidade de desgostar de publicações/comentários";
+$a->strings["Star Posts"] = "Destacar publicações";
+$a->strings["Ability to mark special posts with a star indicator"] = "Possibilidade de marcar publicações em destaque com uma estrela indicadora";
+$a->strings["Tag Cloud"] = "Nuvem de etiquetas";
+$a->strings["Provide a personal tag cloud on your channel page"] = "Fornece uma nuvem de etiquetas pessoais à página do seu canal";
+$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
+$a->strings["Block immediately"] = "Bloquear imediatamente";
+$a->strings["Shady, spammer, self-marketer"] = "Suspeito, spammer, propagandista";
+$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não tenho opinião a respeito";
+$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
+$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
+$a->strings["Frequently"] = "Frequentemente";
+$a->strings["Hourly"] = "De hora em hora";
+$a->strings["Twice daily"] = "Duas vezes ao dia";
+$a->strings["Daily"] = "Diariamente";
+$a->strings["Weekly"] = "Semanalmente";
+$a->strings["Monthly"] = "Mensalmente";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-mail";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/MI";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Miscellaneous"] = "Miscelânea";
+$a->strings["year"] = "ano";
+$a->strings["month"] = "mês";
+$a->strings["day"] = "dia";
+$a->strings["never"] = "nunca";
+$a->strings["less than a second ago"] = "menos de um segundo atrás";
+$a->strings["years"] = "anos";
+$a->strings["months"] = "meses";
+$a->strings["week"] = "semana";
+$a->strings["weeks"] = "semanas";
+$a->strings["days"] = "dias";
+$a->strings["hour"] = "hora";
+$a->strings["hours"] = "horas";
+$a->strings["minute"] = "minuto";
+$a->strings["minutes"] = "minutos";
+$a->strings["second"] = "segundo";
+$a->strings["seconds"] = "segundos";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "Início:";
+$a->strings["Finishes:"] = "Fim:";
+$a->strings["Location:"] = "Localização:";
+$a->strings["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."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
+$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
+$a->strings["All Channels"] = "Todos os canais";
+$a->strings["edit"] = "editar";
+$a->strings["Collections"] = "Coleções";
+$a->strings["Edit collection"] = "Editar coleção";
+$a->strings["Create a new collection"] = "Criar uma nova coleção";
+$a->strings["Channels not in any collection"] = "Canais que não estão em nenhuma coleção";
+$a->strings["Delete this item?"] = "Excluir este item?";
+$a->strings["Comment"] = "Comentar";
+$a->strings["show more"] = "exibir mais";
+$a->strings["show fewer"] = "exibir menos";
+$a->strings["+ Show More"] = "+ Exibir Mais";
+$a->strings["- Show Less"] = "- Exibir Menos";
+$a->strings["Password too short"] = "A senha é muito curta";
+$a->strings["Passwords do not match"] = "As senhas não correspondem";
+$a->strings["everybody"] = "todos";
+$a->strings["Secret Passphrase"] = "Frase secreta";
+$a->strings["Passphrase hint"] = "Dica da frase secreta";
+$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
+$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
+$a->strings["ago"] = "atrás";
+$a->strings["from now"] = "de agora";
+$a->strings["less than a minute"] = "menos de um minuto";
+$a->strings["about a minute"] = "aproximadamente um minuto";
+$a->strings["%d minutes"] = "%d minutos";
+$a->strings["about an hour"] = "aproximadamente uma hora";
+$a->strings["about %d hours"] = "aproximadamente %d horas";
+$a->strings["a day"] = "um dia";
+$a->strings["%d days"] = "%d dias";
+$a->strings["about a month"] = "aproximadamente um mês";
+$a->strings["%d months"] = "%d meses";
+$a->strings["about a year"] = "aproximadamente um ano";
+$a->strings["%d years"] = "%d anos";
+$a->strings[" "] = " ";
+$a->strings["timeago.numbers"] = "timeago.numbers";
+$a->strings["No recipient provided."] = "Falta o destinatário.";
+$a->strings["[no subject]"] = "[sem assunto]";
+$a->strings["Unable to determine sender."] = "Não foi possível determinar o remetente.";
+$a->strings["Stored post could not be verified."] = "Não foi possível verificar a publicação armazenada.";
+$a->strings["Profile Photos"] = "Fotos do perfil";
+$a->strings["Permission denied."] = "Permissão negada.";
+$a->strings["Item was not found."] = "O item não foi encontrado.";
+$a->strings["No source file."] = "Nenhum arquivo de origem.";
+$a->strings["Cannot locate file to replace"] = "Não foi possível locar o arquivo a ser substituído";
+$a->strings["Cannot locate file to revise/update"] = "Não foi possível localizar o arquivo a ser revisado/atualizado";
+$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
+$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Você atingiu o seu limite de %1$.0f Mbytes de armazenamento de anexos.";
+$a->strings["File upload failed. Possible system limit or action terminated."] = "Não foi possível enviar o arquivo. Provável limite do sistema ou a ação foi encerrada.";
+$a->strings["Stored file could not be verified. Upload failed."] = "Não foi possível verificar o arquivo armazenado. Falha no envio.";
+$a->strings["Path not available."] = "O caminho não está disponível.";
+$a->strings["Empty pathname"] = "O nome do caminho está em branco";
+$a->strings["duplicate filename or path"] = "nome de arquivo ou caminho duplicado";
+$a->strings["Path not found."] = "Caminho não encontrado.";
+$a->strings["mkdir failed."] = "mkdir falhou.";
+$a->strings["database storage failed."] = "armazenamento de banco de dados falhou.";
+$a->strings["%1\$s's bookmarks"] = "Links guardados de %1\$s";
+$a->strings["channel"] = "canal";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
+$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s agora está conectado com %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s";
+$a->strings["Select"] = "Selecionar";
+$a->strings["Delete"] = "Excluir";
+$a->strings["Message is verified"] = "A mensagem foi verificada";
+$a->strings["View %s's profile @ %s"] = "Ver o perfil de %s's @ %s";
+$a->strings["Categories:"] = "Categorias:";
+$a->strings["Filed under:"] = "Armazenado sob:";
+$a->strings[" from %s"] = "de %s";
+$a->strings["last edited: %s"] = "última edição: %s";
+$a->strings["Expires: %s"] = "Expira: %s";
+$a->strings["View in context"] = "Ver no contexto";
+$a->strings["Please wait"] = "Por favor, espere";
+$a->strings["remove"] = "remover";
+$a->strings["Loading..."] = "Carregando...";
+$a->strings["Delete Selected Items"] = "Excluir os itens selecionados";
+$a->strings["View Source"] = "Ver a fonte";
+$a->strings["Follow Thread"] = "Acompanhar a discussão";
+$a->strings["View Status"] = "Ver status";
+$a->strings["View Photos"] = "Ver fotos";
+$a->strings["Matrix Activity"] = "Atividade na matriz";
+$a->strings["Edit Contact"] = "Editar contato";
+$a->strings["Send PM"] = "Enviar MP";
+$a->strings["Poke"] = "Cutucar";
+$a->strings["%s likes this."] = "%s gostou disso.";
+$a->strings["%s doesn't like this."] = "%s não gostou disso.";
+$a->strings["%2\$d people like this."] = array(
+ 0 => "",
+ 1 => "%2\$d pessoas gostaram disso.",
+);
+$a->strings["%2\$d people don't like this."] = array(
+ 0 => "",
+ 1 => "%2\$d pessoas não gostaram disso.",
+);
+$a->strings["and"] = "e";
+$a->strings[", and %d other people"] = array(
+ 0 => "",
+ 1 => ", e mais %d outras pessoas",
+);
+$a->strings["%s like this."] = "%s gostou disso.";
+$a->strings["%s don't like this."] = "%s não gostou disso.";
+$a->strings["Visible to everybody"] = "Visível para todos";
+$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
+$a->strings["Please enter a video link/URL:"] = "Por favor, digite o link/URL do vídeo:";
+$a->strings["Please enter an audio link/URL:"] = "Por favor, digite o link/URL do áudio:";
+$a->strings["Tag term:"] = "Etiqueta:";
+$a->strings["Save to Folder:"] = "Salvar para a pasta:";
+$a->strings["Where are you right now?"] = "Onde você está agora?";
+$a->strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM";
+$a->strings["Preview"] = "Pré-visualizar";
+$a->strings["Share"] = "Compartilhar";
+$a->strings["Page link title"] = "Título do link da página";
+$a->strings["Upload photo"] = "Enviar foto";
+$a->strings["upload photo"] = "enviar foto";
+$a->strings["Attach file"] = "Anexar arquivo";
+$a->strings["attach file"] = "anexar arquivo";
+$a->strings["Insert web link"] = "Inserir link web";
+$a->strings["web link"] = "link web";
+$a->strings["Insert video link"] = "Inserir link de vídeo";
+$a->strings["video link"] = "link de vídeo";
+$a->strings["Insert audio link"] = "Inserir link de áudio";
+$a->strings["audio link"] = "link de áudio";
+$a->strings["Set your location"] = "Definir sua localização";
+$a->strings["set location"] = "definir localização";
+$a->strings["Clear browser location"] = "Limpar a localização do navegador";
+$a->strings["clear location"] = "limpar a localização";
+$a->strings["Set title"] = "Definir o título";
+$a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)";
+$a->strings["Permission settings"] = "Configurações de permissão";
+$a->strings["permissions"] = "permissões";
+$a->strings["Public post"] = "Publicação pública";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
+$a->strings["Set expiration date"] = "Definir data de expiração";
+$a->strings["Encrypt text"] = "Encriptar texto";
+$a->strings["OK"] = "Ok";
+$a->strings["Cancel"] = "Cancelar";
+$a->strings["Commented Order"] = "Recentes e comentados";
+$a->strings["Sort by Comment Date"] = "Ordenar pela data do último comentário";
+$a->strings["Posted Order"] = "Recentemente publicados";
+$a->strings["Sort by Post Date"] = "Ordenar pela data da publicação";
+$a->strings["Personal"] = "Pessoal";
+$a->strings["Posts that mention or involve you"] = "Publicações que mencionam ou envolvem você";
+$a->strings["New"] = "Novo";
+$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data";
+$a->strings["Starred"] = "Estrelados";
+$a->strings["Favourite Posts"] = "Publicações favoritas";
+$a->strings["Spam"] = "Spam";
+$a->strings["Posts flagged as SPAM"] = "Publicações marcadas como SPAM";
+$a->strings["Channel"] = "Canal";
+$a->strings["Status Messages and Posts"] = "Mensagens de status e publicações";
+$a->strings["About"] = "Sobre";
+$a->strings["Profile Details"] = "Detalhes do perfil";
+$a->strings["Photo Albums"] = "Álbuns de fotos";
+$a->strings["Files and Storage"] = "Arquivos e armazenamento";
+$a->strings["Chatrooms"] = "Salas de bate-papo";
+$a->strings["Events and Calendar"] = "Eventos e calendário";
+$a->strings["Saved Bookmarks"] = "Links guardados";
+$a->strings["Manage Webpages"] = "Administrar páginas web";
+$a->strings["Unable to obtain identity information from database"] = "Não foi possível obter a informação da identidade a partir do banco de dados";
+$a->strings["Empty name"] = "O nome está em branco";
+$a->strings["Name too long"] = "O nome é muito grande";
+$a->strings["No account identifier"] = "Nenhuma identificação da conta";
+$a->strings["Nickname is required."] = "É necessário informar o apelido.";
+$a->strings["Nickname has unsupported characters or is already being used on this site."] = "A identificação possui caracteres não suportados ou já está sendo usada nesse site.";
+$a->strings["Unable to retrieve created identity"] = "Não foi possível recuperar a identidade criada";
+$a->strings["Default Profile"] = "Perfil padrão";
+$a->strings["Requested channel is not available."] = "Canal solicitado não está disponível.";
+$a->strings["Requested profile is not available."] = "O perfil solicitado não está disponível.";
+$a->strings[" Sorry, you don't have the permission to view this profile. "] = "Desculpe, você não tem permissão para ver este perfil.";
+$a->strings["Change profile photo"] = "Mudar a foto do perfil";
+$a->strings["Profiles"] = "Perfis";
+$a->strings["Manage/edit profiles"] = "Administrar/editar perfis";
+$a->strings["Create New Profile"] = "Criar um novo perfil";
+$a->strings["Edit Profile"] = "Editar perfil";
+$a->strings["Profile Image"] = "Imagem do perfil";
+$a->strings["visible to everybody"] = "visível para todos";
+$a->strings["Edit visibility"] = "Editar a visibilidade";
+$a->strings["Gender:"] = "Gênero:";
+$a->strings["Status:"] = "Situação:";
+$a->strings["Homepage:"] = "Página web:";
+$a->strings["Online Now"] = "Online agora";
$a->strings["g A l F d"] = "G l d F";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[hoje]";
$a->strings["Birthday Reminders"] = "Lembres de aniversário";
$a->strings["Birthdays this week:"] = "Aniversários nesta semana:";
-$a->strings["(Adjusted for local time)"] = "(Ajustado para a hora local)";
-$a->strings["[today]"] = "[hoje]";
-$a->strings["bytes"] = "bytes";
-$a->strings["link to source"] = "exibir a origem";
+$a->strings["[No description]"] = "[Sem descrição]";
+$a->strings["Event Reminders"] = "Lembretes de eventos";
+$a->strings["Events this week:"] = "Eventos nesta semana:";
+$a->strings["Profile"] = "Perfil";
+$a->strings["Full Name:"] = "Nome completo:";
+$a->strings["j F, Y"] = "j de F, Y";
+$a->strings["j F"] = "j de F";
+$a->strings["Birthday:"] = "Aniversário:";
+$a->strings["Age:"] = "Idade:";
+$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Preferência sexual:";
+$a->strings["Hometown:"] = "Cidade natal:";
+$a->strings["Tags:"] = "Etiquetas:";
+$a->strings["Political Views:"] = "Posição política:";
+$a->strings["Religion:"] = "Religião:";
+$a->strings["About:"] = "Sobre:";
+$a->strings["Hobbies/Interests:"] = "Hobbies/Interesses:";
+$a->strings["Likes:"] = "Gosta de:";
+$a->strings["Dislikes:"] = "Não gosta de:";
+$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
+$a->strings["My other channels:"] = "Meus outros canais:";
+$a->strings["Musical interests:"] = "Interesses musicais:";
+$a->strings["Books, literature:"] = "Livros, literatura:";
+$a->strings["Television:"] = "Televisão:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
+$a->strings["Love/Romance:"] = "Amor/romance:";
+$a->strings["Work/employment:"] = "Trabalho/emprego:";
+$a->strings["School/education:"] = "Escola/educação:";
+$a->strings["Private Message"] = "Mensagem privada";
+$a->strings["Edit"] = "Editar";
+$a->strings["save to folder"] = "salvar na pasta";
+$a->strings["add star"] = "destacar";
+$a->strings["remove star"] = "remover destaque";
+$a->strings["toggle star status"] = "alternar destaque";
+$a->strings["starred"] = "destacado";
+$a->strings["add tag"] = "adicionar etiqueta";
+$a->strings["I like this (toggle)"] = "Eu gostei disso (alterna)";
+$a->strings["like"] = "gostei";
+$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alterna)";
+$a->strings["dislike"] = "não gostei";
+$a->strings["Share this"] = "Compartilhar isso";
+$a->strings["share"] = "compartilhar";
+$a->strings["View %s's profile - %s"] = "Ver o perfil de %s - %s";
+$a->strings["to"] = "para";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Mural-para-mural";
+$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural";
+$a->strings["Bookmark Links"] = "Guardar links";
+$a->strings["%d comment"] = array(
+ 0 => "%d comentário",
+ 1 => "%d comentários",
+);
+$a->strings["This is you"] = "Este(a) é você";
+$a->strings["Submit"] = "Enviar";
+$a->strings["Bold"] = "Negrito";
+$a->strings["Italic"] = "Itálico";
+$a->strings["Underline"] = "Sublinhado";
+$a->strings["Quote"] = "Citação";
+$a->strings["Code"] = "Código";
+$a->strings["Image"] = "Imagem";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Vídeo";
+$a->strings["Public Timeline"] = "Linha do tempo pública";
+$a->strings["view full size"] = "ver na tela inteira";
+$a->strings["created a new post"] = "criar uma nova publicação";
+$a->strings["commented on %s's post"] = "comentou a publicação de %s";
+$a->strings["Male"] = "Masculino";
+$a->strings["Female"] = "Feminino";
+$a->strings["Currently Male"] = "Atualmente masculino";
+$a->strings["Currently Female"] = "Atualmente feminino";
+$a->strings["Mostly Male"] = "Masculino a maior parte do tempo";
+$a->strings["Mostly Female"] = "Feminino a maior parte do tempo";
+$a->strings["Transgender"] = "Transgênero";
+$a->strings["Intersex"] = "Intersexuado";
+$a->strings["Transsexual"] = "Transexual";
+$a->strings["Hermaphrodite"] = "Hermafrodita";
+$a->strings["Neuter"] = "Neutro";
+$a->strings["Non-specific"] = "Não específico";
+$a->strings["Other"] = "Outro";
+$a->strings["Undecided"] = "Indeciso";
+$a->strings["Males"] = "Homens";
+$a->strings["Females"] = "Mulheres";
+$a->strings["Gay"] = "Gays";
+$a->strings["Lesbian"] = "Lésbicas";
+$a->strings["No Preference"] = "Sem preferência";
+$a->strings["Bisexual"] = "Bissexuais";
+$a->strings["Autosexual"] = "Autossexuais";
+$a->strings["Abstinent"] = "Abstinentes";
+$a->strings["Virgin"] = "Virgens";
+$a->strings["Deviant"] = "Desviantes";
+$a->strings["Fetish"] = "Fetiches";
+$a->strings["Oodles"] = "Abundância";
+$a->strings["Nonsexual"] = "Não sexuais";
+$a->strings["Single"] = "Solteiro(a)";
+$a->strings["Lonely"] = "Solitário(a)";
+$a->strings["Available"] = "Disponível";
+$a->strings["Unavailable"] = "Não disponível";
+$a->strings["Has crush"] = "Tem uma paixão";
+$a->strings["Infatuated"] = "Apaixonado";
+$a->strings["Dating"] = "Saindo com alguém";
+$a->strings["Unfaithful"] = "Infiel";
+$a->strings["Sex Addict"] = "Viciado(a) em sexo";
+$a->strings["Friends/Benefits"] = "Amigos com benefícios";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Envolvido(a)";
+$a->strings["Married"] = "Casado(a)";
+$a->strings["Imaginarily married"] = "Casado imaginariamente";
+$a->strings["Partners"] = "Parceiros";
+$a->strings["Cohabiting"] = "Coabitando";
+$a->strings["Common law"] = "Direito comum";
+$a->strings["Happy"] = "Feliz";
+$a->strings["Not looking"] = "Não estou procurando";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Traído(a)";
+$a->strings["Separated"] = "Separado(a)";
+$a->strings["Unstable"] = "Instável";
+$a->strings["Divorced"] = "Divorciado(a)";
+$a->strings["Imaginarily divorced"] = "Divorciado imaginariamente";
+$a->strings["Widowed"] = "Viúvo(a)";
+$a->strings["Uncertain"] = "Incerto(a)";
+$a->strings["It's complicated"] = "É complicado";
+$a->strings["Don't care"] = "Não importa";
+$a->strings["Ask me"] = "Pergunte-me";
+$a->strings["Missing room name"] = "Nome da sala vazio";
+$a->strings["Duplicate room name"] = "Nome da sala duplicado";
+$a->strings["Invalid room specifier."] = "Especificador de sala inválido.";
+$a->strings["Room not found."] = "A sala não foi encontrada.";
+$a->strings["Room is full"] = "A sala está cheia";
+$a->strings["Tags"] = "Etiquetas";
+$a->strings["Keywords"] = "Palavras-chave";
+$a->strings["have"] = "tenho";
+$a->strings["has"] = "tem";
+$a->strings["want"] = "quero";
+$a->strings["wants"] = "quer";
+$a->strings["likes"] = "gosta";
+$a->strings["dislikes"] = "desgosta";
+$a->strings["Logged out."] = "Você saiu.";
+$a->strings["Failed authentication"] = "Não foi possível autenticar";
+$a->strings["Login failed."] = "Não foi possível entrar.";
+$a->strings["Not a valid email address"] = "Não é um endereço de e-mail válido";
+$a->strings["Your email domain is not among those allowed on this site"] = "O domínio do seu e-mail não está entre os permitidos neste site";
+$a->strings["Your email address is already registered at this site."] = "O seu endereço de e-mail já está registrado neste site.";
+$a->strings["An invitation is required."] = "É necessário um convite.";
+$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
+$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
+$a->strings["Failed to store account information."] = "Não foi possível armazenar a informação da conta.";
+$a->strings["Registration request at %s"] = "Solicitação de registro em %s";
+$a->strings["Administrator"] = "Administrador";
+$a->strings["your registration password"] = "sua senha de registro";
+$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
+$a->strings["Account approved."] = "A conta foi aprovada.";
+$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
+$a->strings["Sort Options"] = "Opções de ordenação";
+$a->strings["Alphabetic"] = "Alfabética";
+$a->strings["Reverse Alphabetic"] = "Alfabética reversa";
+$a->strings["Newest to Oldest"] = "Das mais recentes para as mais antigas";
+$a->strings["Enable Safe Search"] = "Habilitar busca tranquila";
+$a->strings["Disable Safe Search"] = "Desabilitar busca tranquila";
+$a->strings["Safe Mode"] = "Modo tranquilo";
+$a->strings["Red Matrix Notification"] = "Notificação da Red Matrix";
+$a->strings["redmatrix"] = "redmatrix";
+$a->strings["Thank You,"] = "Obrigado(a),";
+$a->strings["%s Administrator"] = "Administrador de %s";
+$a->strings["%s "] = "%s ";
+$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Notify] Nova mensagem recebida em %s";
+$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s te enviou uma nova mensagem privada em %3\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s enviou %2\$s para você.";
+$a->strings["a private message"] = "uma mensagem privada";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visite %s para ver e/ou responder as suas mensagens privadas.";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]um/a %4\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]%5\$s de %4\$s[/zrl]";
+$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]seu %4\$s[/zrl]";
+$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Comentário na conversa #%1\$d por %2\$s";
+$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentou em um item/conversa que você acompanha.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visite %s para ver e/ou responder a conversa.";
+$a->strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notify] %s publicou no mural do seu perfil";
+$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicou no mural do seu perfil em %3\$s";
+$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicou no [zrl=%3\$s]seu mural[/zrl]";
+$a->strings["[Red:Notify] %s tagged you"] = "[Red:Notify] %s etiquetou você";
+$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s mencionou você em %3\$s";
+$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]mencionou você[/zrl].";
+$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Notify] %1\$s cutucou você";
+$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s cutucou você em %3\$s";
+$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]cutucou você[/zrl].";
+$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Notify] %s etiquetou a sua publicação";
+$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s marcou seu post em %3\$s";
+$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s marcou [zrl=%3\$s]seu post[/zrl]";
+$a->strings["[Red:Notify] Introduction received"] = "[Red:Notify] Você recebeu uma apresentação";
+$a->strings["%1\$s, you've received an introduction from '%2\$s' at %3\$s"] = "%1\$s, você recebeu uma apresentação de '%2\$s' em %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]an introduction[/zrl] from %3\$s."] = "%1\$s, você recebeu [zrl=%2\$s]uma apresentação[/zrl] de %3\$s.";
+$a->strings["You may visit their profile at %s"] = "Você pode visitar seu perfil em %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Por favor, visite %s para aprovar ou rejeitar a apresentação.";
+$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Notify] Foi recebida uma sugestão de amizade";
+$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, você recebeu uma sugestão de amizade de '%2\$s' em %3\$s";
+$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, você recebeu [zrl=%2\$s]uma sugestão de amizade[/zrl] com %3\$s de %4\$s.";
+$a->strings["Name:"] = "Nome:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprovar ou rejeitar a sugestão.";
+$a->strings["Image exceeds website size limit of %lu bytes"] = "A imagem excede o limite de tamanho do site, que é de %";
+$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
+$a->strings["Unable to process image"] = "Não foi possível processar a imagem";
+$a->strings["Photo storage failed."] = "Não foi possível armazenar a foto.";
+$a->strings["Upload New Photos"] = "Enviar novas fotos";
+$a->strings["Edit File properties"] = "Editar propriedades do arquivo";
+$a->strings["%d invitation available"] = array(
+ 0 => "%d convite disponível",
+ 1 => "%d convites disponíveis",
+);
+$a->strings["Find Channels"] = "Pesquisar canais";
+$a->strings["Enter name or interest"] = "Digite um nome ou interesse";
+$a->strings["Connect/Follow"] = "Conectar/Acompanhar";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Por exemplo: José da Silva, Pescaria";
+$a->strings["Find"] = "Pesquisar";
+$a->strings["Channel Suggestions"] = "Sugestões de canais";
+$a->strings["Random Profile"] = "Perfil aleatório";
+$a->strings["Invite Friends"] = "Convidar amigos";
+$a->strings["%d connection in common"] = array(
+ 0 => "%d conexão em comum",
+ 1 => "%d conexões em comum",
+);
+$a->strings["New Page"] = "Nova página";
+$a->strings["Click here to upgrade."] = "Clique aqui para atualizar.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
+$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível para o seu plano de assinatura.";
+$a->strings["Channel is blocked on this site."] = "O canal está bloqueado neste site.";
+$a->strings["Channel location missing."] = "A localização do canal foi perdida";
+$a->strings["Response from remote channel was incomplete."] = "A resposta do canal remoto está incompleta.";
+$a->strings["Channel discovery failed."] = "A descoberta de canais falhou.";
+$a->strings["local account not found."] = "a conta local não foi encontrada.";
+$a->strings["Cannot connect to yourself."] = "Não é possível conectar-se consigo mesmo.";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão.";
+$a->strings["Default"] = "Default";
+$a->strings["Embedded content"] = "Conteúdo incorporado";
+$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
+$a->strings["Can view my \"public\" stream and posts"] = "Pode ver meus fluxo e publicações \"públicos\"";
+$a->strings["Can view my \"public\" channel profile"] = "Pode ver o perfil \"público\" do meu canal";
+$a->strings["Can view my \"public\" photo albums"] = "Pode ver meus álbuns de fotos \"públicos\"";
+$a->strings["Can view my \"public\" address book"] = "Pode ver meu livro de endereços \"público\"";
+$a->strings["Can view my \"public\" file storage"] = "Pode ver meu armazenamento de arquivos \"público\"";
+$a->strings["Can view my \"public\" pages"] = "Pode ver minhas páginas \"públicas\"";
+$a->strings["Can send me their channel stream and posts"] = "Pode me enviar seus fluxo e publicações";
+$a->strings["Can post on my channel page (\"wall\")"] = "Pode publicar na página do meu canal (\"mural\")";
+$a->strings["Can comment on my posts"] = "Pode comentar minhas publicações";
+$a->strings["Can send me private mail messages"] = "Pode me enviar mensagens privadas";
+$a->strings["Can post photos to my photo albums"] = "Pode publicar fotos nos meus álbuns de fotos";
+$a->strings["Can forward to all my channel contacts via post @mentions"] = "Pode encaminha para todos os contatos do meu canal via @menções na publicação";
+$a->strings["Advanced - useful for creating group forum channels"] = "Avançado - útil para criar canais de fóruns de grupos";
+$a->strings["Can chat with me (when available)"] = "Pode conversar comigo (quando disponívei)";
+$a->strings["Can write to my \"public\" file storage"] = "Pode escrever em meu armazenamento de arquivos \"público\"";
+$a->strings["Can edit my \"public\" pages"] = "Pode editar minhas páginas \"públicas\"";
+$a->strings["Can source my \"public\" posts in derived channels"] = "Pode usar minhas publicações \"públicas\" como fonte para canais derivados";
+$a->strings["Somewhat advanced - very useful in open communities"] = "Avançado - muito útil em comunidades abertas";
+$a->strings["Can send me bookmarks"] = "Pode me enviar links guardados";
+$a->strings["Can administer my channel resources"] = "Pode administrar os recursos do meu canal";
+$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo";
+$a->strings["Permission denied"] = "Permissão negada";
+$a->strings["(Unknown)"] = "(Desconhecido)";
+$a->strings["Item not found."] = "O item não foi encontrado.";
+$a->strings["Collection not found."] = "A coleção não foi encontrada.";
+$a->strings["Collection is empty."] = "A coleção está vazia.";
+$a->strings["Collection: %s"] = "Coleção: %s";
+$a->strings["Connection: %s"] = "Conexão: %s";
+$a->strings["Connection not found."] = "A conexão não foi encontrada.";
+$a->strings["Invalid data packet"] = "Pacote de dados inválido";
+$a->strings["Unable to verify channel signature"] = "Não foi possível verificar a assinatura do canal";
+$a->strings["Unable to verify site signature for %s"] = "Não foi possível verificar a assinatura do site para %s";
+$a->strings["No channel."] = "Nenhum canal.";
+$a->strings["Common connections"] = "Conexões em comum";
+$a->strings["No connections in common."] = "Nenhuma conexão em comum.";
+$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editar o evento";
+$a->strings["Create New Event"] = "Criar um novo evento";
+$a->strings["Previous"] = "Anterior";
+$a->strings["Next"] = "Próximo";
+$a->strings["hour:minute"] = "hora:minuto";
+$a->strings["Event details"] = "Detalhes do evento";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "O formato é %s %s. A data de início e o título são obrigatórios.";
+$a->strings["Event Starts:"] = "Início do evento:";
+$a->strings["Required"] = "Obrigatório";
+$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante";
+$a->strings["Event Finishes:"] = "Término do evento:";
+$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
+$a->strings["Description:"] = "Descrição:";
+$a->strings["Title:"] = "Título:";
+$a->strings["Share this event"] = "Compartilhar este evento";
+$a->strings["Thing updated"] = "A coisa foi atualizada";
+$a->strings["Object store: failed"] = "Armazenamento do objeto: falhou";
+$a->strings["Thing added"] = "A coisa foi adicionada";
+$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
+$a->strings["Show Thing"] = "Exibir coisa";
+$a->strings["item not found."] = "o item não foi encontrado";
+$a->strings["Edit Thing"] = "Editar coisa";
+$a->strings["Select a profile"] = "Selecione um perfil";
+$a->strings["Select a category of stuff. e.g. I ______ something"] = "Escolha uma categoria de coisas. e.g. Eu ______ algo";
+$a->strings["Post an activity"] = "Publique uma atividade";
+$a->strings["Only sends to viewers of the applicable profile"] = "Envia apenas para a audiência do perfil aplicável";
+$a->strings["Name of thing e.g. something"] = "Nome da coisa e.g. coisinha";
+$a->strings["URL of thing (optional)"] = "URL da coisa (opcional)";
+$a->strings["URL for photo of thing (optional)"] = "URL para foto da coisa (opcional)";
+$a->strings["Add Thing to your Profile"] = "Adicionar a coisa ao seu perfil";
+$a->strings["Total invitation limit exceeded."] = "Foi excedido o número total de convites.";
+$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
+$a->strings["Please join us on Red"] = "Por favor, una-se a nós na Red";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Você excedeu o limite de convites. Por favor, entre em contato com o administrador do site.";
+$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
+$a->strings["%d message sent."] = array(
+ 0 => "%d mensagem enviada.",
+ 1 => "%d mensagens enviadas.",
+);
+$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
+$a->strings["Send invitations"] = "Enviar convites.";
+$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
+$a->strings["Your message:"] = "Sua mensagem:";
+$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised communication and information tool."] = "Você está convidado a juntar-se a mim e alguns outros amigos próximos na Red Matrix - uma revolucionária nova ferramenta para comunicação e informação descentralizada.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você deve informar este código de convite: \$invite_code";
+$a->strings["Please visit my channel at"] = "Por favor, visite o meu canal em";
+$a->strings["Once you have registered (on ANY Red Matrix site - they are all inter-connected), please connect with my Red Matrix channel address:"] = "Após você se registrar (em qualquer site da Red Matrix - eles são todos interconectados!), peço que conecte-se comigo usando o endereço do meu canal:";
+$a->strings["Click the [Register] link on the following page to join."] = "Clique no link [Registrar] na seguinte página para participar.";
+$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Para maiores informações sobre o Projeto Red Matrix e porque ele tem potencial para mudar a Internet como a conhecemos, por favor visite: http://getzot.com";
+$a->strings["Name is required"] = "O nome é obrigatório";
+$a->strings["Key and Secret are required"] = "A chave e o segredo são obrigatórios";
+$a->strings["Update"] = "Atualizar";
+$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada.";
+$a->strings["Password changed."] = "A senha foi modificada.";
+$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente.";
+$a->strings["Not valid email."] = "Não é um e-mail válido";
+$a->strings["Protected email address. Cannot change to that email."] = "Endereço de e-mail protegido. Não é possível mudar para esse e-mail.";
+$a->strings["System failure storing new email. Please try again."] = "Falha do sistema ao armazenar novo e-mail. Por favor, tente novamente.";
+$a->strings["Settings updated."] = "As configurações foram atualizadas.";
+$a->strings["Add application"] = "Adicionar aplicação";
+$a->strings["Name"] = "Nome";
+$a->strings["Name of application"] = "Nome da aplicação";
+$a->strings["Consumer Key"] = "Chave de consumidor";
+$a->strings["Automatically generated - change if desired. Max length 20"] = "Gerado automaticamente - troque se desejável. Comprimento máximo 20";
+$a->strings["Consumer Secret"] = "Segredo de consumidor";
+$a->strings["Redirect"] = "Redirecionamento";
+$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirecionamento - deixe em branco, a não ser que sua aplicação especificamente requeira isso";
+$a->strings["Icon url"] = "URL do ícone";
+$a->strings["Optional"] = "Opcional";
+$a->strings["You can't edit this application."] = "Você não pode editar esta aplicação.";
+$a->strings["Connected Apps"] = "Aplicações conectadas";
+$a->strings["Client key starts with"] = "Chave do cliente começa com";
+$a->strings["No name"] = "Sem nome";
+$a->strings["Remove authorization"] = "Remover autorização";
+$a->strings["No feature settings configured"] = "Não foi definida nenhuma configuração do recurso";
+$a->strings["Feature Settings"] = "Configurações do recurso";
+$a->strings["Account Settings"] = "Configurações da conta";
+$a->strings["Password Settings"] = "Configurações da senha";
+$a->strings["New Password:"] = "Nova senha:";
+$a->strings["Confirm:"] = "Confirme:";
+$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la";
+$a->strings["Email Address:"] = "Endereço de e-mail:";
+$a->strings["Remove Account"] = "Remover conta";
+$a->strings["Warning: This action is permanent and cannot be reversed."] = "Atenção: Esta ação é permanente e não pode ser revertida.";
+$a->strings["Off"] = "Desligado";
+$a->strings["On"] = "Ligado";
+$a->strings["Additional Features"] = "Recursos adicionais";
+$a->strings["Connector Settings"] = "Configurações do conector";
+$a->strings["No special theme for mobile devices"] = "Sem tema especial para aparelhos móveis";
+$a->strings["Display Settings"] = "Configurações de exibição";
+$a->strings["Display Theme:"] = "Tema do perfil:";
+$a->strings["Mobile Theme:"] = "Tema móvel:";
+$a->strings["Update browser every xx seconds"] = "Atualizar navegador a cada xx segundos";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sem máximo";
+$a->strings["Maximum number of conversations to load at any time:"] = "Número máximo permitido de conversas carregadas:";
+$a->strings["Maximum of 100 items"] = "Máximo de 100 itens";
+$a->strings["Don't show emoticons"] = "Não exibir emoticons";
+$a->strings["Do not view remote profiles in frames"] = "Não exibir perfis remotos em frames";
+$a->strings["By default open in a sub-window of your own site"] = "Por padrão, abrir em uma sub-janela do seu próprio site";
+$a->strings["Nobody except yourself"] = "Ninguém exceto você mesmo";
+$a->strings["Only those you specifically allow"] = "Apenas quem você der permissão";
+$a->strings["Anybody in your address book"] = "Qualquer um nos seus contatos";
+$a->strings["Anybody on this website"] = "Qualquer um neste site";
+$a->strings["Anybody in this network"] = "Qualquer um nesta rede";
+$a->strings["Anybody authenticated"] = "Qualquer um autenticado";
+$a->strings["Anybody on the internet"] = "Qualquer um na internet";
+$a->strings["Publish your default profile in the network directory"] = "Publicar seu perfil padrão no diretório da rede?";
+$a->strings["No"] = "Não";
+$a->strings["Yes"] = "Sim";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir sugerir você como amigo potencial para outros membros?";
+$a->strings["or"] = "ou";
+$a->strings["Your channel address is"] = "O endereço do seu canal é";
+$a->strings["Channel Settings"] = "Configurações do canal";
+$a->strings["Basic Settings"] = "Configurações básicas";
+$a->strings["Your Timezone:"] = "Seu fuso horário:";
+$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:";
+$a->strings["Use Browser Location:"] = "Usar localizador do navegador:";
+$a->strings["Adult Content"] = "Conteúdo adulto";
+$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal frequentemente ou regularmente publica conteúdo adulto. (Por favor marque qualquer material adulto e/ou nudez com #NSFW)";
+$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade";
+$a->strings["Hide my online presence"] = "Esconda minha presença online";
+$a->strings["Prevents displaying in your profile that you are online"] = "Previne exibir em seu perfil que você está online";
+$a->strings["Simple Privacy Settings:"] = "Configurações de privacidade simples:";
+$a->strings["Very Public - extremely permissive (should be used with caution)"] = "Muito público - extremamente permissivo (deve ser usado com cuidado)";
+$a->strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - público por padrão, privado quando desejável (similar às permissões de redes sociais, mas com melhor privacidade)";
+$a->strings["Private - default private, never open or public"] = "Privado - privado por padrão, nunca aberto ou público";
+$a->strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por padrão bloquado de/para todos";
+$a->strings["Allow others to tag your posts"] = "Permitir que outros etiquetem suas publicações";
+$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Frequentemente utilizado pela comunidade para retroativamente sinalizar conteúdo inapropriado";
+$a->strings["Advanced Privacy Settings"] = "Configurações de privacidade avançadas";
+$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:";
+$a->strings["May reduce spam activity"] = "Pode reduzir a frequência de spam";
+$a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
+$a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
+$a->strings["Maximum private messages per day from unknown people:"] = "Máximo número de mensagens privadas por dia de pessoas desconhecidas:";
+$a->strings["Useful to reduce spamming"] = "Útil para reduzir a frequência de spam";
+$a->strings["Notification Settings"] = "Configurações de notificação";
+$a->strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:";
+$a->strings["accepting a friend request"] = "aceitar um pedido de amizade";
+$a->strings["joining a forum/community"] = "associar-se a um fórum/comunidade";
+$a->strings["making an interesting profile change"] = "modificar algo interessante em seu perfil";
+$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação quando:";
+$a->strings["You receive an introduction"] = "Você recebeu uma apresentação";
+$a->strings["Your introductions are confirmed"] = "Suas solicitações forem confirmadas";
+$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil";
+$a->strings["Someone writes a followup comment"] = "Alguém comentou a sua mensagem";
+$a->strings["You receive a private message"] = "Você recebeu uma mensagem privada";
+$a->strings["You receive a friend suggestion"] = "Você recebe uma sugestão de amizade";
+$a->strings["You are tagged in a post"] = "Você é mencionado num post";
+$a->strings["You are poked/prodded/etc. in a post"] = "Você foi cutucado/espetado/etc. numa publicação";
+$a->strings["Advanced Account/Page Type Settings"] = "Configurações avançadas de conta/tipo de página";
+$a->strings["Change the behaviour of this account for special situations"] = "Mudar o comportamento dessa conta em situações especiais";
+$a->strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Por favor, habilite o modo expert (em Configurações > Recursos adicionais) para ajustar!";
+$a->strings["Miscellaneous Settings"] = "Configurações miscelâneas";
+$a->strings["Personal menu to display in your channel pages"] = "Menu pessoal para exibir nas páginas dos seus canais";
+$a->strings["Menu updated."] = "Menu atualizado.";
+$a->strings["Unable to update menu."] = "Não foi possível atualizar o menu.";
+$a->strings["Menu created."] = "Menu criado.";
+$a->strings["Unable to create menu."] = "Não foi possível criar o menu.";
+$a->strings["Manage Menus"] = "Administrar menus";
+$a->strings["Drop"] = "Descartar";
+$a->strings["Create a new menu"] = "Criar um novo menu";
+$a->strings["Delete this menu"] = "Deletar este menu";
+$a->strings["Edit menu contents"] = "Editar os conteúdos do menu";
+$a->strings["Edit this menu"] = "Editar este menu";
+$a->strings["New Menu"] = "Novo menu";
+$a->strings["Menu name"] = "Nome do menu";
+$a->strings["Must be unique, only seen by you"] = "Deve ser único, exibido somente para você";
+$a->strings["Menu title"] = "Título do menu";
+$a->strings["Menu title as seen by others"] = "Título do menu quando visto por outros";
+$a->strings["Allow bookmarks"] = "Habilitar links guardados";
+$a->strings["Menu may be used to store saved bookmarks"] = "O menu pode ser utilizado para armazenar links guardados";
+$a->strings["Create"] = "Criar";
+$a->strings["Menu not found."] = "O menu não foi encontrado.";
+$a->strings["Menu deleted."] = "Menu deletado.";
+$a->strings["Menu could not be deleted."] = "Não foi possível deletar o menu.";
+$a->strings["Edit Menu"] = "Editar menu";
+$a->strings["Add or remove entries to this menu"] = "Adicionar ou remover entradas deste menu";
+$a->strings["Modify"] = "Modificar";
+$a->strings["Not found."] = "Não encontrado.";
+$a->strings["View"] = "Ver";
+$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
+$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
+$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
+$a->strings["No installed applications."] = "Não existe nenhuma aplicação instalada.";
+$a->strings["Applications"] = "Aplicações";
+$a->strings["Edit post"] = "Editar a publicação";
+$a->strings["Red Matrix - Guests: Username: {your email address}, Password: +++"] = "Red Matrix - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++";
+$a->strings["Bookmark added"] = "O link foi guardado";
+$a->strings["My Bookmarks"] = "Meus links guardados";
+$a->strings["My Connections Bookmarks"] = "Links guardados das minhas conexões";
+$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
+$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
+$a->strings["Executable content type not permitted to this channel."] = "Conteúdo de tipo executável não permitido para este canal.";
+$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
+$a->strings["Wall Photos"] = "Fotos do mural";
+$a->strings["You have reached your limit of %1$.0f top level posts."] = "Você atingiu o seu limite de %1$.0f publicações de novos tópicos.";
+$a->strings["You have reached your limit of %1$.0f webpages."] = "Você atingiu o seu limite de %1$.0f páginas web.";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está acompanhando %3\$s de %2\$s";
+$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
+$a->strings["Channel not found."] = "O canal não foi encontrado.";
+$a->strings["toggle full screen mode"] = "alternar o mode de tela inteira";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s";
+$a->strings["You must be logged in to see this page."] = "Você precisa estar autenticado para ver esta página.";
+$a->strings["Room not found"] = "Sala não encontrada";
+$a->strings["Leave Room"] = "Sair da sala";
+$a->strings["I am away right now"] = "Eu estou ausente no momento";
+$a->strings["I am online"] = "Eu estou online";
+$a->strings["Bookmark this room"] = "Guarde esta sala";
+$a->strings["New Chatroom"] = "Nova sala de bate-papo";
+$a->strings["Chatroom Name"] = "Nome da sala de bate-papo";
+$a->strings["%1\$s's Chatrooms"] = "Salas de bate-papo de %1\$s";
+$a->strings["Public access denied."] = "Acesso público negado.";
+$a->strings["No connections."] = "Nenhuma conexão.";
+$a->strings["Visit %s's profile [%s]"] = "Ver o perfil de %s [%s]";
+$a->strings["View Connnections"] = "Ver conexões";
+$a->strings["Tag removed"] = "A etiqueta foi removida";
+$a->strings["Remove Item Tag"] = "Remover a etiqueta de item";
+$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
+$a->strings["Remove"] = "Remover";
+$a->strings["Continue"] = "Continuar";
+$a->strings["Premium Channel Setup"] = "Configuração de canal premium";
+$a->strings["Enable premium channel connection restrictions"] = "Habilitar restrições de canal premium para conexão";
+$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc.";
+$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:";
+$a->strings["Potential connections will then see the following text before proceeding:"] = "Tentativas de conexões verão então o seguinte texto antes de prosseguir:";
+$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página.";
+$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Nenhuma instrução foi especificada pelo dono do canal.)";
+$a->strings["Restricted or Premium Channel"] = "Canal restrito ou premium";
+$a->strings["No potential page delegates located."] = "Nenhum potencial delegado para páginas localizado.";
+$a->strings["Delegate Page Management"] = "Delegar administração de página";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegados podem administrar todos os aspectos desta conta/página exceto pelas configurações básicas da conta. Por favor, não delegue sua conta pessoal para alguém que você não confie completamente.";
+$a->strings["Existing Page Managers"] = "Atuais administradores da página";
+$a->strings["Existing Page Delegates"] = "Atuais delegados da página";
+$a->strings["Potential Delegates"] = "Potenciais delegados";
+$a->strings["Add"] = "Adicionar";
+$a->strings["No entries."] = "Sem entradas.";
+$a->strings["Item not available."] = "O item não está disponível.";
+$a->strings["Menu element updated."] = "O elemento de menu foi atualizado.";
+$a->strings["Unable to update menu element."] = "Não foi possível atualizar o elemento de menu.";
+$a->strings["Menu element added."] = "O elemento de menu foi adicionado.";
+$a->strings["Unable to add menu element."] = "Não foi possível adicionar o elemento de menu.";
+$a->strings["Manage Menu Elements"] = "Administrar elementos de menu";
+$a->strings["Edit menu"] = "Editar menu";
+$a->strings["Edit element"] = "Editar elemento";
+$a->strings["Drop element"] = "Descartar elemento";
+$a->strings["New element"] = "Novo elemento";
+$a->strings["Edit this menu container"] = "Editar esta caixa de menu";
+$a->strings["Add menu element"] = "Adicionar um elemento de menu";
+$a->strings["Delete this menu item"] = "Deleter este item de menu";
+$a->strings["Edit this menu item"] = "Editar este item de menu";
+$a->strings["New Menu Element"] = "Novo elemento de menu";
+$a->strings["Menu Item Permissions"] = "Permissões do item do menu";
+$a->strings["Link text"] = "Texto do link";
+$a->strings["URL of link"] = "URL do link";
+$a->strings["Use Red magic-auth if available"] = "Usar Red magic-auth se disponível";
+$a->strings["Open link in new window"] = "Abrir link em uma nova janela";
+$a->strings["Order in list"] = "Ordem na lista";
+$a->strings["Higher numbers will sink to bottom of listing"] = "Números mais altos descem para o fim da lista";
+$a->strings["Menu item not found."] = "O item de menu não foi encontrado.";
+$a->strings["Menu item deleted."] = "O item de menu foi deletado.";
+$a->strings["Menu item could not be deleted."] = "Não foi possível deletar o item de menu.";
+$a->strings["Edit Menu Element"] = "Editar elemento de menu";
+$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
+$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
+$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
+$a->strings["Visible To"] = "Visível para";
+$a->strings["All Connections"] = "Todas as conexões";
+$a->strings["Collection created."] = "Coleção criada";
+$a->strings["Could not create collection."] = "Não foi possível criar a coleção.";
+$a->strings["Collection updated."] = "Coleção atualizada";
+$a->strings["Create a collection of channels."] = "Criar uma coleção de canais.";
+$a->strings["Collection Name: "] = "Nome da coleção:";
+$a->strings["Members are visible to other channels"] = "Membros são visíveis para outros canais";
+$a->strings["Collection removed."] = "Coleção removida.";
+$a->strings["Unable to remove collection."] = "Não foi possível remover a coleção.";
+$a->strings["Collection Editor"] = "Editor de coleção";
+$a->strings["Members"] = "Membros";
+$a->strings["All Connected Channels"] = "Todas os canais conectados";
+$a->strings["Click on a channel to add or remove."] = "Clique em um canal para adicionar ou remover.";
+$a->strings["Theme settings updated."] = "As configurações de tema foram atualizadas.";
+$a->strings["Site"] = "Site";
+$a->strings["Users"] = "Usuários";
+$a->strings["Plugins"] = "Plugins";
+$a->strings["Themes"] = "Temas";
+$a->strings["Server"] = "Servidor";
+$a->strings["DB updates"] = "Atualizações do Banco de Dados";
+$a->strings["Logs"] = "Logs";
+$a->strings["Plugin Features"] = "Recursos dos plugins";
+$a->strings["User registrations waiting for confirmation"] = "Registros de usuário aguardando confirmação";
+$a->strings["Message queues"] = "Filas de mensagem";
+$a->strings["Administration"] = "Administração";
+$a->strings["Summary"] = "Resumo";
+$a->strings["Registered users"] = "Usuários registrados";
+$a->strings["Pending registrations"] = "Registros pendentes";
+$a->strings["Version"] = "Versão";
+$a->strings["Active plugins"] = "Plugins ativos";
+$a->strings["Site settings updated."] = "As configurações de site foram atualizadas.";
+$a->strings["No special theme for accessibility"] = "Sem tema especial para acessibilidade";
+$a->strings["Closed"] = "Fechado";
+$a->strings["Requires approval"] = "Requer aprovação";
+$a->strings["Open"] = "Aberto";
+$a->strings["Private"] = "Privado";
+$a->strings["Paid Access"] = "Acesso pago";
+$a->strings["Free Access"] = "Acesso gratuito";
+$a->strings["Tiered Access"] = "Acesso em níveis";
+$a->strings["Registration"] = "Registro";
+$a->strings["File upload"] = "Carregamento de arquivos";
+$a->strings["Policies"] = "Políticas";
+$a->strings["Advanced"] = "Avançado";
+$a->strings["Site name"] = "Nome do site";
+$a->strings["Banner/Logo"] = "Cartaz/Logo";
+$a->strings["Administrator Information"] = "Informações do Administrador";
+$a->strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui.";
+$a->strings["System language"] = "Idioma do sistema";
+$a->strings["System theme"] = "Tema do sistema";
+$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - mudar configurações do tema";
+$a->strings["Mobile system theme"] = "Tema do sistema móvel";
+$a->strings["Theme for mobile devices"] = "Tema para dispositivos móveis";
+$a->strings["Accessibility system theme"] = "Tema do sistema acessível";
+$a->strings["Accessibility theme"] = "Tema acessível";
+$a->strings["Channel to use for this website's static pages"] = "Canal a utilizar para as páginas estáticas desse website";
+$a->strings["Site Channel"] = "Canal do site";
+$a->strings["Maximum image size"] = "Tamanho máximo de imagens";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites.";
+$a->strings["Register policy"] = "Política de registro";
+$a->strings["Access policy"] = "Política de acesso";
+$a->strings["Register text"] = "Texto de registro";
+$a->strings["Will be displayed prominently on the registration page."] = "Será exibido proeminentemente na página de registro.";
+$a->strings["Accounts abandoned after x days"] = "Contas abandonadas após x dias";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo.";
+$a->strings["Allowed friend domains"] = "Domínios permitidos para amigos";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. Wildcards são aceitas. Vazio para permitir qualquer domínio";
+$a->strings["Allowed email domains"] = "Domínios permitidos de e-mail";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. Wildcards são aceitas. Vazio para permitir qualquer domínio";
+$a->strings["Block public"] = "Bloquear público";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado.";
+$a->strings["Force publish"] = "Forçar publicação";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site.";
+$a->strings["No login on Homepage"] = "Sem formulário de autenticação na página inicial";
+$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site).";
+$a->strings["Proxy user"] = "Usuário do proxy";
+$a->strings["Proxy URL"] = "URL do proxy";
+$a->strings["Network timeout"] = "Timeout da rede";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor em segundos. Use 0 para ilimitado (não recomendado).";
+$a->strings["Delivery interval"] = "Intervalo de entrega";
+$a->strings["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."] = "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados.";
+$a->strings["Poll interval"] = "Intervalo de coleta";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega.";
+$a->strings["Maximum Load Average"] = "Carga média máxima";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50.";
+$a->strings["No server found"] = "Nenhum servidor foi encontrado";
+$a->strings["ID"] = "ID";
+$a->strings["for channel"] = "para o canal";
+$a->strings["on server"] = "no servidor";
+$a->strings["Status"] = "Status";
+$a->strings["Update has been marked successful"] = "A atualização foi designada bem sucedida";
+$a->strings["Executing %s failed. Check system logs."] = "Execução de %s falhou. Verifique os logs do sistema.";
+$a->strings["Update %s was successfully applied."] = "A atualização %s foi aplicada com sucesso.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso.";
+$a->strings["Update function %s could not be found."] = "A função de atualização %s não foi encontrada.";
+$a->strings["No failed updates."] = "Nenhuma falha nas atualizações.";
+$a->strings["Failed Updates"] = "Falha nas atualizações";
+$a->strings["Mark success (if update was manually applied)"] = "Marque sucesso (se a atualização foi aplicada manualmente)";
+$a->strings["Attempt to execute this update step automatically"] = "Tente executar este passo da atualização automaticamente";
+$a->strings["%s user blocked/unblocked"] = array(
+ 0 => "%s usuário foi bloqueado/desbloqueado",
+ 1 => "%s usuários foram bloqueados/desbloqueados",
+);
+$a->strings["%s user deleted"] = array(
+ 0 => "%s usuário foi deletado",
+ 1 => "%s usuários foram deletados",
+);
+$a->strings["Account not found"] = "A conta não foi encontrada";
+$a->strings["User '%s' deleted"] = "O usuário/a '%s' foi deletado/a";
+$a->strings["User '%s' unblocked"] = "O usuário/a '%s' foi desbloqueado/a";
+$a->strings["User '%s' blocked"] = "O usuário/a '%s' foi bloqueado/a";
+$a->strings["select all"] = "selecionar tudo";
+$a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação";
+$a->strings["Request date"] = "Data de requisição";
+$a->strings["No registrations."] = "Nenhum registro.";
+$a->strings["Approve"] = "Aprovar";
+$a->strings["Deny"] = "Negar";
+$a->strings["Block"] = "Bloquear";
+$a->strings["Unblock"] = "Desbloquear";
+$a->strings["Register date"] = "Data de registro";
+$a->strings["Last login"] = "Última autenticação";
+$a->strings["Expires"] = "Expira";
+$a->strings["Service Class"] = "Classe de serviço";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?";
+$a->strings["Plugin %s disabled."] = "Plugin %s desabilitado.";
+$a->strings["Plugin %s enabled."] = "Plugin %s habilitado.";
+$a->strings["Disable"] = "Desabilitar";
+$a->strings["Enable"] = "Habilitar";
+$a->strings["Toggle"] = "Alternar";
+$a->strings["Author: "] = "Autor:";
+$a->strings["Maintainer: "] = "Mantenedor:";
+$a->strings["No themes found."] = "Nenhum tema foi encontrado.";
+$a->strings["Screenshot"] = "Captura de tela";
+$a->strings["[Experimental]"] = "[Experimental]";
+$a->strings["[Unsupported]"] = "[Desassistido]";
+$a->strings["Log settings updated."] = "As configurações de log foram atualizadas.";
+$a->strings["Clear"] = "Limpar";
+$a->strings["Debugging"] = "Depuração";
+$a->strings["Log file"] = "Arquivo de log";
+$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red.";
+$a->strings["Log level"] = "Nível do log";
+$a->strings["- select -"] = "- selecionar -";
+$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
+$a->strings["Item not found"] = "O item não foi encontrado";
+$a->strings["Item is not editable"] = "O item não está editável";
+$a->strings["Delete item?"] = "Deletar item?";
+$a->strings["Insert YouTube video"] = "Inserir vídeo do YouTube";
+$a->strings["Insert Vorbis [.ogg] video"] = "Inserir vídeo Vorbis (.ogg)";
+$a->strings["Insert Vorbis [.ogg] audio"] = "Inserir áudio Vorbis (.ogg)";
+$a->strings["Age: "] = "Idade: ";
+$a->strings["Gender: "] = "Gênero: ";
+$a->strings["Finding:"] = "Pesquisando:";
+$a->strings["next page"] = "próxima página";
+$a->strings["previous page"] = "página anterior";
+$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar escondidas).";
+$a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato.";
+$a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado.";
+$a->strings["Connection updated."] = "A conexão foi atualizada.";
+$a->strings["Failed to update connection record."] = "Não foi possível atualizar o registro da conexão.";
+$a->strings["Could not access address book record."] = "Não foi possível acessar o registro do contato.";
+$a->strings["Refresh failed - channel is currently unavailable."] = "A atualização falhou - o canal está indisponível no momento.";
+$a->strings["Channel has been unblocked"] = "O canal foi desbloqueado";
+$a->strings["Channel has been blocked"] = "O canal foi bloqueado";
+$a->strings["Unable to set address book parameters."] = "Não foi possível definir os parâmetros do contato.";
+$a->strings["Channel has been unignored"] = "O canal não está mais ignorado";
+$a->strings["Channel has been ignored"] = "O canal passou a estar ignorado";
+$a->strings["Channel has been unarchived"] = "O canal deixou o arquivo";
+$a->strings["Channel has been archived"] = "O canal foi colocado no arquivo";
+$a->strings["Channel has been unhidden"] = "O canal não está mais oculto";
+$a->strings["Channel has been hidden"] = "O canal passou a estar oculto";
+$a->strings["Channel has been approved"] = "O canal foi aprovado";
+$a->strings["Channel has been unapproved"] = "O canal deixou de estar aprovado";
+$a->strings["Contact has been removed."] = "O contato foi removido.";
+$a->strings["View %s's profile"] = "Ver o perfil de %s";
+$a->strings["Refresh Permissions"] = "Atualizar permissões";
+$a->strings["Fetch updated permissions"] = "Buscar as permissões atualizadas";
+$a->strings["Recent Activity"] = "Atividades recentes";
+$a->strings["View recent posts and comments"] = "Exibir publicações e comentários recentes";
+$a->strings["Block or Unblock this connection"] = "Bloquear ou desbloquear esta conexão";
+$a->strings["Unignore"] = "Não ignorar";
+$a->strings["Ignore"] = "Ignorar";
+$a->strings["Ignore or Unignore this connection"] = "Ignorar ou deixar de ignorar esta conexão";
+$a->strings["Unarchive"] = "Não arquivar";
+$a->strings["Archive"] = "Arquivar";
+$a->strings["Archive or Unarchive this connection"] = "Colocar ou retirar do arquivo esta conexão";
+$a->strings["Unhide"] = "Não ocultar";
+$a->strings["Hide"] = "Ocultar";
+$a->strings["Hide or Unhide this connection"] = "Ocultar ou deixar de ocultar esta conexão";
+$a->strings["Delete this connection"] = "Deletar esta conexão";
+$a->strings["Unknown"] = "Desconhecidos";
+$a->strings["Approve this connection"] = "Aprovar esta conexão";
+$a->strings["Accept connection to allow communication"] = "Aceite a conexão para permitir comunicação";
+$a->strings["Automatic Permissions Settings"] = "Configurações de permissão automáticas";
+$a->strings["Connections: settings for %s"] = "Conexões: configurações para %s";
+$a->strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "Ao receber uma apresentação de um canal, quaisquer permissões definidas aqui serão automaticamente aplicadas à nova conexão e a apresentação aprovada. Deixe esta página se você não quer usar este recurso.";
+$a->strings["Slide to adjust your degree of friendship"] = "Deslize para ajustar seu grau de amizade";
+$a->strings["inherited"] = "herdado";
+$a->strings["Connection has no individual permissions!"] = "A conexão não tem permissões individuais!";
+$a->strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Isso pode ser adequado baseado nas suas configurações de privacidade, mas talvez você queira rever suas \"Permissões Avançadas\".";
+$a->strings["Profile Visibility"] = "Visibilidade do perfil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro.";
+$a->strings["Contact Information / Notes"] = "Informações de contato / Notas";
+$a->strings["Edit contact notes"] = "Editar anotações sobre o contato";
+$a->strings["Their Settings"] = "Configurações dele/a";
+$a->strings["My Settings"] = "Minhas configurações";
+$a->strings["Forum Members"] = "Membros do fórum";
+$a->strings["Soapbox"] = "Caixa de sabão";
+$a->strings["Full Sharing (typical social network permissions)"] = "Compartilhamento completo (permissões típicas de redes sociais)";
+$a->strings["Cautious Sharing "] = "Compartilhamento cauteloso";
+$a->strings["Follow Only"] = "Apenas seguir";
+$a->strings["Individual Permissions"] = "Permissões individuais";
+$a->strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Algumas permissões serão herdadas das configurações de privacidade do seu canal, e terão prioridade sobre as configurações individuais. Modificar nesta página tais configurações herdadas não surtirá efeito algum.";
+$a->strings["Advanced Permissions"] = "Permissões avançadas";
+$a->strings["Simple Permissions (select one and submit)"] = "Permissões simples (slecione uma e submeta)";
+$a->strings["Visit %s's profile - %s"] = "Ver o perfil de %s - %s";
+$a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato";
+$a->strings["Ignore contact"] = "Ignorar o contato";
+$a->strings["Repair URL settings"] = "Reparar configurações de URL";
+$a->strings["View conversations"] = "Ver as conversas";
+$a->strings["Delete contact"] = "Excluir o contato";
+$a->strings["Last update:"] = "Última atualização:";
+$a->strings["Update public posts"] = "Atualizar publicações públicas";
+$a->strings["Update now"] = "Atualizar agora";
+$a->strings["Currently blocked"] = "Atualmente bloqueado";
+$a->strings["Currently ignored"] = "Atualmente ignorado";
+$a->strings["Currently archived"] = "Atualmente arquivado";
+$a->strings["Currently pending"] = "Atualmente pendente";
+$a->strings["Hide this contact from others"] = "Esconda este contato dos demais";
+$a->strings["Replies/likes to your public posts may still be visible"] = "Respostas/reações às suas publicações públicas podem continuar visíveis.";
+$a->strings["Layout Help"] = "Ajuda de layout";
+$a->strings["Help with this feature"] = "Ajuda com este recurso";
+$a->strings["Layout Name"] = "Nome do layout";
+$a->strings["Help:"] = "Ajuda:";
$a->strings["Not Found"] = "Não encontrada";
$a->strings["Page not found."] = "Página não encontrada.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID.";
+$a->strings["The error message was:"] = "A mensagem de erro foi:";
+$a->strings["Authentication failed."] = "A autenticação falhou.";
+$a->strings["Remote Authentication"] = "Autenticação remota";
+$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Entre o endereço do seu canal (e.g. canal@exemplo.com)";
+$a->strings["Authenticate"] = "Autenticar";
+$a->strings["Invalid item."] = "Item inválido.";
+$a->strings["No such group"] = "Este grupo não existe";
+$a->strings["Search Results For:"] = "Resultados da busca por:";
+$a->strings["Collection is empty"] = "A coleção está vazia";
+$a->strings["Collection: "] = "Coleção:";
+$a->strings["Connection: "] = "Conexão:";
+$a->strings["Invalid connection."] = "Conexão inválida.";
+$a->strings["Profile not found."] = "O perfil não foi encontrado.";
+$a->strings["Profile deleted."] = "O perfil foi excluído.";
+$a->strings["Profile-"] = "Perfil-";
+$a->strings["New profile created."] = "O novo perfil foi criado.";
+$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem.";
+$a->strings["Profile Name is required."] = "É obrigatório informar o nome do perfil.";
+$a->strings["Marital Status"] = "Estado civil";
+$a->strings["Romantic Partner"] = "Parceiro/a romântico/a";
+$a->strings["Likes"] = "Gosta de";
+$a->strings["Dislikes"] = "Não gosta de";
+$a->strings["Work/Employment"] = "Trabalho/Emprego";
+$a->strings["Religion"] = "Religião";
+$a->strings["Political Views"] = "Posição política";
+$a->strings["Gender"] = "Gênero";
+$a->strings["Sexual Preference"] = "Preferência sexual";
+$a->strings["Homepage"] = "Página web";
+$a->strings["Interests"] = "Interesses";
+$a->strings["Address"] = "Endereço";
+$a->strings["Location"] = "Localização";
+$a->strings["Profile updated."] = "O perfil foi atualizado.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?";
+$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil";
+$a->strings["View this profile"] = "Ver este perfil";
+$a->strings["Change Profile Photo"] = "Mudar a foto do perfil";
+$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações";
+$a->strings["Clone this profile"] = "Clonar este perfil";
+$a->strings["Delete this profile"] = "Excluir este perfil";
+$a->strings["Profile Name:"] = "Nome do perfil:";
+$a->strings["Your Full Name:"] = "Seu nome completo:";
+$a->strings["Title/Description:"] = "Título/Descrição:";
+$a->strings["Your Gender:"] = "Seu gênero:";
+$a->strings["Birthday (%s):"] = "Aniversário (%s):";
+$a->strings["Street Address:"] = "Endereço:";
+$a->strings["Locality/City:"] = "Localidade/Cidade:";
+$a->strings["Postal/Zip Code:"] = "CEP:";
+$a->strings["Country:"] = "País:";
+$a->strings["Region/State:"] = "Região/Estado:";
+$a->strings["♥ Marital Status:"] = "Estado civil ♥:";
+$a->strings["Who: (if applicable)"] = "Quem: (se aplicável)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com";
+$a->strings["Since [date]:"] = "Desde [data]:";
+$a->strings["Homepage URL:"] = "Endereço do website:";
+$a->strings["Religious Views:"] = "Orientação religiosa:";
+$a->strings["Keywords:"] = "Palavras-chave:";
+$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software";
+$a->strings["Used in directory listings"] = "Usado em listas de diretório";
+$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
+$a->strings["Hobbies/Interests"] = "Hobbies/Interesses";
+$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
+$a->strings["My other channels"] = "Meus outros canais";
+$a->strings["Musical interests"] = "Interesses musicais";
+$a->strings["Books, literature"] = "Livros, literatura";
+$a->strings["Television"] = "Televisão";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
+$a->strings["Love/romance"] = "Amor/romance";
+$a->strings["Work/employment"] = "Trabalho/emprego";
+$a->strings["School/education"] = "Escola/educação";
+$a->strings["This is your public profile. It may be visible to anybody using the internet."] = "Este é o seu perfil público. Ele pode estar visível para qualquer um que acesse a Internet.";
+$a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfis";
+$a->strings["Add profile things"] = "Adicionar coisas ao perfil";
+$a->strings["Include desirable objects in your profile"] = "Inclua objetos desejáveis no seu perfil";
+$a->strings["Channel added."] = "Canal adicionado.";
+$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente.";
+$a->strings["Welcome %s. Remote authentication successful."] = "Bem vindo %s. Autenticação remota realizada com sucesso.";
+$a->strings["This site is not a directory server"] = "Este site não é um servidor de diretório";
+$a->strings["Failed to create source. No channel selected."] = "Falha ao criar a fonte. Nenhum canal selecionado.";
+$a->strings["Source created."] = "Fonte criada.";
+$a->strings["Source updated."] = "A fonte foi atualizada.";
+$a->strings["*"] = "*";
+$a->strings["Manage remote sources of content for your channel."] = "Administrar as fontes remotas de conteúdo para o seu canal.";
+$a->strings["New Source"] = "Nova fonte";
+$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal.";
+$a->strings["Only import content with these words (one per line)"] = "Importar apenas conteúd com estas palavras (uma por linha)";
+$a->strings["Leave blank to import all public content"] = "Deixe em branco para importar todo o conteúdo público";
+$a->strings["Channel Name"] = "Nome do canal";
+$a->strings["Source not found."] = "A fonte não foi encontrada.";
+$a->strings["Edit Source"] = "Editar fonte";
+$a->strings["Delete Source"] = "Deletar fonte";
+$a->strings["Source removed"] = "A fonte foi removida.";
+$a->strings["Unable to remove source."] = "Não foi possível remover a fonte.";
+$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
+$a->strings["Visible to:"] = "Visível para:";
+$a->strings["Hub not found."] = "O hub não foi encontrado.";
+$a->strings["Red Matrix Server - Setup"] = "Servidor Red Matrix - Configuração";
+$a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados.";
+$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Não foi possível conectar à URL especificada para o site. Provavlmente um problema de DNS ou com o certificado SSL.";
+$a->strings["Could not create table."] = "Não foi possível criar a tabela.";
+$a->strings["Your site database has been installed."] = "O banco de dados do seu site foi instalado.";
+$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Pode ser que você precise importar o arquivo \"install/database.sql\" manualmente, usando o phpmyadmin or mysql.";
+$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, veja o arquivo \"install/INSTALL.txt\".";
+$a->strings["System check"] = "Checagem do sistema";
+$a->strings["Check again"] = "Cheque novamente";
+$a->strings["Database connection"] = "Conexão ao banco de dados";
+$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Para instalar a Red Matrix é necessário saber como se conectar ao seu banco de dados.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a isso.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificar abaixo já deve existir. Caso contrário, crie-o antes de prosseguir.";
+$a->strings["Database Server Name"] = "Nome do servidor de banco de dados";
+$a->strings["Default is localhost"] = "O default é localhost";
+$a->strings["Database Port"] = "Porta do banco de dados";
+$a->strings["Communication port number - use 0 for default"] = "Número da porta de comunicação - use 0 para o default";
+$a->strings["Database Login Name"] = "Nome do usuário do banco de dados";
+$a->strings["Database Login Password"] = "Senha do usuário do banco de dados";
+$a->strings["Database Name"] = "Nome do banco de dados";
+$a->strings["Site administrator email address"] = "Endereço de email do administrador do site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web.";
+$a->strings["Website URL"] = "URL do website";
+$a->strings["Please use SSL (https) URL if available."] = "Por favor, use uma URL SSL (https) se disponível.";
+$a->strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site";
+$a->strings["Site settings"] = "Configurações do site";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web.";
+$a->strings["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."] = "Caso você não tenha uma versão de linha de comando do PHP instalada no seu servidor, você não será capaz de executar coletas em segundo plano pelo cron.";
+$a->strings["PHP executable path"] = "Caminho para o executável do PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação.";
+$a->strings["Command line PHP"] = "PHP em linha de comando";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema.";
+$a->strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Gerar chaves de criptografia";
+$a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
+$a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics";
+$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
+$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
+$a->strings["mb_string PHP module"] = "Módulo PHP mb_string ";
+$a->strings["mcrypt PHP module"] = "Módulo PHP mcrypt";
+$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado.";
+$a->strings["proc_open"] = "proc_open";
+$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Erro: proc_open é necessário, mas não está instalado ou foi desabilitado no php.ini";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string do PHP é necessário, mas não está instalado.";
+$a->strings["Error: mcrypt PHP module required but not installed."] = "Erro: o módulo mcrypt do PHP é necessário, mas não está instalado.";
+$a->strings["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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
+$a->strings["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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome .htconfig.php, na pasta raiz do seu Red.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"install/INSTALL.TXT\" para instruções.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita";
+$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red usa o engine de template Smarty3 para renderizar suas telas. Smarty3 compila templates para PHP para acelerar a renderização.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/tpl/smarty3/ dentro do diretório raiz da Red.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor, certifique-se de que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita somente em view/tpl/smarty3/ e não aos arquivos de template (.tpl) que ele contém.";
+$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 tem permissão de escrita";
+$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "A Red usa o diretório store para salvar arquivos carregados. O servidor web necessita de permissão de escrita no diretório store dentro do diretório raiz da Red";
+$a->strings["store is writable"] = "store tem permissão de escrita";
+$a->strings["SSL certificate validation"] = "Validação do certificado SSL";
+$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site.";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor.";
+$a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando";
+$a->strings["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."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
+$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
+$a->strings["
What next
"] = "
Próximos passos
";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o coletor.";
+$a->strings["Version %s"] = "Versão %s";
+$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instalados:";
+$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicação instalado";
+$a->strings["Project Donations"] = "Doações para o projeto";
+$a->strings["
The Red Matrix is provided for you by volunteers working in their spare time. Your support will help us to build a better, freer, and privacy respecting web. Select the following option for a one-time donation of your choosing
"] = "
A Red Matrix é oferecida a você por voluntários trabalhando no seu tempo livre. Seu apoio irá nos ajudar a construir uma web melhor, mais livre e com respeito à privacidade. Selecione uma das opções abaixo para realizar uma única doação de sua escolha:
";
+$a->strings["
or
"] = "
ou
";
+$a->strings["Recurring Donation Options"] = "Opções para doações recorrentes";
+$a->strings["Red"] = "Red";
+$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralised privacy enhanced websites."] = "Este é um hub da Red Matrix - uma rede global cooperativa de websites descentralizados com privacidade aprimorada.";
+$a->strings["Running at web location"] = "Sendo executado no endereço web";
+$a->strings["Please visit GetZot.com to learn more about the Red Matrix."] = "Para aprender mais sobre a Red Matrix, visite GetZot.com.";
+$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
+$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugestões, elogios, etc - mande um e-mail para \"redmatrix\" arrôba librelist ponto com";
+$a->strings["Site Administrators"] = "Administradores do site";
+$a->strings["Add a Channel"] = "Adicionar um canal";
+$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns, páginas de celebridades, e muito mais. Você pode criar tantos canais quanto seu provedor de serviço permita.";
+$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemplos: \"Beto Salinas\", \"Elis e seus Cavalos\", \"Futebol\", \"Grupo de aviadores\"";
+$a->strings["Choose a short nickname"] = "Escolha um apelido curto";
+$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros.";
+$a->strings["Or import an existing channel from another location"] = "Ou importe um canal existente de outro local";
+$a->strings["No valid account found."] = "Não foi encontrada uma conta válida.";
+$a->strings["Password reset request issued. Check your email."] = "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail.";
+$a->strings["Site Member (%s)"] = "Membro do site (%s)";
+$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de restauração de senha em %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada.";
+$a->strings["Password Reset"] = "Reiniciar a senha";
+$a->strings["Your password has been reset as requested."] = "Sua senha foi restaurada, conforme solicitado.";
+$a->strings["Your new password is"] = "Sua nova senha é";
+$a->strings["Save or copy your new password - and then"] = "Salve ou copie a sua nova senha e, então";
+$a->strings["click here to login"] = "clique aqui para entrar";
+$a->strings["Your password may be changed from the Settings page after successful login."] = "Sua senha pode ser alterada na página de Configurações após você entrar em sua conta.";
+$a->strings["Your password has changed at %s"] = "Sua senha foi modificada em %s";
+$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções.";
+$a->strings["Email Address"] = "Endereço de e-mail";
+$a->strings["Reset"] = "Restaurar";
+$a->strings["Select a bookmark folder"] = "Escolha uma pasta de links onde guardar";
+$a->strings["Save Bookmark"] = "Guardar link";
+$a->strings["URL of bookmark"] = "URL do link guardado";
+$a->strings["Description"] = "Descrição";
+$a->strings["Or enter new bookmark folder name"] = "Ou digite o nome para uma nova pasta de links";
+$a->strings["Nothing to import."] = "Nada a importar.";
+$a->strings["Unable to download data from old server"] = "Não foi possível descarregar os dados do servidor antigo";
+$a->strings["Imported file is empty."] = "O arquivo importado está vazio.";
+$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Não foi possível criar um identificador de canal duplicado neste sistema. A importação falhou.";
+$a->strings["Channel clone failed. Import failed."] = "Clonagem do canal falhou. A importação falhou.";
+$a->strings["Cloned channel not found. Import failed."] = "Canal a clonar não encontrado. A importação falhou.";
+$a->strings["Import completed."] = "A importação foi completada.";
+$a->strings["You must be logged in to use this feature."] = "Você precisa estar autenticado para usar este recurso.";
+$a->strings["Import Channel"] = "Importar canal";
+$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Use este formulário para importar um canal existente de um servidor/hub diferente. Você pode obter a identidade do canal do servidor/hub antigo pela rede, ou fornecer um arquivo de exportação. Somente a identidade e as conexões/relacionamentos serão importados. Importação de conteúdos ainda não está disponível.";
+$a->strings["File to Upload"] = "Arquivo a carregar";
+$a->strings["Or provide the old server/hub details"] = "Ou forneça os detalhes do antigo servidor/hub";
+$a->strings["Your old identity address (xyz@example.com)"] = "O endereço da sua velha identidade (xyz@exemplo.com)";
+$a->strings["Your old login email address"] = "O endereço de e-mail da sua antiga conta";
+$a->strings["Your old login password"] = "A senha dua sua antiga conta";
+$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para qualquer das opções, por favor escolha se deseja fazer deste hub seu novo endereço primário, ou se o velho local deve continuar com esse papel. Você será capaz de publicar a partir de ambos os locais, mas somente um pode estar designado como local primário para arquivos, fotos e mídia.";
+$a->strings["Make this hub my primary location"] = "Faça deste hub meu local primário";
+$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Você criou %1$.0f de %2$.0f canais permitidos.";
+$a->strings["Create a new channel"] = "Criar um novo canal";
+$a->strings["Channel Manager"] = "Administrador do canal";
+$a->strings["Current Channel"] = "Canal atual";
+$a->strings["Attach to one of your channels by selecting it."] = "Selecione um dos seus canais para utilizá-lo.";
+$a->strings["Default Channel"] = "Canal padrão";
+$a->strings["Make Default"] = "Tornar padrão";
+$a->strings["Total votes"] = "Votos totais";
+$a->strings["Average Rating"] = "Média das avaliações";
+$a->strings["Profile Match"] = "Correspondência de perfil";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nenhuma palavra-chave para combinar. Por favor, adicione palavras-chave ao seu perfil padrão.";
+$a->strings["is interested in:"] = "se interessa por:";
+$a->strings["No matches"] = "Nenhuma correspondência";
+$a->strings["invalid target signature"] = "assinatura do destino inválida";
+$a->strings["Away"] = "Ausente";
+$a->strings["Online"] = "Online";
+$a->strings["Unable to lookup recipient."] = "Não foi possível encontrar o destinatário.";
+$a->strings["Unable to communicate with requested channel."] = "Não foi possível comunicar com o canal solicitado.";
+$a->strings["Cannot verify requested channel."] = "Não foi possível verificar o canal requisitado.";
+$a->strings["Selected channel has private message restrictions. Send failed."] = "O canal solicitado tem restrições a mensagens privadas. Falha no envio.";
+$a->strings["Messages"] = "Mensagens";
+$a->strings["Message deleted."] = "A mensagem foi excluída.";
+$a->strings["Message recalled."] = "Mensagem retirada.";
+$a->strings["Send Private Message"] = "Enviar mensagem privada";
+$a->strings["To:"] = "Para:";
+$a->strings["Subject:"] = "Assunto:";
+$a->strings["Message not found."] = "Mensagem não encontrada.";
+$a->strings["Delete message"] = "Excluir a mensagem";
+$a->strings["Recall message"] = "Retirar mensagem";
+$a->strings["Message has been recalled."] = "A mensagem foi retirada.";
+$a->strings["Private Conversation"] = "Conversa privada";
+$a->strings["Delete conversation"] = "Excluir conversa";
+$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicação segura indisponível. Você talvez consiga responder pela página de perfil do remetente.";
+$a->strings["Send Reply"] = "Enviar resposta";
+$a->strings["OpenID protocol error. No ID returned."] = "Erro do protocolo OpenID. Nenhuma ID retornada.";
+$a->strings["Edit Layout"] = "Editar layout";
+$a->strings["Delete layout?"] = "Deletar layout?";
+$a->strings["Delete Layout"] = "Deletar layout";
+$a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la.";
+$a->strings["Image resize failed."] = "Falha ao modificar o tamanho da imagem.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Se a nova foto não aparecer imediatamente, recarregue a página segurando a tecla \"shift\" ou limpe o cache do navegador, ";
+$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
+$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
+$a->strings["Photo not available."] = "A foto não está disponível.";
+$a->strings["Upload File:"] = "Enviar arquivo:";
+$a->strings["Select a profile:"] = "Selecione um perfil:";
+$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
+$a->strings["Upload"] = "Enviar";
+$a->strings["skip this step"] = "pule esta etapa";
+$a->strings["select a photo from your photo albums"] = "selecione uma foto do seu álbum de fotos";
+$a->strings["Crop Image"] = "Cortar a imagem";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização.";
+$a->strings["Done Editing"] = "Encerrar a edição";
+$a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso.";
+$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
+$a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s].";
+$a->strings["Blocked"] = "Bloqueado";
+$a->strings["Ignored"] = "Ignorado";
+$a->strings["Hidden"] = "Oculto";
+$a->strings["Archived"] = "Arquivado";
+$a->strings["All"] = "Todos";
+$a->strings["Suggest new connections"] = "Sugerir novas conexões";
+$a->strings["Show pending (new) connections"] = "Exibir conexões pendentes (novas)";
+$a->strings["Show all connections"] = "Exibir todas as conexões";
+$a->strings["Unblocked"] = "Não bloqueado";
+$a->strings["Only show unblocked connections"] = "Exibir apenas conexões não bloqueadas";
+$a->strings["Only show blocked connections"] = "Exibir apenas conexões bloqueadas";
+$a->strings["Only show ignored connections"] = "Exibir apenas conexões ignoradas";
+$a->strings["Only show archived connections"] = "Exibir apenas conexões arquivadas";
+$a->strings["Only show hidden connections"] = "Exibir apenas conexões ocultas";
+$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
+$a->strings["Edit contact"] = "Editar o contato";
+$a->strings["Search your connections"] = "Pesquisar em suas conexões";
+$a->strings["Finding: "] = "Pesquisando: ";
+$a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
+$a->strings["Discard"] = "Descartar";
+$a->strings["No more system notifications."] = "Sem novas notificações do sistema.";
+$a->strings["System Notifications"] = "Notificações do sistema";
+$a->strings["Block Name"] = "Nome do bloco";
+$a->strings["Unable to find your hub."] = "Não foi possível localizar seu hub.";
+$a->strings["Post successful."] = "Publicado com sucesso.";
+$a->strings["Edit Webpage"] = "Editar página web";
+$a->strings["Delete webpage?"] = "Deletar página web?";
+$a->strings["Delete Webpage"] = "Deletar página web";
+$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
+$a->strings["Poke/Prod"] = "Cutucar/Espetar";
+$a->strings["poke, prod or do other things to somebody"] = "Cutucar, espetar ou fazer outras coisas a alguém";
+$a->strings["Recipient"] = "Destinatário";
+$a->strings["Choose what you wish to do to recipient"] = "Escolha o que você deseja fazer com seu alvo";
+$a->strings["Make this post private"] = "Torne esta publicação privada";
+$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permissões insuficientes. Requisição redirecionada para a página de perfil.";
+$a->strings["Not available."] = "Não disponível.";
+$a->strings["Community"] = "Comunidade";
+$a->strings["No results."] = "Nenhum resultado.";
+$a->strings["Contact not found."] = "O contato não foi encontrado.";
+$a->strings["Friend suggestion sent."] = "Sugestão de amizade enviada.";
+$a->strings["Suggest Friends"] = "Sugerir amigos";
+$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
+$a->strings["Edit Block"] = "Editar bloco";
+$a->strings["Delete block?"] = "Deletar bloco?";
+$a->strings["Delete Block"] = "Deletar bloco";
+$a->strings["Status: "] = "Status:";
+$a->strings["Sexual Preference: "] = "Preferência sexual:";
+$a->strings["Homepage: "] = "Website:";
+$a->strings["Hometown: "] = "Cidade natal:";
+$a->strings["About: "] = "Sobre:";
+$a->strings["Keywords: "] = "Palavras-chave:";
+$a->strings["Permission Denied."] = "Permissão negada.";
+$a->strings["File not found."] = "O arquivo não foi encontrado.";
+$a->strings["Edit file permissions"] = "Editar permissões do arquivo";
+$a->strings["Permissions"] = "Permissões";
+$a->strings["Include all files and sub folders"] = "Incluir todos os arquivos e subpastas";
+$a->strings["Return to file list"] = "Retornar à lista de arquivos";
+$a->strings["Copy/paste this code to attach file to a post"] = "Copiar/colar este código para anexar um arquivo a uma publicação";
+$a->strings["Copy/paste this URL to link file from a web page"] = "Copiar/colar este URL para linkar para o arquivo em uma página web";
+$a->strings["Download"] = "Baixar";
+$a->strings["Used: "] = "Utilizado:";
+$a->strings["[directory]"] = "[diretório]";
+$a->strings["Limit: "] = "Limite:";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nenhuma sugestão disponível. Se este site é novo, por favor tente novamente em 24 horas.";
+$a->strings["Conversation removed."] = "A conversa foi removida.";
+$a->strings["No messages."] = "Nenhuma mensagem.";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["Public Sites"] = "Sites públicos";
+$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Os sites listados permitem ao público geral registrar contas na Red Matrix. Todos os sites na matrix são interligados, portanto ser membro em qualquer um deles te torna membro na matrix como um todo. Alguns sites podem solicitar uma assinatura ou prover planos em níveis. Os links para cada provedor podem fornecer mais detalhes.";
+$a->strings["Site URL"] = "URL do site";
+$a->strings["Access Type"] = "Tipo de acesso";
+$a->strings["Registration Policy"] = "Política de registro";
+$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Número máximo de novos registros neste site excedido por hoje. Por favor, tente novamente amanhã.";
+$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, indique a aceitação dos Termos de Serviço. Falha ao registrar.";
+$a->strings["Passwords do not match."] = "Senhas não conferem.";
+$a->strings["Registration successful. Please check your email for validation instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para confirmar o registro.";
+$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
+$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
+$a->strings["Registration on this site/hub is by approval only."] = "O registro neste site/hub requer aprovação.";
+$a->strings["Register at another affiliated site/hub"] = "Registre em um outro site/hub afiliado";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o número máximo de registros de novas contas. Por favor, tente novamente amanhã.";
+$a->strings["Terms of Service"] = "Termos de Serviço";
+$a->strings["I accept the %s for this website"] = "Eu aceito os %s deste website.";
+$a->strings["I am over 13 years of age and accept the %s for this website"] = "Eu sou maior de 13 anos e aceito os %s deste website";
+$a->strings["Membership on this site is by invitation only."] = "Novas contas neste site se dão apenas por convite.";
+$a->strings["Please enter your invitation code"] = "Por favor, digite o código do seu convite";
+$a->strings["Your email address"] = "Seu endereço de e-mail";
+$a->strings["Choose a password"] = "Escolha uma senha";
+$a->strings["Please re-enter your password"] = "Por favor, digite sua senha novamente";
+$a->strings["Please login."] = "Por favor, autentique-se.";
+$a->strings["Remove This Channel"] = "Remover este canal";
+$a->strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Isso irá remover completamente este canal da rede. Uma vez que seja feito não será possível recuperá-lo.";
+$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
+$a->strings["Remove this channel and all its clones from the network"] = "Remover este canal e todos os seus clones da rede";
+$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por padrão, apenas a instância do canal localizada neste hub será removida da rede";
+$a->strings["Remove Channel"] = "Remover canal";
+$a->strings["Page owner information could not be retrieved."] = "As informações do dono da pagina não puderam ser obtidas.";
+$a->strings["Album not found."] = "O álbum não foi encontrado.";
+$a->strings["Delete Album"] = "Excluir o álbum";
+$a->strings["Delete Photo"] = "Excluir a foto";
+$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
+$a->strings["Access to this item is restricted."] = "O acesso a este item está restrito.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você usou %1$.2f Mbytes de %2$.2f Mbytes de armazenamento de fotos.";
+$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Você usou %1$.2f Mbytes de armazenamento de fotos.";
+$a->strings["Upload Photos"] = "Enviar fotos";
+$a->strings["New album name: "] = "Novo nome de álbum: ";
+$a->strings["or existing album name: "] = "ou nome de um álbum já existente: ";
+$a->strings["Do not show a status post for this upload"] = "Não exibir uma publicação de status para este carregamento";
+$a->strings["Contact Photos"] = "Fotos dos contatos";
+$a->strings["Edit Album"] = "Editar o álbum";
+$a->strings["Show Newest First"] = "Exibir primeiro os mais recentes";
+$a->strings["Show Oldest First"] = "Exibir primeiro os mais antigos";
+$a->strings["View Photo"] = "Ver a foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. Acesso a este item pode estar restrito.";
+$a->strings["Photo not available"] = "A foto não está disponível";
+$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
+$a->strings["View Full Size"] = "Ver no tamanho real";
+$a->strings["Edit photo"] = "Editar a foto";
+$a->strings["Rotate CW (right)"] = "Rotacionar H (horário)";
+$a->strings["Rotate CCW (left)"] = "Rotacionar AH (anti-horário)";
+$a->strings["New album name"] = "Novo nome para o álbum";
+$a->strings["Caption"] = "Legenda";
+$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
+$a->strings["In This Photo:"] = "Nesta foto:";
+$a->strings["View Album"] = "Ver álbum";
+$a->strings["Recent Photos"] = "Fotos recentes";
+$a->strings["Mood"] = "Humor";
+$a->strings["Set your current mood and tell your friends"] = "Marque seu humor atual e compartilhe com seus amigos";
+$a->strings["sent you a private message"] = "lhe enviou uma mensagem privada";
+$a->strings["added your channel"] = "adicionou seu canal";
+$a->strings["posted an event"] = "publicou um evento";
+$a->strings["Scheme Default"] = "Padrão do esquema";
+$a->strings["silver"] = "prata";
+$a->strings["Theme settings"] = "Configurações de tema";
+$a->strings["Set scheme"] = "Definir esquema";
+$a->strings["Narrow navbar"] = "Barra de navegação estreita";
+$a->strings["Navigation bar colour"] = "Cor da barra de navegação";
+$a->strings["link colour"] = "cor dos links";
+$a->strings["Set font-colour for banner"] = "Definir a cor da fonte para o cartaz";
+$a->strings["Set the background colour"] = "Definir a cor do pano de fundo";
+$a->strings["Set the background image"] = "Definir a imagem do pano de fundo";
+$a->strings["Set the background colour of items"] = "Definir a cor de fundo dos items";
+$a->strings["Set the opacity of items"] = "Definir a opacidade de items";
+$a->strings["Set the basic colour for item icons"] = "Definir a cor básica para ícones de itens";
+$a->strings["Set the hover colour for item icons"] = "Definir a cor para ícones de itens quando que o mouse está sobre eles";
+$a->strings["Set font-size for the entire application"] = "Definir o tamanho da fonte para a aplicação como um todo";
+$a->strings["Set font-size for posts and comments"] = "Definir o tamanho da fonte para publicações e comentários";
+$a->strings["Set font-colour for posts and comments"] = "Definir a cor da fonte para publicações e comentários";
+$a->strings["Set radius of corners"] = "Definir o raio de curvatura dos cantos";
+$a->strings["Set shadow depth of photos"] = "Definir a profundidade de sombra das fotos";
+$a->strings["Set maximum width of conversation regions"] = "Definir a largura máxima da área de conversas";
+$a->strings["Set minimum opacity of nav bar - to hide it"] = "Definir opacidade mínima para a barra de navegação - para escondê-la";
+$a->strings["Set size of conversation author photo"] = "Definir o tamanho da foto do autor da conversa";
+$a->strings["Set size of followup author photos"] = "Definir o tamanho da foto dos autores de comentários";
+$a->strings["Sloppy photo albums"] = "Álbuns de fotos desleixados";
+$a->strings["Are you a clean desk or a messy desk person?"] = "Sua mesa é do tipo limpinha ou bagunçada?";
+$a->strings["Schema Default"] = "Padrão do esquema";
+$a->strings["Sans-Serif"] = "Sans-Serif";
+$a->strings["Monospace"] = "Monoespaçada";
+$a->strings["Set font face"] = "Definir a face da fonte";
+$a->strings["Set iconset"] = "Definir o conjunto de ícones";
+$a->strings["Set big shadow size, default 15px 15px 15px"] = "Definir o tamanho da sombra grande, padrão 15px 15px 15px";
+$a->strings["Set small shadow size, default 5px 5px 5px"] = "Definir o tamanho da sombra pequena, padrão 5px 5px 5px";
+$a->strings["Set shadow colour, default #000"] = "Definir a cor da sombra, padrão #000";
+$a->strings["Set radius size, default 5px"] = "Definir o tamanho do raio de curvatura, padrão 5px";
+$a->strings["Set line-height for posts and comments"] = "Definir a altura da linha para publicações e comentários";
+$a->strings["Set background image"] = "Definir a imagem do pano de fundo";
+$a->strings["Set background colour"] = "Definir a cor do pano de fundo";
+$a->strings["Set section background image"] = "Definir a imagem de fundo de seção";
+$a->strings["Set section background colour"] = "Definir a cor de fundo de seção";
+$a->strings["Set colour of items - use hex"] = "Definir a cor dos itens - use hex";
+$a->strings["Set colour of links - use hex"] = "Definir a cor dos links - use hex";
+$a->strings["Set max-width for items. Default 400px"] = "Definir a largura máxima para itens. Padrão 400px";
+$a->strings["Set min-width for items. Default 240px"] = "Definir a largura mínima para itens. Padrão 240px";
+$a->strings["Set the generic content wrapper width. Default 48%"] = "Definir a largura do envólucro para conteúdo genérico. Padrão 48%";
+$a->strings["Set colour of fonts - use hex"] = "Definir a cor das fontes - use hex";
+$a->strings["Set background-size element"] = "Definir o elemento background-size";
+$a->strings["Item opacity"] = "Opacidade de itens";
+$a->strings["Display post previews only"] = "Exibir apenas a pré-visualização de publicações";
+$a->strings["Display side bar on channel page"] = "Exibir a barra lateral na página do canal";
+$a->strings["Colour of the navigation bar"] = "Cor da barra de navegação";
+$a->strings["Item float"] = "Flutuação de item";
+$a->strings["Left offset of the section element"] = "Deslocamento esquerdo do elemento de seção";
+$a->strings["Right offset of the section element"] = "Deslocamento direito do elemento de seção";
+$a->strings["Section width"] = "largura de seção";
+$a->strings["Left offset of the aside"] = "Deslocamento esquerdo do aparte";
+$a->strings["Right offset of the aside element"] = "Deslocamento direito do aparte";
+$a->strings["None"] = "Nenhum";
+$a->strings["Header image"] = "Imagem de cabeçalho";
+$a->strings["Header image only on profile pages"] = "Imagem de cabeçalho apenas em páginas de perfil";
+$a->strings["Update %s failed. See error logs."] = "A atualização %s falhou. Veja os logs de erro.";
+$a->strings["Update Error at %s"] = "Erro de atualização em %s";
+$a->strings["Create an account to access services and applications within the Red Matrix"] = "Crie uma conta para acessar serviços e aplicações na Red Matrix";
+$a->strings["Password"] = "Senha";
+$a->strings["Remember me"] = "Lembrar de mim";
+$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
+$a->strings["permission denied"] = "permissão negada";
+$a->strings["Got Zot?"] = "Já tem Zot?";
+$a->strings["toggle mobile"] = "alternar para interface móvel";
diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css
new file mode 100644
index 000000000..b05f46797
--- /dev/null
+++ b/view/theme/redbasic/css/narrow_navbar.css
@@ -0,0 +1,27 @@
+.navbar-nav > li > a {padding-top:5px !important; padding-bottom:5px !important;}
+.navbar {min-height:25px !important;}
+nav img {
+height: 25px;
+width: 25px;
+margin: 2px 0px 1px 10px;
+border-radius: 0px;
+}
+.navbar-left{height: 30px;}
+.container-fluid {min-height:30px;}
+.collapse .navbar-collapse {min-height:30px;}
+#nav-search-text {margin:5px;}
+header #banner {margin-top:5px;}
+nav .dropdown-menu {
+top: 30px;}
+nav .badge {
+ position: relative;
+ top: -30px;
+ float: right;
+ font-size: 10px;
+ padding: 2px 6px;
+ cursor: pointer;
+}
+#jGrowl.top-right {
+ top: 30px;
+ right: 15px;
+}
\ No newline at end of file
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index db4773b70..8ad18e6c7 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -74,6 +74,10 @@ input[type="submit"] {
text-decoration: none;
}
+pre code {
+ border: none;
+}
+
code {
font-family: Courier, monospace;
display: block;
@@ -228,49 +232,6 @@ header #banner #logo-text {
font-size: 22px;
}
-.nav-commlink, .nav-login-link {
- display: block;
- height: 15px;
- margin-top: 67px;
- margin-right: 2px;
- padding: 6px 3px;
- float: left;
- bottom: 140px;
- border: 1px solid #babdb6;
- border-bottom: 0px;
- background-color: #aec0d3;
- color: #565854;
- -moz-border-radius: $radiuspx;
- border-radius: $radiuspx;
-}
-
-nav .nav-link {
- float: right;
- margin: 0.2em 0em;
- padding: 0em 0.5em;
- background-color: transparent !important;
-}
-
-.nav-commlink.active {
- background-color: #ffffff;
- border-bottom: 1px solid #ffffff;
- color: #000000 !important;
- margin-top: 64px;
- padding-top: 6px;
- padding-bottom: 8px;
-}
-
-.nav-ajax-left {
- font-size: 0.8em;
- float: left;
- margin-top: 62px;
-}
-
-
-nav #nav-link-wrapper .nav-link {
- border-right: 1px solid #babdb6;
-}
-
.tabs {
height: 28px;
border-bottom: 1px solid #aaaaaa;
@@ -469,6 +430,11 @@ footer {
text-decoration: none;
}
+.vcard .dropdown-menu {
+ position: absolute;
+ left: 200px;
+ top: 18px;
+}
#profile-extra-links {
clear: both;
@@ -485,9 +451,7 @@ footer {
margin-top: 5px;
}
-.profile-edit-side-div {
- float: right;
-}
+
.profile-edit-side-link {
opacity: 0.3;
filter:alpha(opacity=30);
@@ -528,14 +492,6 @@ footer {
padding: 12px;
}
-#profiles-menu.menu-popup {
- left: 200px;
- right: auto;
- top: 22px;
-}
-
-
-
#profile-in-dir-yes-label,
#profile-in-dir-no-label,
#profile-in-netdir-yes-label,
@@ -775,6 +731,24 @@ footer {
}
+.pmenu.horizontal {
+ padding: 0 0 0 0;
+ border-bottom: none;
+}
+
+.pmenu.horizontal .pmenu-title {
+ display: none;
+}
+.pmenu.horizontal ul {
+ -moz-padding-start: 0;
+}
+
+.pmenu.horizontal li {
+ margin-left: 0;
+ display: inline;
+ padding-right: 15px;
+}
+
#settings-default-perms-menu {
margin-top: 15px;
margin-bottom: 15px;
@@ -789,7 +763,7 @@ footer {
display: block;
color: #FFFFFF;
margin-top: 15px;
- background-color: $nav_bg_2;
+ background-color: $nav_bg;
-webkit-border-radius: $radiuspx ;
-moz-border-radius: $radiuspx;
border-radius: $radiuspx;
@@ -878,7 +852,7 @@ footer {
#nav-search-spinner {
float: left;
margin: 25px 0px 0px 25px;
- color: #fff;
+ color: $nav_active_icon_colour;
}
#nav-search-text:hover,
@@ -892,7 +866,7 @@ footer {
margin: 15px;
padding: 0px 5px 0px 5px;
border-radius: 10px;
- border: none;
+ border-color: $nav_bd;
background-color: $search_background;
transition: background-color 300ms ease 0s;
}
@@ -917,17 +891,6 @@ footer {
font-family: FontAwesome;
}
-.nav-dropdown-indicator {
- opacity: 0.8;
- filter:alpha(opacity=80);
-}
-
-.nav-dropdown-indicator:hover {
- opacity: 1.0;
- filter:alpha(opacity=100);
-}
-
-
.location-label, .gender-label, .marital-label, .homepage-label {
float: left;
text-align: right;
@@ -1141,12 +1104,6 @@ footer {
margin-bottom: 15px;
}
-#language-selector {
- position: absolute;
- top: 0px;
- left: 16px;
-}
-
#group-members {
margin-top: 20px;
padding: 10px;
@@ -1527,7 +1484,7 @@ div.jGrowl div.info {
padding-left: 58px;
}
#jGrowl.top-right {
- top: 15px;
+ top: 65px;
right: 15px;
}
@@ -1542,7 +1499,7 @@ div.jGrowl div.info {
#nav-search-text-ac .autocomplete {
position: fixed;
top: 51px;
- border: 1px solid #222;
+ border: 1px solid $nav_bd;
border-top: none;
}
@@ -1593,25 +1550,15 @@ div.jGrowl div.info {
width: 90%;
}
-a.rconnect,
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link {
+a.rconnect {
color: #ffffff;
text-decoration: none;
outline: none;
}
-a.rconnect:hover, nav a:hover {
+a.rconnect:hover {
color: #0080FF;
}
-nav .fakelink {
- color: #ffffff;
- text-decoration: none;
- outline: none;
-}
-nav .fakelink:hover { text-decoration: none; }
#profiles-menu li a {
color: #ffffff;
@@ -1621,138 +1568,7 @@ nav .fakelink:hover { text-decoration: none; }
color: #000000;
}
-nav .nav-menu-icon {
- position: relative;
- height: 22px;
- padding: 5px;
-/* margin: 3px 10px; */
- -moz-border-radius: $radiuspx;
- -webkit-border-radius: $radiuspx;
- border-radius: $radiuspx;
-}
-nav .nav-menu-icon.active {
- background-color: #FF0000;
-}
-nav .nav-menu-icon img {
- width: 22px;
- height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
- top: 3px;
-}
-nav .nav-menu {
- position: relative;
- height: 16px;
- padding: 5px;
- margin: 0px 5px 0px;
- font-size: 1.0em;
-/* border-bottom: 3px solid #f88; */
-}
-nav:hover .nav-menu {
-/* border-bottom: 3px solid #f00; */
-}
-
-nav .nav-menu.active i {
- color: $active_colour;
-}
-
-nav .nav-notify {
- background-color: #0080FF;
- color: #fff;
- -moz-border-radius: $radiuspx;
- -webkit-border-radius: $radiuspx;
- border-radius: $radiuspx;
-/* opacity: 0.6;
- filter:alpha(opacity=60); */
-
-}
-.nav-notify:hover, nav .nav-notify.active span {
- color: #ffffff;
-}
-
-nav .nav-notify.show {
- display: block;
-}
-nav #nav-help-link,
-nav #nav-login-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link {
- float: right;
-}
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
- right: 0px;
- left: auto;
-}
-nav #nav-notifications-linkmenu.on .icon.s22.notify,
-nav #nav-notifications-linkmenu.active .icon.s22.notify {
- background-image: url("../../../../images/icons/22/notify_on.png");
-}
-nav #nav-apps-link.active {
- background-color: #364e59;
-}
-ul.menu-popup {
- position: absolute;
- display: none;
- width: 10em;
- background: #0080FF;
- color: #eec;
- padding: 0px;
- list-style: none;
-/* border-radius: 0px 0px 20px 20px; */
- z-index: 100000;
- -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
- box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
- display: block;
- color: #FFFFFF;
- padding: 5px 10px;
- text-decoration: none;
-}
-
-
-ul.menu-popup a:hover {
- background-color: #888888;
- color: #FFFFFF;
-}
-ul.menu-popup .menu-sep {
- border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
- float: none;
- overflow: auto;
- height: auto;
- display: block;
-}
-ul.menu-popup li img {
- float: left;
- width: 16px;
- height: 16px;
- padding-right: 5px;
-}
-ul.menu-popup .empty {
- padding: 5px;
- text-align: center;
- color: #9eabb0;
-}
-ul.menu-popup .toolbar {
- background-color: #9eabb0;
- height: auto;
- overflow: auto;
-}
-ul.menu-popup .toolbar a {
- float: right;
-}
-ul.menu-popup .toolbar a:hover {
- background-color: #ffffff;
-}
/* header */
header {
position: fixed;
@@ -1764,66 +1580,6 @@ header {
color: #fff;
}
-
-/* notifications popup menu */
-.nav-notify {
- display: none;
- position: absolute;
- font-size: 10px;
- padding: 1px 3px;
- top: 0px;
- right: -5px;
- min-width: 15px;
- text-align: right;
-}
-.nav-notify.show {
- display: block;
-}
-ul.menu-popup {
- position: absolute;
- display: none;
- width: 10em;
- margin: 0px;
- padding: 0px;
- list-style: none;
- z-index: 100000;
-/* top: 90px; */
-/* left: 400px; */
-}
-
-.notify-menus {
- width: 320px !important;
- max-height: 400px;
- overflow-y: scroll;overflow-style:scrollbar;
-}
-
-#nav-notifications-menu {
- width: 320px;
- max-height: 400px;
- overflow-y: scroll;overflow-style:scrollbar;
- background-color:#FFFFFF;
- -moz-border-radius: $radiuspx;
- -webkit-border-radius: $radiuspx;
- border-radius: $radiuspx;
- border: 1px solid #888;
-}
-#nav-notifications-menu .contactname { font-weight: bold; font-size: 0.9em; }
-#nav-notifications-menu img { float: left; margin-right: 5px; }
-#nav-notifications-menu .notif-when { font-size: 0.8em; display: block; }
-#nav-notifications-menu li {
- padding: 7px 0px 7px 10px;
- word-wrap:normal;
- border-bottom: 1px solid #000;
-}
-
-#nav-notifications-menu li:hover {
-
-}
-
-#nav-notifications-menu a:hover {
- text-decoration: underline;
-}
-
.notif-item a {
color: #000000;
}
@@ -2052,11 +1808,6 @@ margin-right: 50px;
color: $toolicon_colour;
}
-.nav-icon {
- font-size: 1.4em;
- margin-right: 15px;
-}
-
a .drop-icons {
color: $toolicon_colour;;
font-size: 1.2em;
@@ -2441,6 +2192,7 @@ img.mail-list-sender-photo {
}
/* nav bootstrap */
+
nav i {
font-size: 14px;
}
@@ -2448,7 +2200,7 @@ nav i {
nav img {
height: 47px;
width: 47px;
- margin: 2px 0px 1px 10px;
+ margin-top: 2px;
border-radius: $radiuspx;
}
@@ -2456,13 +2208,6 @@ nav ul li {
max-height: 50px
}
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link {
- color: #333;
-}
-
nav .badge {
border-radius: $radiuspx;
}
@@ -2474,3 +2219,91 @@ nav .dropdown-menu {
border-bottom-right-radius: $radiuspx;
border-bottom-left-radius: $radiuspx;
}
+
+#usermenu-caret {
+ color: $nav_icon_colour;
+}
+
+#avatar:hover + #usermenu-caret {
+ color: $nav_active_icon_colour;
+}
+
+/* bootstrap overrides */
+blockquote {
+ font-size: $body_font_size;
+}
+
+.dropdown-menu {
+ font-size: $body_font_size;
+ border-radius: $radiuspx;
+}
+
+.dropdown-menu img {
+ border-radius: $radiuspx;
+}
+
+.navbar-inverse {
+ background-image: -webkit-linear-gradient(top, $nav_gradient_top 0%, $nav_gradient_bottom 100%);
+ background-image: linear-gradient(to bottom, $nav_gradient_top 0%, $nav_gradient_bottom 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=$nav_gradient_top, endColorstr=$nav_gradient_bottom, GradientType=0);
+ background-color: $nav_bg;
+ border-color: $nav_bd;
+}
+
+.navbar-inverse .navbar-collapse {
+ border-color: $nav_bd;
+}
+
+.navbar-inverse .navbar-nav > .active > a {
+ background-image: -webkit-linear-gradient(top, $nav_active_gradient_top 0%, $nav_active_gradient_bottom 100%);
+ background-image: linear-gradient(to bottom, $nav_active_gradient_top 0%, $nav_active_gradient_bottom 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=$nav_active_gradient_top, endColorstr=$nav_active_gradient_bottom, GradientType=0);
+}
+
+
+.navbar-inverse .navbar-nav > li > a {
+ color: $nav_icon_colour;
+ text-shadow: 0px 0px 0px;
+}
+
+.navbar-inverse .navbar-nav > li > a:hover,
+.navbar-inverse .navbar-nav > li > a:focus {
+ color: $nav_active_icon_colour;
+}
+
+.navbar-inverse .navbar-nav > .active > a,
+.navbar-inverse .navbar-nav > .active > a:hover,
+.navbar-inverse .navbar-nav > .active > a:focus {
+ color: $nav_active_icon_colour;
+}
+
+.navbar-inverse .navbar-nav > .open > a,
+.navbar-inverse .navbar-nav > .open > a:hover,
+.navbar-inverse .navbar-nav > .open > a:focus {
+ background-color: $nav_bd;
+ color: $nav_active_icon_colour;
+}
+
+.navbar-inverse .navbar-toggle {
+ border-color: $nav_bd;
+}
+.navbar-inverse .navbar-toggle:hover,
+.navbar-inverse .navbar-toggle:focus {
+ background-color: $nav_bg;
+}
+
+.navbar-inverse .navbar-toggle .icon-bar {
+ background-color: $nav_active_icon_colour;
+}
+
+#expand-aside {
+ color: $nav_active_icon_colour;
+ padding: 7px 10px;
+}
+
+@media (max-width:767px) {
+ aside#region_1 {
+ background: rgba(0, 0, 0, .1);
+ border-right: 1px solid $nav_bd;
+ }
+}
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index e41fde2b8..7e957a4f4 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -22,6 +22,11 @@ function cmtBbClose(comment, id) {
$(document).ready(function() {
+$('[data-toggle=show_hide]').click(function() {
+ $('#expand-aside-icon').toggleClass('icon-circle-arrow-right').toggleClass('icon-circle-arrow-left');
+ $('#region_1').toggleClass('hidden-xs');
+});
+
$('.group-edit-icon').hover(
function() {
$(this).css('opacity','1.0');},
diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php
index 68a72fffd..608a9bda7 100644
--- a/view/theme/redbasic/php/config.php
+++ b/view/theme/redbasic/php/config.php
@@ -6,7 +6,15 @@ function theme_content(&$a) {
$arr = array();
$arr['schema'] = get_pconfig(local_user(),'redbasic', 'schema' );
- $arr['nav_colour'] = get_pconfig(local_user(),'redbasic', 'nav_colour' );
+ $arr['narrow_navbar'] = get_pconfig(local_user(),'redbasic', 'narrow_navbar' );
+ $arr['nav_bg'] = get_pconfig(local_user(),'redbasic', 'nav_bg' );
+ $arr['nav_gradient_top'] = get_pconfig(local_user(),'redbasic', 'nav_gradient_top' );
+ $arr['nav_gradient_bottom'] = get_pconfig(local_user(),'redbasic', 'nav_gradient_bottom' );
+ $arr['nav_active_gradient_top'] = get_pconfig(local_user(),'redbasic', 'nav_active_gradient_top' );
+ $arr['nav_active_gradient_bottom'] = get_pconfig(local_user(),'redbasic', 'nav_active_gradient_bottom' );
+ $arr['nav_bd'] = get_pconfig(local_user(),'redbasic', 'nav_bd' );
+ $arr['nav_icon_colour'] = get_pconfig(local_user(),'redbasic', 'nav_icon_colour' );
+ $arr['nav_active_icon_colour'] = get_pconfig(local_user(),'redbasic', 'nav_active_icon_colour' );
$arr['link_colour'] = get_pconfig(local_user(),'redbasic', 'link_colour' );
$arr['banner_colour'] = get_pconfig(local_user(),'redbasic', 'banner_colour' );
$arr['bgcolour'] = get_pconfig(local_user(),'redbasic', 'background_colour' );
@@ -33,7 +41,15 @@ function theme_post(&$a) {
if (isset($_POST['redbasic-settings-submit'])) {
set_pconfig(local_user(), 'redbasic', 'schema', $_POST['redbasic_schema']);
- set_pconfig(local_user(), 'redbasic', 'nav_colour', $_POST['redbasic_nav_colour']);
+ set_pconfig(local_user(), 'redbasic', 'narrow_navbar', $_POST['redbasic_narrow_navbar']);
+ set_pconfig(local_user(), 'redbasic', 'nav_bg', $_POST['redbasic_nav_bg']);
+ set_pconfig(local_user(), 'redbasic', 'nav_gradient_top', $_POST['redbasic_nav_gradient_top']);
+ set_pconfig(local_user(), 'redbasic', 'nav_gradient_bottom', $_POST['redbasic_nav_gradient_bottom']);
+ set_pconfig(local_user(), 'redbasic', 'nav_active_gradient_top', $_POST['redbasic_nav_active_gradient_top']);
+ set_pconfig(local_user(), 'redbasic', 'nav_active_gradient_bottom', $_POST['redbasic_nav_active_gradient_bottom']);
+ set_pconfig(local_user(), 'redbasic', 'nav_bd', $_POST['redbasic_nav_bd']);
+ set_pconfig(local_user(), 'redbasic', 'nav_icon_colour', $_POST['redbasic_nav_icon_colour']);
+ set_pconfig(local_user(), 'redbasic', 'nav_active_icon_colour', $_POST['redbasic_nav_active_icon_colour']);
set_pconfig(local_user(), 'redbasic', 'link_colour', $_POST['redbasic_link_colour']);
set_pconfig(local_user(), 'redbasic', 'background_colour', $_POST['redbasic_background_colour']);
set_pconfig(local_user(), 'redbasic', 'banner_colour', $_POST['redbasic_banner_colour']);
@@ -58,8 +74,6 @@ function theme_post(&$a) {
function redbasic_form(&$a, $arr) {
-
-
$scheme_choices = array();
$scheme_choices["---"] = t("Default");
$files = glob('view/theme/redbasic/schema/*.php');
@@ -70,22 +84,6 @@ function redbasic_form(&$a, $arr) {
$scheme_choices[$f] = $scheme_name;
}
}
-
-
- $nav_colours = array (
- '' => t('Scheme Default'),
- 'red' => 'red',
- 'pink' => 'pink',
- 'green' => 'green',
- 'blue' => 'blue',
- 'purple' => 'purple',
- 'black' => 'black',
- 'orange' => 'orange',
- 'brown' => 'brown',
- 'grey' => 'grey',
- 'gold' => 'gold',
- 'silver' => t('silver'),
- );
if(feature_enabled(local_user(),'expert'))
$expert = 1;
@@ -97,7 +95,15 @@ if(feature_enabled(local_user(),'expert'))
'$expert' => $expert,
'$title' => t("Theme settings"),
'$schema' => array('redbasic_schema', t('Set scheme'), $arr['schema'], '', $scheme_choices),
- '$nav_colour' => array('redbasic_nav_colour', t('Navigation bar colour'), $arr['nav_colour'], '', $nav_colours),
+ '$narrow_navbar' => array('redbasic_narrow_navbar',t('Narrow navbar'),$arr['narrow_navbar']),
+ '$nav_bg' => array('redbasic_nav_bg', t('Navigation bar background colour'), $arr['nav_bg']),
+ '$nav_gradient_top' => array('redbasic_nav_gradient_top', t('Navigation bar gradient top colour'), $arr['nav_gradient_top']),
+ '$nav_gradient_bottom' => array('redbasic_nav_gradient_bottom', t('Navigation bar gradient bottom colour'), $arr['nav_gradient_bottom']),
+ '$nav_active_gradient_top' => array('redbasic_nav_active_gradient_top', t('Navigation active button gradient top colour'), $arr['nav_active_gradient_top']),
+ '$nav_active_gradient_bottom' => array('redbasic_nav_active_gradient_bottom', t('Navigation active button gradient bottom colour'), $arr['nav_active_gradient_bottom']),
+ '$nav_bd' => array('redbasic_nav_bd', t('Navigation bar border colour '), $arr['nav_bd']),
+ '$nav_icon_colour' => array('redbasic_nav_icon_colour', t('Navigation bar icon colour '), $arr['nav_icon_colour']),
+ '$nav_active_icon_colour' => array('redbasic_nav_active_icon_colour', t('Navigation bar active icon colour '), $arr['nav_active_icon_colour']),
'$link_colour' => array('redbasic_link_colour', t('link colour'), $arr['link_colour'], '', $link_colours),
'$banner_colour' => array('redbasic_banner_colour', t('Set font-colour for banner'), $arr['banner_colour']),
'$bgcolour' => array('redbasic_background_colour', t('Set the background colour'), $arr['bgcolour']),
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 8d5c23a03..8fb4de381 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -7,13 +7,16 @@ if(! $a->install) {
if($uid)
load_pconfig($uid,'redbasic');
-// Nav colours are mess. Set $nav_colour as a single word for the sake of letting folk pick one
-// but it actually consists of at least two colours to form a gradient - $nav_bg_1 and $nav_bg_2
-// A further two - $nav_bg_3 and $nav_bg_4 are used to create the hover, if any particular scheme
-// wants to implement that
- $nav_colour = get_pconfig($uid, "redbasic", "nav_colour");
-
// Load the owners pconfig
+ $nav_bg = get_pconfig($uid, "redbasic", "nav_bg");
+ $nav_gradient_top = get_pconfig($uid, "redbasic", "nav_gradient_top");
+ $nav_gradient_bottom = get_pconfig($uid, "redbasic", "nav_gradient_bottom");
+ $nav_active_gradient_top = get_pconfig($uid, "redbasic", "nav_active_gradient_top");
+ $nav_active_gradient_bottom = get_pconfig($uid, "redbasic", "nav_active_gradient_bottom");
+ $nav_bd = get_pconfig($uid, "redbasic", "nav_bd");
+ $nav_icon_colour = get_pconfig($uid, "redbasic", "nav_icon_colour");
+ $nav_active_icon_colour = get_pconfig($uid, "redbasic", "nav_active_icon_colour");
+ $narrow_navbar = get_pconfig($uid,'redbasic','narrow_navbar');
$banner_colour = get_pconfig($uid,'redbasic','banner_colour');
$link_colour = get_pconfig($uid, "redbasic", "link_colour");
$schema = get_pconfig($uid,'redbasic','schema');
@@ -36,10 +39,16 @@ if(! $a->install) {
}
-// Now load the scheme. If a value is changed above, we'll keep the settings
-// If not, we'll keep those defined by the schema
-// Setting $scheme to '' wasn't working for some reason, so we'll check it's
-// not --- like the mobile theme does instead.
+ // Now load the scheme. If a value is changed above, we'll keep the settings
+ // If not, we'll keep those defined by the schema
+ // Setting $schema to '' wasn't working for some reason, so we'll check it's
+ // not --- like the mobile theme does instead.
+
+
+ // Allow layouts to over-ride the schema
+
+ if($_REQUEST['schema'])
+ $schema = $_REQUEST['schema'];
if (($schema) && ($schema != '---')) {
// Check it exists, because this setting gets distributed to clones
@@ -61,17 +70,28 @@ if(! $a->install) {
//Set some defaults - we have to do this after pulling owner settings, and we have to check for each setting
//individually. If we don't, we'll have problems if a user has set one, but not all options.
- if (! $nav_colour) {
- $nav_colour = "red";
- $nav_bg_1 = "#f88";
- $nav_bg_2 = "#b00";
- $nav_bg_3 = "#f00";
- $nav_bg_4 = "#b00";
- }
+ if (! $nav_bg)
+ $nav_bg = "#222";
+ if (! $nav_gradient_top)
+ $nav_gradient_top = "#3c3c3c";
+ if (! $nav_gradient_bottom)
+ $nav_gradient_bottom = "#222";
+ if (! $nav_active_gradient_top)
+ $nav_active_gradient_top = "#222";
+ if (! $nav_active_gradient_bottom)
+ $nav_active_gradient_bottom = "#282828";
+ if (! $nav_bd)
+ $nav_bd = "#222";
+ if (! $nav_icon_colour)
+ $nav_icon_colour = "#999";
+ if (! $nav_active_icon_colour)
+ $nav_active_icon_colour = "#fff";
if (! $link_colour)
$link_colour = "#0080FF";
if (! $banner_colour)
- $banner_colour = "fff";
+ $banner_colour = "#fff";
+ if (! $search_background)
+ $search_background = "#eee";
if (! $bgcolour)
$bgcolour = "#fdfdfd";
if (! $background_image)
@@ -116,70 +136,20 @@ if(! $a->install) {
$nav_float_min_opacity = (float) $nav_min_opacity;
$nav_percent_min_opacity = (int) 100 * $nav_min_opacity;
}
-
-// Nav colours have nested values, so we have to define the actual variables
-// used in the CSS from the higher level "red", "black", etc here
- if ($nav_colour == "red") {
- $nav_bg_1 = $nav_bg_3 = "#ba002f";
- $nav_bg_2 = $nav_bg_4 = "#ad002c";
- $search_background = "#EEEEEE";
- $active_colour = '#444444';
- }
-
- if ($nav_colour == "black") {
- $nav_bg_1 = $nav_bg_3 = "#000";
- $nav_bg_2 = $nav_bg_4 = "#222";
- $search_background = '#EEEEEE';
- $active_colour = '#AAAAAA';
- }
- if ($nav_colour == "silver") {
- $nav_bg_1 = $nav_bg_2 = $nav_bg_3 = $nav_bg_4 = "silver";
- $search_background = '#EEEEEE';
- }
- if($nav_colour === "pink") {
- $nav_bg_1 = $nav_bg_3 = "#FFC1CA";
- $nav_bg_2 = $nav_bg_4 = "#FFC1CA";
- }
- if($nav_colour === "green") {
- $nav_bg_1 = $nav_bg_3 = "#5CD65C";
- $nav_bg_2 = $nav_bg_4 = "#5CD65C";
- }
- if($nav_colour === "blue") {
- $nav_bg_1 = $nav_bg_3 = "#1872a2";
- $nav_bg_2 = $nav_bg_4 = "#1872a2";
- }
- if($nav_colour === "purple") {
- $nav_bg_1 = $nav_bg_3 = "#551A8B";
- $nav_bg_2 = $nav_bg_4 = "#551A8B";
- }
- if($nav_colour === "orange") {
- $nav_bg_1 = $nav_bg_3 = "#FF3D0D";
- $nav_bg_2 = $nav_bg_4 = "#FF3D0D";
- }
- if($nav_colour === "brown") {
- $nav_bg_1 = $nav_bg_3 = "#330000";
- $nav_bg_2 = $nav_bg_4 = "#330000";
- }
- if($nav_colour === "grey") {
- $nav_bg_1 = $nav_bg_3 = "#2e2f2e";
- $nav_bg_2 = $nav_bg_4 = "#2e2f2e";
- }
- if($nav_colour === "gold") {
- $nav_bg_1 = $nav_bg_3 = "#FFAA00";
- $nav_bg_2 = $nav_bg_4 = "#FFAA00";
- }
-
-
// Apply the settings
if(file_exists('view/theme/redbasic/css/style.css')) {
$x = file_get_contents('view/theme/redbasic/css/style.css');
$options = array (
-'$nav_bg_1' => $nav_bg_1,
-'$nav_bg_2' => $nav_bg_2,
-'$nav_bg_3' => $nav_bg_3,
-'$nav_bg_4' => $nav_bg_4,
+'$nav_bg' => $nav_bg,
+'$nav_gradient_top' => $nav_gradient_top,
+'$nav_gradient_bottom' => $nav_gradient_bottom,
+'$nav_active_gradient_top' => $nav_active_gradient_top,
+'$nav_active_gradient_bottom' => $nav_active_gradient_bottom,
+'$nav_bd' => $nav_bd,
+'$nav_icon_colour' => $nav_icon_colour,
+'$nav_active_icon_colour' => $nav_active_icon_colour,
'$link_colour' => $link_colour,
'$banner_colour' => $banner_colour,
'$search_background' => $search_background,
@@ -207,9 +177,11 @@ $options = array (
);
echo str_replace(array_keys($options), array_values($options), $x);
-
}
if($sloppy_photos && file_exists('view/theme/redbasic/css/sloppy_photos.css')) {
echo file_get_contents('view/theme/redbasic/css/sloppy_photos.css');
}
+if($narrow_navbar && file_exists('view/theme/redbasic/css/narrow_navbar.css')) {
+ echo file_get_contents('view/theme/redbasic/css/narrow_navbar.css');
+}
diff --git a/view/theme/redbasic/php/theme_init.php b/view/theme/redbasic/php/theme_init.php
index ccb85a070..12f49efa7 100644
--- a/view/theme/redbasic/php/theme_init.php
+++ b/view/theme/redbasic/php/theme_init.php
@@ -1,5 +1,14 @@
{{if $expert}}
-{{include file="field_select.tpl" field=$nav_colour}}
+{{include file="field_checkbox.tpl" field=$narrow_navbar}}
+{{include file="field_input.tpl" field=$nav_bg}}
+{{include file="field_input.tpl" field=$nav_gradient_top}}
+{{include file="field_input.tpl" field=$nav_gradient_bottom}}
+{{include file="field_input.tpl" field=$nav_active_gradient_top}}
+{{include file="field_input.tpl" field=$nav_active_gradient_bottom}}
+{{include file="field_input.tpl" field=$nav_bd}}
+{{include file="field_input.tpl" field=$nav_icon_colour}}
+{{include file="field_input.tpl" field=$nav_active_icon_colour}}
{{include file="field_input.tpl" field=$banner_colour}}
{{include file="field_input.tpl" field=$link_colour}}
{{include file="field_input.tpl" field=$bgcolour}}
diff --git a/view/tpl/abook_edit.tpl b/view/tpl/abook_edit.tpl
index 274d0d5de..b7a02c15e 100755
--- a/view/tpl/abook_edit.tpl
+++ b/view/tpl/abook_edit.tpl
@@ -34,6 +34,7 @@
+
{{if $is_pending}}