Noosfero/noosfero

View on GitHub
po/noosfero-doc.pot

Summary

Maintainability
Test Coverage
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2017-10-06 18:04+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#. type: Content of: <h1>
#: doc/noosfero/plugins/send_email.en.xhtml:1
msgid "SendEmailPlugin"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:2
msgid "Allows to send e-mails through an e-mail form."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/send_email.en.xhtml:3 doc/noosfero/plugins/variables.en.xhtml:3 doc/noosfero/plugins/google_cse.en.xhtml:3 doc/noosfero/plugins/google_analytics.en.xhtml:3
msgid "Usage"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/send_email.en.xhtml:5
msgid ""
"Create a <span class=\"caps\">HTML</span> form using RawHTMLBlock that "
"invokes the {sendemail} action"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/send_email.en.xhtml:6
msgid "Add a &#8220;to&#8221; and &#8220;message&#8221; field and a submit button"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/send_email.en.xhtml:7
msgid "Make sure to fill in allowed &#8216;to&#8217; addresses in plugin settings"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/send_email.en.xhtml:9
msgid "<span class=\"caps\">HTML</span> form"
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/plugins/send_email.en.xhtml:10
msgid "Form action"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:11
msgid "You should use {sendemail} macro as form action, it will be expanded as:"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/send_email.en.xhtml:13
msgid ""
"<strong>/profile/&lt;identifier&gt;/plugin/send_email/deliver</strong> in "
"profile context"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/send_email.en.xhtml:14
msgid "<strong>/plugin/send_email/deliver</strong> in environment context"
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/plugins/send_email.en.xhtml:16
msgid "&#8216;Subject&#8217; field"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:17
msgid "Subject of message."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:18
msgid "(default: &#8216;New mail&#8217;)"
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/plugins/send_email.en.xhtml:19
msgid "&#8216;Message&#8217; field"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:20
msgid "Body of message."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:21 doc/noosfero/plugins/send_email.en.xhtml:24
msgid "(required)"
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/plugins/send_email.en.xhtml:22
msgid "&#8216;To&#8217; field"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:23
msgid "Target address. Accepts multiple addresses separated by comma."
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/plugins/send_email.en.xhtml:25
msgid "extra fields"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:26
msgid ""
"Each other params in <span class=\"caps\">HTML</span> form will compose "
"message body in a format &#8220;key: value&#8221;"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/send_email.en.xhtml:27 doc/noosfero/plugins/variables.en.xhtml:19
msgid "Example"
msgstr ""

#. type: Content of: <pre>
#: doc/noosfero/plugins/send_email.en.xhtml:29
#, no-wrap
msgid ""
"&lt;form action='{sendemail}' method='post'&gt;\n"
"   To: &lt;input type='text' name='to'/&gt;\n"
"   Subject: &lt;input type='text' name='subject'/&gt;\n"
"   Message: &lt;input type='text' name='message'/&gt;\n"
"   &lt;input type='submit'/&gt;\n"
"&lt;/form&gt;\n"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/send_email.en.xhtml:36
msgid "Options"
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/plugins/send_email.en.xhtml:37
msgid "Using ajax"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:38
msgid ""
"Ajax is supported using #ajax-form as id of <span class=\"caps\">HTML</span> "
"form."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:39
msgid "Example:"
msgstr ""

#. type: Content of: <pre>
#: doc/noosfero/plugins/send_email.en.xhtml:41
#, no-wrap
msgid ""
"&lt;form action='{sendemail}' id='ajax-form'&gt;\n"
"   To: &lt;input type='text' name='to'/&gt;\n"
"   Subject: &lt;input type='text' name='subject'/&gt;\n"
"   Message: &lt;input type='text' name='message'/&gt;\n"
"   &lt;input type='submit'/&gt;\n"
"&lt;/form&gt;\n"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/send_email.en.xhtml:48 doc/noosfero/plugins/variables.en.xhtml:26 doc/noosfero/plugins/google_analytics.en.xhtml:19
msgid "Info"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/send_email.en.xhtml:49
msgid ""
"This plugin was inspired by <a "
"href=\"http://foswiki.org/Extensions/SendEmailPlugin\">Foswiki "
"SendEmailPlugin</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/plugins/variables.en.xhtml:1
msgid "Variables Plugin"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/variables.en.xhtml:2
msgid "A set of simple variables to be used in a macro context."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/variables.en.xhtml:5
msgid "Create a <span class=\"caps\">HTML</span> content using TextArticle or other"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/variables.en.xhtml:6
msgid "article with <span class=\"caps\">HTML</span> support"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/variables.en.xhtml:7
msgid ""
"Add a <span class=\"caps\">HTML</span> div tag with css class "
"&#8220;macro&#8221; (see Example)"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/variables.en.xhtml:8
msgid "Add inner that div tag the variable desired, like {profile}"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/variables.en.xhtml:10
msgid "Usage with TextArticle"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/variables.en.xhtml:11
msgid "The Noosfero&#8217;s macros add a extra button in toolbar of the editor"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/variables.en.xhtml:12
msgid "to use macros in a single way, that way this plugin add a option"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/variables.en.xhtml:13
msgid "called &#8220;Variables&#8221; under this option."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/variables.en.xhtml:14
msgid "Supported variables"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/variables.en.xhtml:16
msgid "{profile} &#8211; will be replaced by the identifier of the profile"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/variables.en.xhtml:17
msgid "{name} &#8211; will be replaced by the name of the profile"
msgstr ""

#. type: Content of: <pre>
#: doc/noosfero/plugins/variables.en.xhtml:21
#, no-wrap
msgid ""
"&lt;div class=\"macro\" data-macro=\"variables_plugin/profile\"&gt;\n"
"  the identifier of the profile = {profile}\n"
"  the name of the profile = {name}\n"
"&lt;/div&gt;\n"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/variables.en.xhtml:27
msgid "This plugin was inspired by the solution proposed by the Serpro in"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/variables.en.xhtml:28
msgid "the merge-request #419 on the Gitorious:"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/variables.en.xhtml:30
msgid "https://gitorious.org/noosfero/noosfero/merge_requests/419"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/variables.en.xhtml:32
msgid "And improved by the guys from the UnB."
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/plugins/index.en.xhtml:1
msgid "Plugins"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/plugins/google_cse.en.xhtml:1
msgid "GoogleCsePlugin"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/google_cse.en.xhtml:2
msgid ""
"A plugin that uses the Google Custom Search as Noosfero general search "
"engine."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/google_cse.en.xhtml:5
msgid "Register a Google Custom Search ID at http://www.google.com/cse"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/google_cse.en.xhtml:6
msgid "Set at least basic config, site list and look and fell of your Google Cse ID"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/google_cse.en.xhtml:7
msgid "Configure Noosfero environment with this ID"
msgstr ""

#. type: Content of: <ul><li><ul><li>
#: doc/noosfero/plugins/google_cse.en.xhtml:9
msgid "&gt;&gt; env = Environment.find( &#8230; )"
msgstr ""

#. type: Content of: <ul><li><ul><li>
#: doc/noosfero/plugins/google_cse.en.xhtml:10
msgid ""
"&gt;&gt; env.settings[:google_cse_id] = &#8216;&lt;<span "
"class=\"caps\">PUT</span> ID <span class=\"caps\">HERE</span>&gt;&#8217;"
msgstr ""

#. type: Content of: <ul><li><ul><li>
#: doc/noosfero/plugins/google_cse.en.xhtml:11
msgid "&gt;&gt; env.save!"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/google_cse.en.xhtml:13
msgid ""
"That&#8217;s all! The top search text-field of Noosfero will be used to make "
"searches"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/plugins/google_analytics.en.xhtml:1
msgid "Google Analytics"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/google_analytics.en.xhtml:2
msgid "Tracking and web analytics for people and communities."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/google_analytics.en.xhtml:4
msgid "Create and configure Google Analytics account following these steps:"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/plugins/google_analytics.en.xhtml:6
msgid "Open <a href=\"http://www.google.com/analytics/\">Google Analytics</a>"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/plugins/google_analytics.en.xhtml:7 doc/noosfero/plugins/google_analytics.en.xhtml:7
msgid "Google Setup - Step 1"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/plugins/google_analytics.en.xhtml:8
msgid "Sign in to Google Analytics"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/plugins/google_analytics.en.xhtml:9 doc/noosfero/plugins/google_analytics.en.xhtml:9
msgid "Google Setup - Step 2"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/plugins/google_analytics.en.xhtml:10
msgid "Follow signup instructions"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/plugins/google_analytics.en.xhtml:11 doc/noosfero/plugins/google_analytics.en.xhtml:11
msgid "Google Setup - Step 3"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/plugins/google_analytics.en.xhtml:12
msgid ""
"Fill in <em>Website&#8217;s <span class=\"caps\">URL</span></em> with your "
"profile address (eg.: softwarelivre.org/joenio), <em>Account Name</em> with "
"your name and read and accept terms of use"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/plugins/google_analytics.en.xhtml:13 doc/noosfero/plugins/google_analytics.en.xhtml:13
msgid "Google Setup - Step 4"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/plugins/google_analytics.en.xhtml:14
msgid ""
"Accept default options, save and take note of your <em>Web Property ID</em> "
"(eg.: UA-23455430-3)"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/plugins/google_analytics.en.xhtml:15 doc/noosfero/plugins/google_analytics.en.xhtml:15
msgid "Google Setup - Step 5"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/plugins/google_analytics.en.xhtml:16
msgid ""
"Login to Noosfero, go to your control panel, follow <em>Edit Profile</em> "
"and fill in <em>Google Analytics Profile ID</em> with ID above"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/plugins/google_analytics.en.xhtml:17 doc/noosfero/plugins/google_analytics.en.xhtml:17
msgid "Google Setup - Step 6"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/google_analytics.en.xhtml:21
msgid "<a href=\"http://support.google.com/analytics\">Google Analytics Support</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:1
msgid "Shopping Cart"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:2
msgid "<em>Buy the products you want.</em>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:4
msgid "<a href=\"#how-to-access\">How to Access</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:5
msgid "<a href=\"#adding-new-products\">Adding new products</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:6
msgid "<a href=\"#editing-quantities\">Editing quantities</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:7
msgid "<a href=\"#removing-products\">Removing products</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:8
msgid "<a href=\"#cleaning-cart\">Cleaning the cart</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:9
msgid "<a href=\"#show-and-hide\">Show and hide cart</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:10
msgid "<a href=\"#checkout\">Checking out</a>"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:12 doc/noosfero/admin/send-email-members.en.xhtml:7 doc/noosfero/admin/export-users-list.en.xhtml:7 doc/noosfero/navigation/searching.en.xhtml:8 doc/noosfero/navigation/person-balloon.en.xhtml:8 doc/noosfero/navigation/community-balloon.en.xhtml:8 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:8 doc/noosfero/navigation/finding-more-active-people.en.xhtml:8 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:8 doc/noosfero/navigation/advanced-search.en.xhtml:8 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:8 doc/noosfero/navigation/searching-people.en.xhtml:8 doc/noosfero/navigation/searching-communities.en.xhtml:8 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:8 doc/noosfero/navigation/searching-products-services.en.xhtml:8 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:8 doc/noosfero/navigation/searching-enterprises.en.xhtml:8 doc/noosfero/community/joining-community.en.xhtml:8 doc/noosfero/community/send-email-members.en.xhtml:8 doc/noosfero/community/editing-appearance.en.xhtml:8 doc/noosfero/community/invite-contacts.en.xhtml:8 doc/noosfero/community/editing-sideboxes.en.xhtml:8 doc/noosfero/community/creating-community.en.xhtml:8 doc/noosfero/community/moderating-articles.en.xhtml:8 doc/noosfero/community/accepting-members.en.xhtml:8 doc/noosfero/community/editing-header-footer.en.xhtml:8 doc/noosfero/cms/posting-on-blog.en.xhtml:8 doc/noosfero/cms/spreading-articles.en.xhtml:8 doc/noosfero/cms/managing-content.en.xhtml:10 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:8 doc/noosfero/cms/creating-blog.en.xhtml:8 doc/noosfero/cms/writing-advanced-article.en.xhtml:13 doc/noosfero/cms/writing-article.en.xhtml:8 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:8 doc/noosfero/enterprise/editing-appearance.en.xhtml:8 doc/noosfero/enterprise/activating-enterprise.en.xhtml:9 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:8 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:8 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:8 doc/noosfero/enterprise/editing-header-footer.en.xhtml:8 doc/noosfero/enterprise/adding-product.en.xhtml:8 doc/noosfero/user/changing-password.en.xhtml:8 doc/noosfero/user/removing-comments.en.xhtml:8 doc/noosfero/user/removing-friends.en.xhtml:8 doc/noosfero/user/editing-appearance.en.xhtml:8 doc/noosfero/user/logout.en.xhtml:8 doc/noosfero/user/sending-scraps.en.xhtml:8 doc/noosfero/user/invite-contacts.en.xhtml:8 doc/noosfero/user/commenting.en.xhtml:9 doc/noosfero/user/login.en.xhtml:8 doc/noosfero/user/answering-scraps.en.xhtml:8 doc/noosfero/user/deleting-profile.en.xhtml:8 doc/noosfero/user/registering-new-user.en.xhtml:8 doc/noosfero/user/viewing-profiles-activity.en.xhtml:8 doc/noosfero/user/editing-sideboxes.en.xhtml:8 doc/noosfero/user/sending-messages.en.xhtml:8 doc/noosfero/user/accepting-friends.en.xhtml:8 doc/noosfero/user/adding-friends.en.xhtml:8 doc/noosfero/user/editing-header-footer.en.xhtml:8 doc/noosfero/user/editing-person-info.en.xhtml:8
msgid "How to access"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:13
msgid ""
"First of all, you need to be at the page of the enterprise from which you "
"are going to buy your products:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:14 doc/noosfero/plugins/shopping_cart.en.xhtml:14
msgid "Enterprise Homepage"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:15
msgid ""
"Now you are going to access the products&#8217; page of this "
"enterprise. Most of the enterprises has a link at the side bar directing you "
"to their products&#8217; list:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:16 doc/noosfero/plugins/shopping_cart.en.xhtml:16
msgid "Link to the products list"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:17
msgid ""
"If there is no link to the products, you can try accessing the list straight "
"through the url:"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:18
msgid "/catalog/enterprise-identifier."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:19
msgid "Adding new products"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:20
msgid ""
"After reaching the products&#8217; list, if the enterprise enabled the "
"shopping-cart plugin, you will see the button &#8216;Add to cart&#8217; on "
"each product listed. This is how it looks like in the catalog:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:21 doc/noosfero/plugins/shopping_cart.en.xhtml:21
msgid "Catalog"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:22
msgid "And here in the products search:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:23 doc/noosfero/plugins/shopping_cart.en.xhtml:23
msgid "Search"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:24
msgid ""
"If you press this button, you will see in the up-right corner your cart "
"sliding down with the new product added:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:25 doc/noosfero/plugins/shopping_cart.en.xhtml:25
msgid "First product"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:26
msgid ""
"From now on, your cart will always be there until it gets empty or you "
"choose to hide it."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:27
msgid ""
"If you want to add new products just do the same thing. If you try to add a "
"product that&#8217;s already in your cart, it will add one to the quantity "
"of that product."
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:28 doc/noosfero/plugins/shopping_cart.en.xhtml:28
msgid "Cart with some products"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:29
msgid ""
"<span class=\"caps\">OBS</span>: you can only add products from the same "
"enterprise in the cart. If you want to buy products from different "
"enterprises, then you should finish the buy with one and then start the new "
"buy with the other."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:30
msgid "Editing quantities"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:31
msgid ""
"To edit the quantity of each product you have in your cart is really "
"easy. You just need to click on the quantity and write the quantity you "
"want:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:32 doc/noosfero/plugins/shopping_cart.en.xhtml:32
msgid "Editing quantity"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:33
msgid "After leaving the field, the quantity will be automatically updated:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:34 doc/noosfero/plugins/shopping_cart.en.xhtml:34
msgid "Quantity updated"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:35
msgid "Removing products"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:36
msgid ""
"You can remove any product from your cart simply pressing the "
"&#8216;delete&#8217; button (which has a little thrash as icon):"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:37 doc/noosfero/plugins/shopping_cart.en.xhtml:37
msgid "Deleting product"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:38
msgid "After pressing this button you will be asked for a confirmation:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:39 doc/noosfero/plugins/shopping_cart.en.xhtml:39
msgid "Delete confirmation"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:40
msgid ""
"And after confirming, the product will be removed. If the product removed is "
"the last one, the cart will disappear too."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:41
msgid "Cleaning the cart"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:42
msgid ""
"If you changed your mind about the products you added or you did too many "
"mistakes to keep going on, at any time you can clean your cart and start it "
"again. Just follow the link &#8220;Clean cart&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:43 doc/noosfero/plugins/shopping_cart.en.xhtml:43
msgid "Cleaning cart"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:44
msgid "After following this link you will be asked for a confirmation:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:45 doc/noosfero/plugins/shopping_cart.en.xhtml:45
msgid "Cleaning confirmation"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:46
msgid "And after confirming, your carted is empty again."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:47
msgid "Show and hide cart"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:48
msgid ""
"The cart is a feature that is always over your page on the top-right corner, "
"so sometimes you might get nervous trying to see something that is under "
"it. Don&#8217;t worry! In you cart is a &#8220;Hide cart&#8221; button:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:49 doc/noosfero/plugins/shopping_cart.en.xhtml:49
msgid "Cart hide"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:50
msgid ""
"This button will slide up your cart when pressed leaving just a little "
"&#8220;Show cart&#8221; so that you can slide it down again:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:51 doc/noosfero/plugins/shopping_cart.en.xhtml:51
msgid "Cart hided"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:52
msgid "When you hide your cart nothing happens to the products you already added."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:53
msgid ""
"If you miss your beatiful cart again just press &#8220;Show cart&#8221; and "
"it will slide down gracefully back to you.  ^^"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:54
msgid "Checking out"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:55
msgid ""
"So, now you already choosed your products and its quantities and want to "
"checkout your products."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:56
msgid ""
"As you can see in your cart, there is a &#8220;Shopping Checkout&#8221; "
"button:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:57 doc/noosfero/plugins/shopping_cart.en.xhtml:57
msgid "Checkout"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:58
msgid ""
"After pressing this button, a box will appear with some fields for you to "
"fill and your cart review:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:59 doc/noosfero/plugins/shopping_cart.en.xhtml:59
msgid "Filling informations"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:60
msgid ""
"If you are already a member of the social network your informations will be "
"filled automatically:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:61 doc/noosfero/plugins/shopping_cart.en.xhtml:61
msgid "Informations automatically filled"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:62
msgid ""
"If due to some reason you fill a field erroneously or do not fill a required "
"field, a little message will appear under the field indicating the problem "
"so that you can fill your informations correctly:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:63 doc/noosfero/plugins/shopping_cart.en.xhtml:63
msgid "Invalid fields"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:64
msgid ""
"After filling your information press the button &#8220;Send buy "
"request&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:65 doc/noosfero/plugins/shopping_cart.en.xhtml:65
msgid "Send request"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:66
msgid ""
"This button will send your request to the enterprise and will also send you "
"an email with your request so that you can confirm the products and your "
"informations. Now the enterprise might contact you to discuss further "
"details."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/plugins/shopping_cart.en.xhtml:67 doc/noosfero/admin/send-email-members.en.xhtml:18 doc/noosfero/admin/export-users-list.en.xhtml:16 doc/noosfero/navigation/searching.en.xhtml:25 doc/noosfero/navigation/person-balloon.en.xhtml:23 doc/noosfero/navigation/community-balloon.en.xhtml:24 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:28 doc/noosfero/navigation/finding-more-active-people.en.xhtml:28 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:28 doc/noosfero/navigation/advanced-search.en.xhtml:31 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:28 doc/noosfero/navigation/searching-people.en.xhtml:27 doc/noosfero/navigation/searching-communities.en.xhtml:27 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:28 doc/noosfero/navigation/searching-products-services.en.xhtml:29 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:28 doc/noosfero/navigation/searching-enterprises.en.xhtml:29 doc/noosfero/community/joining-community.en.xhtml:21 doc/noosfero/community/send-email-members.en.xhtml:28 doc/noosfero/community/editing-appearance.en.xhtml:33 doc/noosfero/community/invite-contacts.en.xhtml:41 doc/noosfero/community/editing-sideboxes.en.xhtml:66 doc/noosfero/community/creating-community.en.xhtml:31 doc/noosfero/community/moderating-articles.en.xhtml:34 doc/noosfero/community/accepting-members.en.xhtml:27 doc/noosfero/community/editing-header-footer.en.xhtml:57 doc/noosfero/cms/posting-on-blog.en.xhtml:26 doc/noosfero/cms/spreading-articles.en.xhtml:35 doc/noosfero/cms/managing-content.en.xhtml:53 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:25 doc/noosfero/cms/creating-blog.en.xhtml:31 doc/noosfero/cms/writing-advanced-article.en.xhtml:65 doc/noosfero/cms/writing-article.en.xhtml:80 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:27 doc/noosfero/enterprise/editing-appearance.en.xhtml:33 doc/noosfero/enterprise/activating-enterprise.en.xhtml:28 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:68 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:36 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:40 doc/noosfero/enterprise/editing-header-footer.en.xhtml:57 doc/noosfero/enterprise/adding-product.en.xhtml:38 doc/noosfero/user/changing-password.en.xhtml:27 doc/noosfero/user/removing-comments.en.xhtml:20 doc/noosfero/user/removing-friends.en.xhtml:27 doc/noosfero/user/editing-appearance.en.xhtml:31 doc/noosfero/user/logout.en.xhtml:19 doc/noosfero/user/sending-scraps.en.xhtml:25 doc/noosfero/user/invite-contacts.en.xhtml:38 doc/noosfero/user/commenting.en.xhtml:24 doc/noosfero/user/login.en.xhtml:20 doc/noosfero/user/answering-scraps.en.xhtml:26 doc/noosfero/user/deleting-profile.en.xhtml:24 doc/noosfero/user/registering-new-user.en.xhtml:30 doc/noosfero/user/viewing-profiles-activity.en.xhtml:21 doc/noosfero/user/editing-sideboxes.en.xhtml:67 doc/noosfero/user/sending-messages.en.xhtml:24 doc/noosfero/user/accepting-friends.en.xhtml:25 doc/noosfero/user/adding-friends.en.xhtml:21 doc/noosfero/user/editing-header-footer.en.xhtml:55 doc/noosfero/user/editing-person-info.en.xhtml:29
msgid "<a href=\"#online-doc-text\">Back to top</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/admin/send-email-members.en.xhtml:1 doc/noosfero/community/send-email-members.en.xhtml:1
msgid "Sending e-mail to members"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/admin/send-email-members.en.xhtml:2
msgid ""
"<em>If you are an environment administrator, you can send e-mail to all "
"members of your environment.</em>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/admin/send-email-members.en.xhtml:4 doc/noosfero/admin/export-users-list.en.xhtml:4 doc/noosfero/navigation/searching.en.xhtml:4 doc/noosfero/navigation/person-balloon.en.xhtml:4 doc/noosfero/navigation/community-balloon.en.xhtml:4 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:4 doc/noosfero/navigation/finding-more-active-people.en.xhtml:4 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:4 doc/noosfero/navigation/advanced-search.en.xhtml:4 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:4 doc/noosfero/navigation/searching-people.en.xhtml:4 doc/noosfero/navigation/searching-communities.en.xhtml:4 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:4 doc/noosfero/navigation/searching-products-services.en.xhtml:4 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:4 doc/noosfero/navigation/searching-enterprises.en.xhtml:4 doc/noosfero/community/joining-community.en.xhtml:4 doc/noosfero/community/send-email-members.en.xhtml:4 doc/noosfero/community/editing-appearance.en.xhtml:4 doc/noosfero/community/invite-contacts.en.xhtml:4 doc/noosfero/community/editing-sideboxes.en.xhtml:4 doc/noosfero/community/creating-community.en.xhtml:4 doc/noosfero/community/moderating-articles.en.xhtml:4 doc/noosfero/community/accepting-members.en.xhtml:4 doc/noosfero/community/editing-header-footer.en.xhtml:4 doc/noosfero/cms/posting-on-blog.en.xhtml:4 doc/noosfero/cms/spreading-articles.en.xhtml:4 doc/noosfero/cms/managing-content.en.xhtml:6 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:4 doc/noosfero/cms/creating-blog.en.xhtml:4 doc/noosfero/cms/writing-advanced-article.en.xhtml:4 doc/noosfero/cms/writing-article.en.xhtml:4 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:4 doc/noosfero/enterprise/editing-appearance.en.xhtml:4 doc/noosfero/enterprise/activating-enterprise.en.xhtml:5 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:4 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:4 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:4 doc/noosfero/enterprise/editing-header-footer.en.xhtml:4 doc/noosfero/enterprise/adding-product.en.xhtml:4 doc/noosfero/user/changing-password.en.xhtml:4 doc/noosfero/user/removing-comments.en.xhtml:4 doc/noosfero/user/removing-friends.en.xhtml:4 doc/noosfero/user/editing-appearance.en.xhtml:4 doc/noosfero/user/logout.en.xhtml:4 doc/noosfero/user/sending-scraps.en.xhtml:4 doc/noosfero/user/invite-contacts.en.xhtml:4 doc/noosfero/user/commenting.en.xhtml:5 doc/noosfero/user/login.en.xhtml:4 doc/noosfero/user/answering-scraps.en.xhtml:4 doc/noosfero/user/deleting-profile.en.xhtml:4 doc/noosfero/user/registering-new-user.en.xhtml:4 doc/noosfero/user/viewing-profiles-activity.en.xhtml:4 doc/noosfero/user/editing-sideboxes.en.xhtml:4 doc/noosfero/user/sending-messages.en.xhtml:4 doc/noosfero/user/accepting-friends.en.xhtml:4 doc/noosfero/user/adding-friends.en.xhtml:4 doc/noosfero/user/editing-header-footer.en.xhtml:4 doc/noosfero/user/editing-person-info.en.xhtml:4
msgid "<a href=\"#howaccess\">How to access</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/admin/send-email-members.en.xhtml:5 doc/noosfero/admin/export-users-list.en.xhtml:5 doc/noosfero/navigation/searching.en.xhtml:5 doc/noosfero/navigation/person-balloon.en.xhtml:5 doc/noosfero/navigation/community-balloon.en.xhtml:5 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:5 doc/noosfero/navigation/finding-more-active-people.en.xhtml:5 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:5 doc/noosfero/navigation/advanced-search.en.xhtml:5 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:5 doc/noosfero/navigation/searching-people.en.xhtml:5 doc/noosfero/navigation/searching-communities.en.xhtml:5 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:5 doc/noosfero/navigation/searching-products-services.en.xhtml:5 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:5 doc/noosfero/navigation/searching-enterprises.en.xhtml:5 doc/noosfero/community/joining-community.en.xhtml:5 doc/noosfero/community/send-email-members.en.xhtml:5 doc/noosfero/community/editing-appearance.en.xhtml:5 doc/noosfero/community/invite-contacts.en.xhtml:5 doc/noosfero/community/editing-sideboxes.en.xhtml:5 doc/noosfero/community/creating-community.en.xhtml:5 doc/noosfero/community/moderating-articles.en.xhtml:5 doc/noosfero/community/accepting-members.en.xhtml:5 doc/noosfero/community/editing-header-footer.en.xhtml:5 doc/noosfero/cms/posting-on-blog.en.xhtml:5 doc/noosfero/cms/spreading-articles.en.xhtml:5 doc/noosfero/cms/managing-content.en.xhtml:7 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:5 doc/noosfero/cms/creating-blog.en.xhtml:5 doc/noosfero/cms/writing-advanced-article.en.xhtml:5 doc/noosfero/cms/writing-article.en.xhtml:5 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:5 doc/noosfero/enterprise/editing-appearance.en.xhtml:5 doc/noosfero/enterprise/activating-enterprise.en.xhtml:6 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:5 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:5 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:5 doc/noosfero/enterprise/editing-header-footer.en.xhtml:5 doc/noosfero/enterprise/adding-product.en.xhtml:5 doc/noosfero/user/changing-password.en.xhtml:5 doc/noosfero/user/removing-comments.en.xhtml:5 doc/noosfero/user/removing-friends.en.xhtml:5 doc/noosfero/user/editing-appearance.en.xhtml:5 doc/noosfero/user/logout.en.xhtml:5 doc/noosfero/user/sending-scraps.en.xhtml:5 doc/noosfero/user/invite-contacts.en.xhtml:5 doc/noosfero/user/commenting.en.xhtml:6 doc/noosfero/user/login.en.xhtml:5 doc/noosfero/user/answering-scraps.en.xhtml:5 doc/noosfero/user/deleting-profile.en.xhtml:5 doc/noosfero/user/registering-new-user.en.xhtml:5 doc/noosfero/user/viewing-profiles-activity.en.xhtml:5 doc/noosfero/user/editing-sideboxes.en.xhtml:5 doc/noosfero/user/sending-messages.en.xhtml:5 doc/noosfero/user/accepting-friends.en.xhtml:5 doc/noosfero/user/adding-friends.en.xhtml:5 doc/noosfero/user/editing-header-footer.en.xhtml:5 doc/noosfero/user/editing-person-info.en.xhtml:5
msgid "<a href=\"#description\">Description</a>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/admin/send-email-members.en.xhtml:9 doc/noosfero/admin/export-users-list.en.xhtml:9 doc/noosfero/community/send-email-members.en.xhtml:10 doc/noosfero/community/invite-contacts.en.xhtml:10 doc/noosfero/community/moderating-articles.en.xhtml:10 doc/noosfero/community/accepting-members.en.xhtml:10 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:10 doc/noosfero/enterprise/activating-enterprise.en.xhtml:11 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:10 doc/noosfero/user/removing-friends.en.xhtml:10 doc/noosfero/user/logout.en.xhtml:10 doc/noosfero/user/invite-contacts.en.xhtml:10 doc/noosfero/user/deleting-profile.en.xhtml:10 doc/noosfero/user/accepting-friends.en.xhtml:10 doc/noosfero/user/editing-person-info.en.xhtml:10
msgid "Find your user menu on top bar:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/admin/send-email-members.en.xhtml:9 doc/noosfero/admin/send-email-members.en.xhtml:9 doc/noosfero/admin/export-users-list.en.xhtml:9 doc/noosfero/admin/export-users-list.en.xhtml:9 doc/noosfero/community/send-email-members.en.xhtml:10 doc/noosfero/community/send-email-members.en.xhtml:10 doc/noosfero/community/editing-appearance.en.xhtml:10 doc/noosfero/community/editing-appearance.en.xhtml:10 doc/noosfero/community/invite-contacts.en.xhtml:10 doc/noosfero/community/invite-contacts.en.xhtml:10 doc/noosfero/community/editing-sideboxes.en.xhtml:10 doc/noosfero/community/editing-sideboxes.en.xhtml:10 doc/noosfero/community/creating-community.en.xhtml:10 doc/noosfero/community/creating-community.en.xhtml:10 doc/noosfero/community/moderating-articles.en.xhtml:10 doc/noosfero/community/moderating-articles.en.xhtml:10 doc/noosfero/community/accepting-members.en.xhtml:10 doc/noosfero/community/accepting-members.en.xhtml:10 doc/noosfero/community/editing-header-footer.en.xhtml:10 doc/noosfero/community/editing-header-footer.en.xhtml:10 doc/noosfero/cms/posting-on-blog.en.xhtml:11 doc/noosfero/cms/posting-on-blog.en.xhtml:11 doc/noosfero/cms/spreading-articles.en.xhtml:13 doc/noosfero/cms/spreading-articles.en.xhtml:13 doc/noosfero/cms/managing-content.en.xhtml:12 doc/noosfero/cms/managing-content.en.xhtml:12 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:11 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:11 doc/noosfero/cms/creating-blog.en.xhtml:10 doc/noosfero/cms/creating-blog.en.xhtml:10 doc/noosfero/cms/writing-article.en.xhtml:10 doc/noosfero/cms/writing-article.en.xhtml:10 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:10 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:10 doc/noosfero/enterprise/editing-appearance.en.xhtml:10 doc/noosfero/enterprise/editing-appearance.en.xhtml:10 doc/noosfero/enterprise/activating-enterprise.en.xhtml:11 doc/noosfero/enterprise/activating-enterprise.en.xhtml:11 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:10 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:10 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:10 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:10 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:10 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:10 doc/noosfero/enterprise/editing-header-footer.en.xhtml:10 doc/noosfero/enterprise/editing-header-footer.en.xhtml:10 doc/noosfero/user/changing-password.en.xhtml:10 doc/noosfero/user/changing-password.en.xhtml:10 doc/noosfero/user/removing-friends.en.xhtml:10 doc/noosfero/user/removing-friends.en.xhtml:10 doc/noosfero/user/editing-appearance.en.xhtml:10 doc/noosfero/user/editing-appearance.en.xhtml:10 doc/noosfero/user/logout.en.xhtml:10 doc/noosfero/user/logout.en.xhtml:10 doc/noosfero/user/invite-contacts.en.xhtml:10 doc/noosfero/user/invite-contacts.en.xhtml:10 doc/noosfero/user/login.en.xhtml:13 doc/noosfero/user/login.en.xhtml:13 doc/noosfero/user/deleting-profile.en.xhtml:10 doc/noosfero/user/deleting-profile.en.xhtml:10 doc/noosfero/user/editing-sideboxes.en.xhtml:10 doc/noosfero/user/editing-sideboxes.en.xhtml:10 doc/noosfero/user/accepting-friends.en.xhtml:10 doc/noosfero/user/accepting-friends.en.xhtml:10 doc/noosfero/user/editing-header-footer.en.xhtml:10 doc/noosfero/user/editing-header-footer.en.xhtml:10 doc/noosfero/user/editing-person-info.en.xhtml:10 doc/noosfero/user/editing-person-info.en.xhtml:10
msgid "Top menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/admin/send-email-members.en.xhtml:10 doc/noosfero/admin/export-users-list.en.xhtml:10
msgid "In user menu, click on Administration:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/admin/send-email-members.en.xhtml:10 doc/noosfero/admin/send-email-members.en.xhtml:10 doc/noosfero/admin/export-users-list.en.xhtml:10 doc/noosfero/admin/export-users-list.en.xhtml:10 doc/noosfero/community/send-email-members.en.xhtml:11 doc/noosfero/community/send-email-members.en.xhtml:11 doc/noosfero/community/editing-appearance.en.xhtml:11 doc/noosfero/community/editing-appearance.en.xhtml:11 doc/noosfero/community/invite-contacts.en.xhtml:11 doc/noosfero/community/invite-contacts.en.xhtml:11 doc/noosfero/community/editing-sideboxes.en.xhtml:11 doc/noosfero/community/editing-sideboxes.en.xhtml:11 doc/noosfero/community/creating-community.en.xhtml:11 doc/noosfero/community/creating-community.en.xhtml:11 doc/noosfero/community/moderating-articles.en.xhtml:11 doc/noosfero/community/moderating-articles.en.xhtml:11 doc/noosfero/community/accepting-members.en.xhtml:11 doc/noosfero/community/accepting-members.en.xhtml:11 doc/noosfero/community/editing-header-footer.en.xhtml:11 doc/noosfero/community/editing-header-footer.en.xhtml:11 doc/noosfero/cms/posting-on-blog.en.xhtml:12 doc/noosfero/cms/posting-on-blog.en.xhtml:12 doc/noosfero/cms/spreading-articles.en.xhtml:14 doc/noosfero/cms/spreading-articles.en.xhtml:14 doc/noosfero/cms/managing-content.en.xhtml:13 doc/noosfero/cms/managing-content.en.xhtml:13 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:12 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:12 doc/noosfero/cms/creating-blog.en.xhtml:11 doc/noosfero/cms/creating-blog.en.xhtml:11 doc/noosfero/cms/writing-article.en.xhtml:11 doc/noosfero/cms/writing-article.en.xhtml:11 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:11 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:11 doc/noosfero/enterprise/editing-appearance.en.xhtml:11 doc/noosfero/enterprise/editing-appearance.en.xhtml:11 doc/noosfero/enterprise/activating-enterprise.en.xhtml:12 doc/noosfero/enterprise/activating-enterprise.en.xhtml:12 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:11 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:11 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:11 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:11 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:11 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:11 doc/noosfero/enterprise/editing-header-footer.en.xhtml:11 doc/noosfero/enterprise/editing-header-footer.en.xhtml:11 doc/noosfero/user/changing-password.en.xhtml:11 doc/noosfero/user/changing-password.en.xhtml:11 doc/noosfero/user/editing-appearance.en.xhtml:11 doc/noosfero/user/editing-appearance.en.xhtml:11 doc/noosfero/user/deleting-profile.en.xhtml:11 doc/noosfero/user/deleting-profile.en.xhtml:11 doc/noosfero/user/editing-sideboxes.en.xhtml:11 doc/noosfero/user/editing-sideboxes.en.xhtml:11 doc/noosfero/user/accepting-friends.en.xhtml:11 doc/noosfero/user/accepting-friends.en.xhtml:11 doc/noosfero/user/editing-header-footer.en.xhtml:11 doc/noosfero/user/editing-header-footer.en.xhtml:11 doc/noosfero/user/editing-person-info.en.xhtml:11 doc/noosfero/user/editing-person-info.en.xhtml:11
msgid "Control panel on menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/admin/send-email-members.en.xhtml:11 doc/noosfero/admin/export-users-list.en.xhtml:11
msgid "Then, click on &#8220;Manage users&#8221; link:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/admin/send-email-members.en.xhtml:11 doc/noosfero/admin/send-email-members.en.xhtml:11 doc/noosfero/admin/export-users-list.en.xhtml:11 doc/noosfero/admin/export-users-list.en.xhtml:11
msgid "Manage users in admin panel"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/admin/send-email-members.en.xhtml:13 doc/noosfero/admin/export-users-list.en.xhtml:13 doc/noosfero/navigation/searching.en.xhtml:11 doc/noosfero/navigation/person-balloon.en.xhtml:10 doc/noosfero/navigation/community-balloon.en.xhtml:10 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:11 doc/noosfero/navigation/finding-more-active-people.en.xhtml:11 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:11 doc/noosfero/navigation/advanced-search.en.xhtml:10 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:11 doc/noosfero/navigation/searching-people.en.xhtml:11 doc/noosfero/navigation/searching-communities.en.xhtml:11 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:11 doc/noosfero/navigation/searching-products-services.en.xhtml:11 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:11 doc/noosfero/navigation/searching-enterprises.en.xhtml:11 doc/noosfero/community/joining-community.en.xhtml:11 doc/noosfero/community/send-email-members.en.xhtml:15 doc/noosfero/community/editing-appearance.en.xhtml:16 doc/noosfero/community/invite-contacts.en.xhtml:15 doc/noosfero/community/editing-sideboxes.en.xhtml:16 doc/noosfero/community/creating-community.en.xhtml:14 doc/noosfero/community/moderating-articles.en.xhtml:15 doc/noosfero/community/accepting-members.en.xhtml:15 doc/noosfero/community/editing-header-footer.en.xhtml:16 doc/noosfero/cms/posting-on-blog.en.xhtml:15 doc/noosfero/cms/spreading-articles.en.xhtml:26 doc/noosfero/cms/managing-content.en.xhtml:16 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:15 doc/noosfero/cms/creating-blog.en.xhtml:14 doc/noosfero/cms/writing-advanced-article.en.xhtml:15 doc/noosfero/cms/writing-article.en.xhtml:14 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:15 doc/noosfero/enterprise/editing-appearance.en.xhtml:16 doc/noosfero/enterprise/activating-enterprise.en.xhtml:14 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:16 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:15 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:15 doc/noosfero/enterprise/editing-header-footer.en.xhtml:16 doc/noosfero/enterprise/adding-product.en.xhtml:12 doc/noosfero/user/changing-password.en.xhtml:14 doc/noosfero/user/removing-comments.en.xhtml:10 doc/noosfero/user/removing-friends.en.xhtml:14 doc/noosfero/user/editing-appearance.en.xhtml:14 doc/noosfero/user/logout.en.xhtml:13 doc/noosfero/user/sending-scraps.en.xhtml:13 doc/noosfero/user/invite-contacts.en.xhtml:14 doc/noosfero/user/commenting.en.xhtml:13 doc/noosfero/user/login.en.xhtml:10 doc/noosfero/user/answering-scraps.en.xhtml:12 doc/noosfero/user/deleting-profile.en.xhtml:13 doc/noosfero/user/registering-new-user.en.xhtml:13 doc/noosfero/user/viewing-profiles-activity.en.xhtml:13 doc/noosfero/user/editing-sideboxes.en.xhtml:14 doc/noosfero/user/sending-messages.en.xhtml:14 doc/noosfero/user/accepting-friends.en.xhtml:13 doc/noosfero/user/adding-friends.en.xhtml:10 doc/noosfero/user/editing-header-footer.en.xhtml:14 doc/noosfero/user/editing-person-info.en.xhtml:13
msgid "Description"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/admin/send-email-members.en.xhtml:15
msgid ""
"In &#8220;Manage users&#8221;, click on &#8220;Send e-mail to users&#8221; "
"link:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/admin/send-email-members.en.xhtml:15 doc/noosfero/admin/send-email-members.en.xhtml:15
msgid "Send e-mail link on manage users"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/admin/send-email-members.en.xhtml:16 doc/noosfero/community/send-email-members.en.xhtml:20
msgid ""
"Fill in the &#8220;Subject&#8221; field with the subject of the e-mail and "
"the &#8220;Body&#8221; field with the content of the e-mail you want to "
"send. Then, click on &#8220;Send&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/admin/send-email-members.en.xhtml:16 doc/noosfero/admin/send-email-members.en.xhtml:16
msgid "Sending e-mail to environment members"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/admin/index.en.xhtml:1
msgid "Admin features"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/admin/export-users-list.en.xhtml:1
msgid "Export the list of users"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/admin/export-users-list.en.xhtml:2
msgid ""
"<em>If you are an environment administrator, you can export the list of all "
"users in <span class=\"caps\">XML</span> or <span class=\"caps\">CSV</span> "
"formats.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/admin/export-users-list.en.xhtml:14
msgid ""
"In &#8220;Manage users&#8221;, choose which format you want to export the "
"list. There are 2 options, &#8220;<span class=\"caps\">CSV</span>&#8221; and "
"&#8220;<span class=\"caps\">XML</span>&#8221;."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/admin/export-users-list.en.xhtml:15
msgid "Click on the link of the format you choosed and download it:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/admin/export-users-list.en.xhtml:15 doc/noosfero/admin/export-users-list.en.xhtml:15
msgid "Download list of users link on manage users"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:1
msgid "Manage Upload Quotas"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:2
msgid ""
"You can set a quota value for profiles based on its type, or individually "
"for each profile."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:3
msgid ""
"To manage upload quotas, go to the administration panel and follow the "
"&#8220;quotas&#8221; link."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:4
msgid "Managing quotas by type"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:5 doc/noosfero/quotas/manage-quotas.en.xhtml:5 doc/noosfero/quotas/manage-quotas.en.xhtml:7 doc/noosfero/quotas/manage-quotas.en.xhtml:7 doc/noosfero/quotas/manage-quotas.en.xhtml:11 doc/noosfero/quotas/manage-quotas.en.xhtml:11 doc/noosfero/quotas/manage-quotas.en.xhtml:13 doc/noosfero/quotas/manage-quotas.en.xhtml:13 doc/noosfero/quotas/manage-quotas.en.xhtml:18 doc/noosfero/quotas/manage-quotas.en.xhtml:18 doc/noosfero/quotas/index.en.xhtml:3 doc/noosfero/quotas/index.en.xhtml:3
msgid "Upload quotas"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:6
msgid ""
"You can edit quotas for the default types (Person, Community, and "
"Enterprise), but you can also edit quotas for the custom types created in "
"the administration panel. If there is at least one custom type, it will be "
"possible to display it by clicking in the toggle button in the line of its "
"super type."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:8
msgid ""
"To edit the quota for this type, click in the edit button at the end of its "
"line."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:9
msgid "Managing quotas by profile"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:10
msgid ""
"You can also edit the quota of a specific profile. Just go to the second tab "
"of the manage upload quotas page."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:12
msgid ""
"You can search for a specific profile in the search box, and filter by "
"profile type using the dropdown menu."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:14
msgid ""
"After you found the desired profile, just click in the edit button at the "
"end of its line."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:15
msgid "Setting the quota value"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:16
msgid ""
"You can set any numeric value as the upload of the quota, but note that the "
"value will be interpreted as Megabytes. Zero is a valid value, but will mean "
"that the profile cannot upload any files."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:17
msgid ""
"If you left the field blank, the profile will have an unlimited upload "
"quota. That is the default value for all profiles."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:19
msgid "After choosing the quota value, just click &#8220;Save&#8221;."
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:20
msgid "Precedence of upload quotas"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/manage-quotas.en.xhtml:21
msgid ""
"The default quota for a profile is unlimited, unless a custom value was set "
"to its type. If the profile has several types with different quota values, "
"the biggest quota will be considered. If a custom quota was set directly for "
"the profile, this value will always be used, and the quotas for its types "
"will always be overwritten."
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/quotas/index.en.xhtml:1
msgid "Upload Quotas"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/index.en.xhtml:2
msgid ""
"Upload quotas are a feature that enables the environment administrator to "
"control the amount of data that profiles can consume by uploading files to "
"the server."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/quotas/index.en.xhtml:4
msgid ""
"If a profile exceeds its upload quota, it will not be able to upload more "
"files to the system. The files already uploaded will remain available. The "
"profile will only be able to upload new files if its quota is increased, or "
"if old files are deleted in order to free some of the used space."
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/searching.en.xhtml:1
msgid "Searching on the system"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching.en.xhtml:2
msgid ""
"<em>To find articles, communities, people, enterprises or products and "
"services, an user in the system, can do a search.</em>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/searching.en.xhtml:6 doc/noosfero/navigation/person-balloon.en.xhtml:6 doc/noosfero/navigation/community-balloon.en.xhtml:6 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:6 doc/noosfero/navigation/finding-more-active-people.en.xhtml:6 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:6 doc/noosfero/navigation/advanced-search.en.xhtml:6 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:6 doc/noosfero/navigation/searching-people.en.xhtml:6 doc/noosfero/navigation/searching-communities.en.xhtml:6 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:6 doc/noosfero/navigation/searching-products-services.en.xhtml:6 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:6 doc/noosfero/navigation/searching-enterprises.en.xhtml:6 doc/noosfero/community/send-email-members.en.xhtml:6 doc/noosfero/community/editing-appearance.en.xhtml:6 doc/noosfero/community/invite-contacts.en.xhtml:6 doc/noosfero/community/editing-sideboxes.en.xhtml:6 doc/noosfero/community/creating-community.en.xhtml:6 doc/noosfero/community/moderating-articles.en.xhtml:6 doc/noosfero/community/accepting-members.en.xhtml:6 doc/noosfero/community/editing-header-footer.en.xhtml:6 doc/noosfero/cms/posting-on-blog.en.xhtml:6 doc/noosfero/cms/managing-content.en.xhtml:8 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:6 doc/noosfero/cms/creating-blog.en.xhtml:6 doc/noosfero/cms/writing-advanced-article.en.xhtml:11 doc/noosfero/cms/writing-article.en.xhtml:6 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:6 doc/noosfero/enterprise/editing-appearance.en.xhtml:6 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:6 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:6 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:6 doc/noosfero/enterprise/editing-header-footer.en.xhtml:6 doc/noosfero/enterprise/adding-product.en.xhtml:6 doc/noosfero/user/changing-password.en.xhtml:6 doc/noosfero/user/editing-appearance.en.xhtml:6 doc/noosfero/user/invite-contacts.en.xhtml:6 doc/noosfero/user/deleting-profile.en.xhtml:6 doc/noosfero/user/editing-sideboxes.en.xhtml:6 doc/noosfero/user/editing-header-footer.en.xhtml:6 doc/noosfero/user/editing-person-info.en.xhtml:6
msgid "<a href=\"#relatedtopics\">Related topics</a>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching.en.xhtml:9
msgid "Find on top bar the term &#8220;Search&#8221; and click on it:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/searching.en.xhtml:10 doc/noosfero/navigation/searching.en.xhtml:10
msgid "Search on top menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/searching.en.xhtml:13
msgid ""
"Fill in the search field with what you want to look for and press "
"&#8220;Enter&#8221; on keyboard"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/searching.en.xhtml:14
msgid ""
"Then you will see a screen with the search result. Each box brings one kind "
"of information with a limited number of results. To see more results of a "
"box, click on &#8220;See all&#8221; link below the box."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/searching.en.xhtml:14 doc/noosfero/navigation/searching.en.xhtml:14
msgid "Search results with example"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/searching.en.xhtml:15
msgid ""
"Clicking on &#8220;See all&#8221; link of community&#8217;s box, then you "
"will see all the articles found on search."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/searching.en.xhtml:15 doc/noosfero/navigation/searching.en.xhtml:15
msgid "View all results on search with example"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/navigation/searching.en.xhtml:17 doc/noosfero/navigation/person-balloon.en.xhtml:19 doc/noosfero/navigation/community-balloon.en.xhtml:20 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:18 doc/noosfero/navigation/finding-more-active-people.en.xhtml:18 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:18 doc/noosfero/navigation/advanced-search.en.xhtml:23 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:18 doc/noosfero/navigation/searching-people.en.xhtml:19 doc/noosfero/navigation/searching-communities.en.xhtml:19 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:18 doc/noosfero/navigation/searching-products-services.en.xhtml:21 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:18 doc/noosfero/navigation/searching-enterprises.en.xhtml:21 doc/noosfero/community/joining-community.en.xhtml:17 doc/noosfero/community/send-email-members.en.xhtml:22 doc/noosfero/community/editing-appearance.en.xhtml:27 doc/noosfero/community/invite-contacts.en.xhtml:35 doc/noosfero/community/editing-sideboxes.en.xhtml:61 doc/noosfero/community/creating-community.en.xhtml:27 doc/noosfero/community/moderating-articles.en.xhtml:29 doc/noosfero/community/accepting-members.en.xhtml:22 doc/noosfero/community/editing-header-footer.en.xhtml:52 doc/noosfero/cms/posting-on-blog.en.xhtml:21 doc/noosfero/cms/spreading-articles.en.xhtml:30 doc/noosfero/cms/managing-content.en.xhtml:49 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:21 doc/noosfero/cms/creating-blog.en.xhtml:26 doc/noosfero/cms/writing-advanced-article.en.xhtml:60 doc/noosfero/cms/writing-article.en.xhtml:75 doc/noosfero/enterprise/editing-appearance.en.xhtml:27 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:63 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:31 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:35 doc/noosfero/enterprise/editing-header-footer.en.xhtml:52 doc/noosfero/enterprise/adding-product.en.xhtml:33 doc/noosfero/user/changing-password.en.xhtml:22 doc/noosfero/user/removing-comments.en.xhtml:15 doc/noosfero/user/removing-friends.en.xhtml:22 doc/noosfero/user/editing-appearance.en.xhtml:25 doc/noosfero/user/logout.en.xhtml:15 doc/noosfero/user/sending-scraps.en.xhtml:18 doc/noosfero/user/invite-contacts.en.xhtml:33 doc/noosfero/user/commenting.en.xhtml:20 doc/noosfero/user/login.en.xhtml:15 doc/noosfero/user/answering-scraps.en.xhtml:19 doc/noosfero/user/deleting-profile.en.xhtml:19 doc/noosfero/user/registering-new-user.en.xhtml:23 doc/noosfero/user/viewing-profiles-activity.en.xhtml:15 doc/noosfero/user/editing-sideboxes.en.xhtml:62 doc/noosfero/user/sending-messages.en.xhtml:18 doc/noosfero/user/adding-friends.en.xhtml:15 doc/noosfero/user/editing-header-footer.en.xhtml:50 doc/noosfero/user/editing-person-info.en.xhtml:25
msgid "Related topics"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/searching.en.xhtml:19 doc/noosfero/navigation/person-balloon.en.xhtml:21 doc/noosfero/navigation/searching-communities.en.xhtml:22 doc/noosfero/navigation/searching-products-services.en.xhtml:24 doc/noosfero/navigation/searching-enterprises.en.xhtml:24 doc/noosfero/user/sending-scraps.en.xhtml:23 doc/noosfero/user/answering-scraps.en.xhtml:24 doc/noosfero/user/registering-new-user.en.xhtml:28 doc/noosfero/user/viewing-profiles-activity.en.xhtml:19 doc/noosfero/user/sending-messages.en.xhtml:20 doc/noosfero/user/adding-friends.en.xhtml:19 doc/noosfero/navigation/toc.en.xhtml:4
msgid "<a href=\"/doc/navigation/searching-people\">Finding people</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/searching.en.xhtml:20 doc/noosfero/navigation/community-balloon.en.xhtml:22 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:23 doc/noosfero/navigation/finding-more-active-people.en.xhtml:23 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:23 doc/noosfero/navigation/advanced-search.en.xhtml:27 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:23 doc/noosfero/navigation/searching-people.en.xhtml:22 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:23 doc/noosfero/navigation/searching-products-services.en.xhtml:25 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:23 doc/noosfero/navigation/searching-enterprises.en.xhtml:25 doc/noosfero/community/joining-community.en.xhtml:19 doc/noosfero/navigation/toc.en.xhtml:3
msgid "<a href=\"/doc/navigation/searching-communities\">Finding communities</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/searching.en.xhtml:21 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:24 doc/noosfero/navigation/finding-more-active-people.en.xhtml:24 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:24 doc/noosfero/navigation/advanced-search.en.xhtml:28 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:24 doc/noosfero/navigation/searching-people.en.xhtml:23 doc/noosfero/navigation/searching-communities.en.xhtml:23 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:24 doc/noosfero/navigation/searching-products-services.en.xhtml:26 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:24 doc/noosfero/navigation/toc.en.xhtml:16
msgid "<a href=\"/doc/navigation/searching-enterprises\">Finding enterprises</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/searching.en.xhtml:22 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:25 doc/noosfero/navigation/finding-more-active-people.en.xhtml:25 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:25 doc/noosfero/navigation/advanced-search.en.xhtml:29 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:25 doc/noosfero/navigation/searching-people.en.xhtml:24 doc/noosfero/navigation/searching-communities.en.xhtml:24 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:25 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:25 doc/noosfero/navigation/searching-enterprises.en.xhtml:26 doc/noosfero/navigation/toc.en.xhtml:15
msgid ""
"<a href=\"/doc/navigation/searching-products-services\">Finding products and "
"services</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/searching.en.xhtml:23 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:26 doc/noosfero/navigation/finding-more-active-people.en.xhtml:26 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:26 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:26 doc/noosfero/navigation/searching-people.en.xhtml:25 doc/noosfero/navigation/searching-communities.en.xhtml:25 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:26 doc/noosfero/navigation/searching-products-services.en.xhtml:27 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:26 doc/noosfero/navigation/searching-enterprises.en.xhtml:27 doc/noosfero/navigation/toc.en.xhtml:13
msgid "<a href=\"/doc/navigation/advanced-search\">Advanced search</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/person-balloon.en.xhtml:1
msgid "Person balloon"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/person-balloon.en.xhtml:2
msgid ""
"<em>When an user is navigating on the system, he can see details of a person "
"and become a friend quickly.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/person-balloon.en.xhtml:9
msgid ""
"If enabled on environment, wherever a person appears you can click on the "
"top-left corner to see the person balloon"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/person-balloon.en.xhtml:9 doc/noosfero/navigation/person-balloon.en.xhtml:9
msgid "Person balloon link"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/person-balloon.en.xhtml:11
msgid ""
"The person balloon has links to allow direct access to some person&#8217;s "
"pages"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/person-balloon.en.xhtml:11 doc/noosfero/navigation/person-balloon.en.xhtml:11
msgid "person balloon links"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/person-balloon.en.xhtml:13
msgid "Wall: lists scraps sent to this person"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/person-balloon.en.xhtml:14
msgid "Friends: lists the person&#8217;s friends"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/person-balloon.en.xhtml:15
msgid "Communities: lists the person&#8217;s communities"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/person-balloon.en.xhtml:16
msgid ""
"Add: if you are not friend of the person, you can quickly ask to add her "
"clicking on this link"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/person-balloon.en.xhtml:17
msgid ""
"Send an e-mail: if you are a friend of the person, you can send an e-mail to "
"the her clicking on this link"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/community-balloon.en.xhtml:1
msgid "Community balloon"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/community-balloon.en.xhtml:2
msgid ""
"<em>When an user is navigating on the system, he can see details of a "
"community and become a member quickly.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/community-balloon.en.xhtml:9
msgid ""
"If enabled on environment, wherever a community appears you can click on the "
"top-left corner to see the community balloon"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/community-balloon.en.xhtml:9 doc/noosfero/navigation/community-balloon.en.xhtml:9
msgid "Community balloon link"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/community-balloon.en.xhtml:11
msgid ""
"The community balloon has links to allow direct access to some "
"community&#8217;s pages"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/community-balloon.en.xhtml:11 doc/noosfero/navigation/community-balloon.en.xhtml:11
msgid "Community balloon links"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/community-balloon.en.xhtml:13
msgid "Wall: lists scraps sent to this community"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/community-balloon.en.xhtml:14
msgid "Members: lists the community&#8217;s members"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/community-balloon.en.xhtml:15
msgid "Agenda: lists the events created on community"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/community-balloon.en.xhtml:16
msgid ""
"Join: if you are not a member of community, you can quickly join it clicking "
"on this link"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/community-balloon.en.xhtml:17
msgid ""
"Leave: if you are a member of community, you can quickly leave it clicking "
"on this link"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/community-balloon.en.xhtml:18
msgid ""
"Send an e-mail: if you are a member of community, you can send an e-mail to "
"the community admins clicking on this link"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:1
msgid "Finding more popular people"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:2
msgid "<em>To find the people who has more friends.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:9 doc/noosfero/navigation/finding-more-active-people.en.xhtml:9 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:9
msgid ""
"Find on top of page the term &#8220;People&#8221; and click on the arrow "
"below it:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:10 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:10
msgid "More popular people on top menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:13
msgid ""
"The people will be listed ordered by number of friends with most popular "
"first. Below the profile&#8217;s picture, you will see the number of friends "
"the person has"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:13 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:13
msgid "Profile with number of friends"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:14 doc/noosfero/navigation/finding-more-active-people.en.xhtml:14 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:14 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:14 doc/noosfero/navigation/searching-people.en.xhtml:13 doc/noosfero/navigation/searching-communities.en.xhtml:13 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:14 doc/noosfero/navigation/searching-products-services.en.xhtml:13 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:14 doc/noosfero/navigation/searching-enterprises.en.xhtml:13
msgid ""
"Fill in the search field with what you want to look for and click on "
"&#8220;Search&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:14 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:14
msgid "More popular people search field"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:15
msgid ""
"Then you will see the search results ordered by the number of friends the "
"person has on environment"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:15 doc/noosfero/navigation/finding-more-popular-people.en.xhtml:15
msgid "More popular people search results with example"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:16 doc/noosfero/navigation/finding-more-active-people.en.xhtml:16 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:16 doc/noosfero/navigation/searching-people.en.xhtml:15
msgid ""
"Clicking on one of the search results, you will be redirected to the "
"homepage of choosen person."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:20 doc/noosfero/navigation/finding-more-active-people.en.xhtml:20 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:20 doc/noosfero/navigation/advanced-search.en.xhtml:25 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:20 doc/noosfero/navigation/searching-people.en.xhtml:21 doc/noosfero/navigation/searching-communities.en.xhtml:21 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:20 doc/noosfero/navigation/searching-products-services.en.xhtml:23 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:20 doc/noosfero/navigation/searching-enterprises.en.xhtml:23
msgid "<a href=\"/doc/navigation/searching\">Searching</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:21 doc/noosfero/navigation/finding-more-active-people.en.xhtml:21 doc/noosfero/navigation/toc.en.xhtml:5
msgid ""
"<a href=\"/doc/navigation/finding-more-recent-people\">Finding more recent "
"people</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/finding-more-popular-people.en.xhtml:22
msgid ""
"<a href=\"/doc/navigation/finding-more-active-people\">Finding more popular "
"people</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/finding-more-active-people.en.xhtml:1
msgid "Finding more active people"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/finding-more-active-people.en.xhtml:2
msgid "<em>To find the people who create more content.</em>"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/finding-more-active-people.en.xhtml:10 doc/noosfero/navigation/finding-more-active-people.en.xhtml:10
msgid "More active people on top menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-active-people.en.xhtml:13
msgid ""
"The people will be listed ordered by number of content created with most "
"active first. Below the profile&#8217;s picture, you will see the number of "
"articles created by the person"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-active-people.en.xhtml:13 doc/noosfero/navigation/finding-more-active-people.en.xhtml:13 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:13 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:13
msgid "Profile with number of articles"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-active-people.en.xhtml:14 doc/noosfero/navigation/finding-more-active-people.en.xhtml:14
msgid "More active people search field"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-active-people.en.xhtml:15
msgid ""
"Then you will see the search results ordered by the number of content "
"created by the person"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-active-people.en.xhtml:15 doc/noosfero/navigation/finding-more-active-people.en.xhtml:15
msgid "More active people search results with example"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/finding-more-active-people.en.xhtml:22 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:22 doc/noosfero/navigation/toc.en.xhtml:9
msgid ""
"<a href=\"/doc/navigation/finding-more-popular-people\">Finding more popular "
"people</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/finding-more-recent-people.en.xhtml:1
msgid "Finding more recent people"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/finding-more-recent-people.en.xhtml:2
msgid "<em>To find the people who joined the system in recent times.</em>"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/finding-more-recent-people.en.xhtml:10 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:10
msgid "More recent people on top menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-recent-people.en.xhtml:13
msgid ""
"The people will be listed ordered by creation date with most recent "
"first. Below the profile&#8217;s picture, you will see the date that the "
"person joined the network"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-recent-people.en.xhtml:13 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:13 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:13 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:13
msgid "Profile with creation date"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-recent-people.en.xhtml:14 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:14
msgid "More recent people search field"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-recent-people.en.xhtml:15 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:15
msgid "Then you will see the search results ordered by creation date"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-recent-people.en.xhtml:15 doc/noosfero/navigation/finding-more-recent-people.en.xhtml:15
msgid "More recent people search results with example"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/finding-more-recent-people.en.xhtml:21
msgid ""
"<a href=\"/doc/navigation/finding-more-active-people\">Finding more recent "
"people</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/index.en.xhtml:1
msgid "Navigation"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/advanced-search.en.xhtml:1
msgid "Advanced search"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/advanced-search.en.xhtml:2
msgid ""
"<em>When an user is navigating on the system, he can do a search to find "
"articles, communities, people, enterprises or products.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/advanced-search.en.xhtml:9
msgid ""
"Do a search as explained in <a "
"href=\"/doc/navigation/searching\">Searching</a>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/advanced-search.en.xhtml:12
msgid "Click on &#8220;More options&#8221; to specify the search"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/advanced-search.en.xhtml:12 doc/noosfero/navigation/advanced-search.en.xhtml:12
msgid "More options button on search"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/advanced-search.en.xhtml:13
msgid "Type what you want to search on the system"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/advanced-search.en.xhtml:13 doc/noosfero/navigation/advanced-search.en.xhtml:13
msgid "More options on search"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/navigation/advanced-search.en.xhtml:15
msgid "Select the State where you want to find what you are looking for"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/navigation/advanced-search.en.xhtml:16
msgid "Select the City where you want to find what you are looking for"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/navigation/advanced-search.en.xhtml:17
msgid ""
"The distance that you define in this field will be used to find what you "
"want. The system will search the "
"articles/people/communities/events/enterprises/products that are up to that "
"distance from the city specified"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/navigation/advanced-search.en.xhtml:18
msgid "Choose what you are looking for"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/navigation/advanced-search.en.xhtml:19
msgid "Click on &#8220;Search&#8221; button to do the search."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/advanced-search.en.xhtml:21
msgid ""
"In this example, we searched for &#8220;free software&#8221; in "
"articles/people/communities/events/enterprises/products. Then you will see a "
"screen with the search result. Each box brings one kind of information with "
"a limited number of results. To see more results of a box, click on "
"&#8220;See all&#8221; link below the box."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/advanced-search.en.xhtml:21 doc/noosfero/navigation/advanced-search.en.xhtml:21
msgid "Advanced search results with example"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/advanced-search.en.xhtml:26
msgid "<a href=\"/doc/navigation/searching-people\">Findind people</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:1
msgid "Finding more recent communities"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:2
msgid "<em>To find the communities created on the system in recent times.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:9 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:9 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:9
msgid ""
"Find on top of page the term &#8220;communities&#8221; and click on the "
"arrow below it:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:10 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:10
msgid "More recent communities on top menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:13
msgid ""
"The communities will be listed ordered by creation date with most recent "
"first. Below the profile&#8217;s picture, you will see the date that the "
"community was created"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:14 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:14
msgid "More recent communities search field"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:15 doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:15
msgid "More recent communities search results with example"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:16 doc/noosfero/navigation/searching-communities.en.xhtml:15 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:16 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:16
msgid ""
"Clicking on one of the search results, you will be redirected to the "
"homepage of choosen community."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:21
msgid ""
"<a href=\"/doc/navigation/finding-more-active-communities\">Finding more "
"recent communities</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/finding-more-recent-communities.en.xhtml:22 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:22 doc/noosfero/navigation/toc.en.xhtml:10
msgid ""
"<a href=\"/doc/navigation/finding-more-popular-communities\">Finding more "
"popular communities</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/searching-people.en.xhtml:1
msgid "Finding people"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-people.en.xhtml:2
msgid ""
"<em>To find an user in the system, you can use the search specific for "
"people.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-people.en.xhtml:9
msgid "Find on top of page the term &#8220;People&#8221; and click on it:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/searching-people.en.xhtml:10 doc/noosfero/navigation/searching-people.en.xhtml:10
msgid "People on top menu"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/searching-people.en.xhtml:13 doc/noosfero/navigation/searching-people.en.xhtml:13
msgid "People search field"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/searching-people.en.xhtml:14 doc/noosfero/navigation/searching-communities.en.xhtml:14 doc/noosfero/navigation/searching-products-services.en.xhtml:14 doc/noosfero/navigation/searching-enterprises.en.xhtml:14
msgid ""
"Then you will see the search results. To see more results, click on the "
"pages below the search results."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/searching-people.en.xhtml:14 doc/noosfero/navigation/searching-people.en.xhtml:14 doc/noosfero/navigation/searching-communities.en.xhtml:14 doc/noosfero/navigation/searching-communities.en.xhtml:14
msgid "Communities search results with example"
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/navigation/searching-people.en.xhtml:17 doc/noosfero/navigation/searching-communities.en.xhtml:17 doc/noosfero/navigation/searching-products-services.en.xhtml:17 doc/noosfero/navigation/searching-enterprises.en.xhtml:17
msgid "More options"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-people.en.xhtml:18 doc/noosfero/navigation/searching-communities.en.xhtml:18 doc/noosfero/navigation/searching-products-services.en.xhtml:18 doc/noosfero/navigation/searching-enterprises.en.xhtml:18
msgid ""
"In all kind of search you can specify the search clicking on &#8220;More "
"options&#8221; link. The options displayed are explained in <a "
"href=\"/doc/navigation/advanced-search\">Advanced search</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/searching-communities.en.xhtml:1
msgid "Finding communities"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-communities.en.xhtml:2
msgid ""
"<em>To find a community in the system, you can use the search specific for "
"communities.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-communities.en.xhtml:9
msgid "Find on top of page the term &#8220;Communities&#8221; and click on it:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/searching-communities.en.xhtml:10 doc/noosfero/navigation/searching-communities.en.xhtml:10
msgid "Communities on top menu"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/searching-communities.en.xhtml:13 doc/noosfero/navigation/searching-communities.en.xhtml:13
msgid "Communities search field"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:1
msgid "Finding more popular communities"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:2
msgid "<em>To find the communities who has more members.</em>"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:10 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:10
msgid "More popular communities on top menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:13
msgid ""
"The communities will be listed ordered by number of members with most "
"popular first. Below the profile&#8217;s picture, you will see the number of "
"members the community has"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:13 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:13
msgid "Profile with number of members"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:14 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:14
msgid "More popular communities search field"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:15
msgid ""
"Then you will see the search results ordered by the number of members the "
"community has"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:15 doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:15
msgid "More popular communities search results with example"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:21 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:21 doc/noosfero/navigation/toc.en.xhtml:6
msgid ""
"<a href=\"/doc/navigation/finding-more-recent-communities\">Finding more "
"recent communities</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/finding-more-popular-communities.en.xhtml:22
msgid ""
"<a href=\"/doc/navigation/finding-more-active-communities\">Finding more "
"popular communities</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/searching-products-services.en.xhtml:1
msgid "Finding products and services"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-products-services.en.xhtml:2
msgid ""
"<em>To find a product or service in the system, you can use the search "
"specific for products and services.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-products-services.en.xhtml:9
msgid "Find on top of page the term &#8220;Products&#8221; and click on it"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/searching-products-services.en.xhtml:10 doc/noosfero/navigation/searching-products-services.en.xhtml:10
msgid "Products on top menu"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/searching-products-services.en.xhtml:13 doc/noosfero/navigation/searching-products-services.en.xhtml:13
msgid "Products search field"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/searching-products-services.en.xhtml:14 doc/noosfero/navigation/searching-products-services.en.xhtml:14
msgid "Products search results with example"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/searching-products-services.en.xhtml:15
msgid ""
"Clicking on one of the search results, you will be redirected to the "
"homepage of the enterprise that has the product/service."
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/navigation/searching-products-services.en.xhtml:19 doc/noosfero/navigation/searching-enterprises.en.xhtml:19
msgid "Display on map"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-products-services.en.xhtml:20 doc/noosfero/navigation/searching-enterprises.en.xhtml:20
msgid ""
"If available on the system, when you are searching for products, services or "
"enterprises and the system allows, you will see the &#8220;Display on "
"map&#8221; button. Clicking on this button, the search results will be "
"displayed on a map, with house icons indicating the location of enterprises."
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/finding-more-active-communities.en.xhtml:1
msgid "Finding more active communities"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/finding-more-active-communities.en.xhtml:2
msgid "<em>To find the communities who create more content.</em>"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/finding-more-active-communities.en.xhtml:10 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:10
msgid "More active communities on top menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-active-communities.en.xhtml:13
msgid ""
"The communities will be listed ordered by number of content created with "
"most active first. Below the profile&#8217;s picture, you will see the "
"number of articles created by the community"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-active-communities.en.xhtml:14 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:14
msgid "More active communities search field"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/finding-more-active-communities.en.xhtml:15
msgid ""
"Then you will see the search results ordered by the number of content "
"created by the community"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/finding-more-active-communities.en.xhtml:15 doc/noosfero/navigation/finding-more-active-communities.en.xhtml:15
msgid "More active communities search results with example"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/navigation/searching-enterprises.en.xhtml:1
msgid "Finding enterprises"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-enterprises.en.xhtml:2
msgid ""
"<em>To find an enterprise in the system, you can use the search specific for "
"enterprises.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/navigation/searching-enterprises.en.xhtml:9
msgid "Find on top of page the term &#8220;Enterprises&#8221; and click on it:"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/navigation/searching-enterprises.en.xhtml:10 doc/noosfero/navigation/searching-enterprises.en.xhtml:10
msgid "Enterprises on top menu"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/searching-enterprises.en.xhtml:13 doc/noosfero/navigation/searching-enterprises.en.xhtml:13
msgid "Enterprises search field"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/navigation/searching-enterprises.en.xhtml:14 doc/noosfero/navigation/searching-enterprises.en.xhtml:14
msgid "Enterprises search results with example"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/navigation/searching-enterprises.en.xhtml:15
msgid ""
"Clicking on one of the search results, you will be redirected to the "
"homepage of choosen enterprise."
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/community/joining-community.en.xhtml:1
msgid "Joining a community"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/joining-community.en.xhtml:2
msgid ""
"<em>You can be part of a community and interact with its others members. To "
"do that, you can join a community, as explained below.</em>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/joining-community.en.xhtml:6 doc/noosfero/cms/spreading-articles.en.xhtml:6 doc/noosfero/enterprise/activating-enterprise.en.xhtml:7 doc/noosfero/user/removing-comments.en.xhtml:6 doc/noosfero/user/removing-friends.en.xhtml:6 doc/noosfero/user/logout.en.xhtml:6 doc/noosfero/user/sending-scraps.en.xhtml:6 doc/noosfero/user/commenting.en.xhtml:7 doc/noosfero/user/login.en.xhtml:6 doc/noosfero/user/answering-scraps.en.xhtml:6 doc/noosfero/user/registering-new-user.en.xhtml:6 doc/noosfero/user/viewing-profiles-activity.en.xhtml:6 doc/noosfero/user/sending-messages.en.xhtml:6 doc/noosfero/user/accepting-friends.en.xhtml:6 doc/noosfero/user/adding-friends.en.xhtml:6
msgid "<a href=\"#relatedtopics\">Related Topics</a>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/joining-community.en.xhtml:9
msgid ""
"To join a community, first you need to access its page. Enter the community "
"address on address bar or search for the community in the system and click "
"to view it."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/joining-community.en.xhtml:10
msgid ""
"To learn how you can find community in the system, read: <a "
"href=\"/doc/navigation/searching-communities\">Finding communities</a>."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/joining-community.en.xhtml:13
msgid ""
"In community&#8217;s page, click on &#8220;+ Join&#8221; button below "
"community&#8217;s image."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/joining-community.en.xhtml:13 doc/noosfero/community/joining-community.en.xhtml:13
msgid "Community with join button"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/joining-community.en.xhtml:14
msgid ""
"After clicking on &#8220;Yes, I want to join&#8221; button, you will already "
"be member of the community if it is not moderated."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/joining-community.en.xhtml:14 doc/noosfero/community/joining-community.en.xhtml:14
msgid "Confirmation after asking to join a community"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/joining-community.en.xhtml:15
msgid ""
"If the community is moderated, the administrator will need to approve your "
"request before you start interacting."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/send-email-members.en.xhtml:2
msgid ""
"<em>If you are a community administrator, you can send e-mail to all members "
"of your community.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/send-email-members.en.xhtml:11 doc/noosfero/community/editing-appearance.en.xhtml:11 doc/noosfero/community/invite-contacts.en.xhtml:11 doc/noosfero/community/editing-sideboxes.en.xhtml:11 doc/noosfero/community/moderating-articles.en.xhtml:11 doc/noosfero/community/accepting-members.en.xhtml:11 doc/noosfero/community/editing-header-footer.en.xhtml:11 doc/noosfero/cms/posting-on-blog.en.xhtml:12 doc/noosfero/cms/spreading-articles.en.xhtml:14 doc/noosfero/cms/managing-content.en.xhtml:13 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:12 doc/noosfero/cms/creating-blog.en.xhtml:11 doc/noosfero/cms/writing-article.en.xhtml:11 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:11 doc/noosfero/enterprise/editing-appearance.en.xhtml:11 doc/noosfero/enterprise/activating-enterprise.en.xhtml:12 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:11 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:11 doc/noosfero/enterprise/editing-header-footer.en.xhtml:11 doc/noosfero/user/changing-password.en.xhtml:11 doc/noosfero/user/removing-friends.en.xhtml:11 doc/noosfero/user/editing-appearance.en.xhtml:11 doc/noosfero/user/invite-contacts.en.xhtml:11 doc/noosfero/user/deleting-profile.en.xhtml:11 doc/noosfero/user/editing-sideboxes.en.xhtml:11 doc/noosfero/user/accepting-friends.en.xhtml:11 doc/noosfero/user/editing-header-footer.en.xhtml:11 doc/noosfero/user/editing-person-info.en.xhtml:11
msgid "In user menu, click on Control Panel:"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/send-email-members.en.xhtml:12 doc/noosfero/community/invite-contacts.en.xhtml:12 doc/noosfero/community/moderating-articles.en.xhtml:12 doc/noosfero/community/accepting-members.en.xhtml:12 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:12 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:12
msgid "Then, click on &#8220;Manage my groups&#8221; button:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/send-email-members.en.xhtml:12 doc/noosfero/community/send-email-members.en.xhtml:12 doc/noosfero/community/editing-appearance.en.xhtml:12 doc/noosfero/community/editing-appearance.en.xhtml:12 doc/noosfero/community/invite-contacts.en.xhtml:12 doc/noosfero/community/invite-contacts.en.xhtml:12 doc/noosfero/community/editing-sideboxes.en.xhtml:12 doc/noosfero/community/editing-sideboxes.en.xhtml:12 doc/noosfero/community/creating-community.en.xhtml:12 doc/noosfero/community/creating-community.en.xhtml:12 doc/noosfero/community/moderating-articles.en.xhtml:12 doc/noosfero/community/moderating-articles.en.xhtml:12 doc/noosfero/community/accepting-members.en.xhtml:12 doc/noosfero/community/accepting-members.en.xhtml:12 doc/noosfero/community/editing-header-footer.en.xhtml:12 doc/noosfero/community/editing-header-footer.en.xhtml:12 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:12 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:12 doc/noosfero/enterprise/editing-appearance.en.xhtml:12 doc/noosfero/enterprise/editing-appearance.en.xhtml:12 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:12 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:12 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:12 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:12 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:12 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:12 doc/noosfero/enterprise/editing-header-footer.en.xhtml:12 doc/noosfero/enterprise/editing-header-footer.en.xhtml:12
msgid "Manage groups in control panel"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/send-email-members.en.xhtml:13 doc/noosfero/community/editing-appearance.en.xhtml:13 doc/noosfero/community/invite-contacts.en.xhtml:13 doc/noosfero/community/editing-sideboxes.en.xhtml:13 doc/noosfero/community/moderating-articles.en.xhtml:13 doc/noosfero/community/accepting-members.en.xhtml:13 doc/noosfero/community/editing-header-footer.en.xhtml:13 doc/noosfero/enterprise/editing-appearance.en.xhtml:13 doc/noosfero/enterprise/editing-header-footer.en.xhtml:13
msgid ""
"You will see the list of groups (communities/enterprises) that you are a "
"member. The groups that you can manage are listed with a link "
"&#8220;Manage&#8221;. Assuming that you are a community administrator, click "
"on &#8220;Manage&#8221; link."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/send-email-members.en.xhtml:13 doc/noosfero/community/send-email-members.en.xhtml:13 doc/noosfero/community/invite-contacts.en.xhtml:13 doc/noosfero/community/invite-contacts.en.xhtml:13 doc/noosfero/community/moderating-articles.en.xhtml:13 doc/noosfero/community/moderating-articles.en.xhtml:13 doc/noosfero/community/accepting-members.en.xhtml:13 doc/noosfero/community/accepting-members.en.xhtml:13 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:13 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:13 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:13 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:13 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:13 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:13 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:13 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:13 doc/noosfero/enterprise/editing-header-footer.en.xhtml:13 doc/noosfero/enterprise/editing-header-footer.en.xhtml:13
msgid "Groups list with permission to manage enterprise"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/send-email-members.en.xhtml:17 doc/noosfero/community/invite-contacts.en.xhtml:17
msgid "In community control panel, click on &#8220;Manage members&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/send-email-members.en.xhtml:17 doc/noosfero/community/send-email-members.en.xhtml:17 doc/noosfero/community/invite-contacts.en.xhtml:17 doc/noosfero/community/invite-contacts.en.xhtml:17
msgid "Manage members in control panel"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/send-email-members.en.xhtml:18
msgid ""
"You will see the members list of community and the send e-mail button. Click "
"on the button."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/send-email-members.en.xhtml:19 doc/noosfero/community/send-email-members.en.xhtml:19 doc/noosfero/community/invite-contacts.en.xhtml:19 doc/noosfero/community/invite-contacts.en.xhtml:19
msgid "Community&#39;s members list"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/send-email-members.en.xhtml:20 doc/noosfero/community/send-email-members.en.xhtml:20
msgid "Sending e-mail to community members"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/send-email-members.en.xhtml:24 doc/noosfero/community/invite-contacts.en.xhtml:37 doc/noosfero/community/moderating-articles.en.xhtml:31 doc/noosfero/community/accepting-members.en.xhtml:24 doc/noosfero/community/toc.en.xhtml:4
msgid "<a href=\"/doc/community/creating-community\">Creating a community</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/send-email-members.en.xhtml:25 doc/noosfero/community/invite-contacts.en.xhtml:38 doc/noosfero/community/moderating-articles.en.xhtml:32 doc/noosfero/community/accepting-members.en.xhtml:25 doc/noosfero/community/toc.en.xhtml:3
msgid "<a href=\"/doc/community/joining-community\">Joining a community</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/send-email-members.en.xhtml:26 doc/noosfero/community/invite-contacts.en.xhtml:39
msgid "<a href=\"/doc/community/accepting-members\">Accepting members</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/community/editing-appearance.en.xhtml:1 doc/noosfero/enterprise/editing-appearance.en.xhtml:1 doc/noosfero/user/editing-appearance.en.xhtml:1
msgid "Editing appearance"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/editing-appearance.en.xhtml:2
msgid ""
"<em>You can customize the page of your community, changing the template of "
"it.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:10 doc/noosfero/community/editing-sideboxes.en.xhtml:10 doc/noosfero/community/creating-community.en.xhtml:10 doc/noosfero/community/editing-header-footer.en.xhtml:10 doc/noosfero/enterprise/editing-appearance.en.xhtml:10 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:10 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:10 doc/noosfero/enterprise/editing-header-footer.en.xhtml:10 doc/noosfero/user/changing-password.en.xhtml:10 doc/noosfero/user/editing-appearance.en.xhtml:10 doc/noosfero/user/editing-sideboxes.en.xhtml:10 doc/noosfero/user/editing-header-footer.en.xhtml:10
msgid "Find you user menu on top bar:"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:12 doc/noosfero/community/editing-sideboxes.en.xhtml:12 doc/noosfero/community/editing-header-footer.en.xhtml:12 doc/noosfero/enterprise/editing-appearance.en.xhtml:12 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:12 doc/noosfero/enterprise/editing-header-footer.en.xhtml:12
msgid "Click on &#8220;Manage my groups&#8221; button:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-appearance.en.xhtml:13 doc/noosfero/community/editing-appearance.en.xhtml:13 doc/noosfero/community/editing-sideboxes.en.xhtml:13 doc/noosfero/community/editing-sideboxes.en.xhtml:13 doc/noosfero/community/editing-header-footer.en.xhtml:13 doc/noosfero/community/editing-header-footer.en.xhtml:13 doc/noosfero/enterprise/editing-appearance.en.xhtml:13 doc/noosfero/enterprise/editing-appearance.en.xhtml:13
msgid "Groups list with permission to manage community"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:14 doc/noosfero/enterprise/editing-appearance.en.xhtml:14 doc/noosfero/user/editing-appearance.en.xhtml:12
msgid "Then, click on &quot;Edit Appearance:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-appearance.en.xhtml:14 doc/noosfero/community/editing-appearance.en.xhtml:14 doc/noosfero/enterprise/editing-appearance.en.xhtml:14 doc/noosfero/enterprise/editing-appearance.en.xhtml:14 doc/noosfero/user/editing-appearance.en.xhtml:12 doc/noosfero/user/editing-appearance.en.xhtml:12
msgid "Edit appearance on user control panel"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:18 doc/noosfero/enterprise/editing-appearance.en.xhtml:18 doc/noosfero/user/editing-appearance.en.xhtml:16
msgid "You will see the available templates:"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:20 doc/noosfero/enterprise/editing-appearance.en.xhtml:20 doc/noosfero/user/editing-appearance.en.xhtml:18
msgid "<strong>default:</strong> This template uses 3 columns."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:21 doc/noosfero/enterprise/editing-appearance.en.xhtml:21 doc/noosfero/user/editing-appearance.en.xhtml:19
msgid ""
"<strong>rightbar:</strong> In this template, your pages will have 2 "
"columns. Your blocks will be displayed on the collumn on the right."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:22 doc/noosfero/enterprise/editing-appearance.en.xhtml:22 doc/noosfero/user/editing-appearance.en.xhtml:20
msgid ""
"<strong>lefttbar:</strong> In this template, your pages will have 2 "
"columns. Your blocks will be displayed on the collumn on the left."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:24 doc/noosfero/enterprise/editing-appearance.en.xhtml:24 doc/noosfero/user/editing-appearance.en.xhtml:22
msgid ""
"You can change your template clicking on the link &#8220;Use this "
"template&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-appearance.en.xhtml:25 doc/noosfero/community/editing-appearance.en.xhtml:25 doc/noosfero/enterprise/editing-appearance.en.xhtml:25 doc/noosfero/enterprise/editing-appearance.en.xhtml:25 doc/noosfero/user/editing-appearance.en.xhtml:23 doc/noosfero/user/editing-appearance.en.xhtml:23
msgid "Edit appearance"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:29 doc/noosfero/community/creating-community.en.xhtml:29 doc/noosfero/community/editing-header-footer.en.xhtml:54 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:24 doc/noosfero/enterprise/editing-appearance.en.xhtml:29 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:37 doc/noosfero/enterprise/editing-header-footer.en.xhtml:54 doc/noosfero/user/changing-password.en.xhtml:24 doc/noosfero/user/removing-comments.en.xhtml:17 doc/noosfero/user/editing-appearance.en.xhtml:27 doc/noosfero/user/logout.en.xhtml:17 doc/noosfero/user/commenting.en.xhtml:22 doc/noosfero/user/deleting-profile.en.xhtml:22 doc/noosfero/user/editing-header-footer.en.xhtml:52 doc/noosfero/user/editing-person-info.en.xhtml:27 doc/noosfero/user/toc.en.xhtml:5
msgid "<a href=\"/doc/user/login\">Login into the system</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:30 doc/noosfero/community/editing-header-footer.en.xhtml:55 doc/noosfero/enterprise/editing-appearance.en.xhtml:30 doc/noosfero/enterprise/editing-header-footer.en.xhtml:55 doc/noosfero/user/changing-password.en.xhtml:25 doc/noosfero/user/editing-appearance.en.xhtml:28 doc/noosfero/user/login.en.xhtml:18 doc/noosfero/user/editing-header-footer.en.xhtml:53
msgid "<a href=\"/doc/user/logout\">Logout of the system</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/editing-appearance.en.xhtml:31 doc/noosfero/community/editing-sideboxes.en.xhtml:63 doc/noosfero/community/toc.en.xhtml:11
msgid ""
"<a href=\"/doc/community/editing-header-footer\">Editing header and "
"footer</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/community/invite-contacts.en.xhtml:1 doc/noosfero/user/invite-contacts.en.xhtml:1
msgid "Inviting contacts from e-mail"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/invite-contacts.en.xhtml:2
msgid ""
"<em>If you are a community administrator, you can invite e-mail contacts to "
"join your community. If the e-mail is registered on the system, the user "
"will receive an invitation through the system. If it is not registered, the "
"user will receive an invitation on his e-mail.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/invite-contacts.en.xhtml:18
msgid ""
"You will see the members list of community and the invitation button. Click "
"on the button."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/invite-contacts.en.xhtml:20 doc/noosfero/user/invite-contacts.en.xhtml:18
msgid ""
"You can invite your contacts manually inserting their e-mails or importing "
"the e-mails from your e-mail contacts."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/invite-contacts.en.xhtml:22 doc/noosfero/user/invite-contacts.en.xhtml:20
msgid ""
"<strong>Manually</strong>: Choose the option &#8220;Manually&#8221; and "
"click on &#8220;Next&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/invite-contacts.en.xhtml:22 doc/noosfero/community/invite-contacts.en.xhtml:22
msgid "Manually invitation for community. Step 1"
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/invite-contacts.en.xhtml:24 doc/noosfero/user/invite-contacts.en.xhtml:22
msgid ""
"Type the e-mail adresses in the first field. You should type only one e-mail "
"in each line."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/invite-contacts.en.xhtml:25 doc/noosfero/community/invite-contacts.en.xhtml:31 doc/noosfero/user/invite-contacts.en.xhtml:23 doc/noosfero/user/invite-contacts.en.xhtml:29
msgid ""
"Clicking on &#8220;Personalize invitation mail&#8221;, you can edit the text "
"that will be sent. Then, click on &#8220;Invite my friends&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><ul><li><img>
#: doc/noosfero/community/invite-contacts.en.xhtml:25 doc/noosfero/community/invite-contacts.en.xhtml:25
msgid "Manually invitation for community. Step 2"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/invite-contacts.en.xhtml:27 doc/noosfero/user/invite-contacts.en.xhtml:25
msgid ""
"<strong>Importing</strong>: Choose one of the other options to import you "
"contacts from your e-mail. Fill in the fields with the username and password "
"you use to access your e-mail and click on &#8220;Next&#8221;."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/invite-contacts.en.xhtml:27 doc/noosfero/community/invite-contacts.en.xhtml:27
msgid "Import invitation for community. Step 1"
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/invite-contacts.en.xhtml:29 doc/noosfero/user/invite-contacts.en.xhtml:27
msgid ""
"You can type e-mail adresses in the first field, only one e-mail in each "
"line."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/invite-contacts.en.xhtml:30 doc/noosfero/user/invite-contacts.en.xhtml:28
msgid ""
"You will also see your list of e-mails. Check the e-mails that you want to "
"send an invitation."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><ul><li><img>
#: doc/noosfero/community/invite-contacts.en.xhtml:31 doc/noosfero/community/invite-contacts.en.xhtml:31
msgid "Import invitation for community. Step 2"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/community/index.en.xhtml:1
msgid "Community features"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:1 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:1 doc/noosfero/user/editing-sideboxes.en.xhtml:1
msgid "Editing sideboxes"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:2
msgid ""
"<em>You can customize the page of your community, changing the blocks that "
"will be displayed on it.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:14 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:14 doc/noosfero/user/editing-sideboxes.en.xhtml:12
msgid "Then, click on &#8220;Edit Sideboxes&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:14 doc/noosfero/community/editing-sideboxes.en.xhtml:14
msgid "Edit sideboxes on community control panel"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:18 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:18 doc/noosfero/user/editing-sideboxes.en.xhtml:16
msgid ""
"The model of the page will be displayed, always with 3 columns. If you want "
"to add a new block, click on &#8220;Add a block&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:18 doc/noosfero/community/editing-sideboxes.en.xhtml:18 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:18 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:18 doc/noosfero/user/editing-sideboxes.en.xhtml:16 doc/noosfero/user/editing-sideboxes.en.xhtml:16
msgid "Edit sideboxes"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:19 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:19 doc/noosfero/user/editing-sideboxes.en.xhtml:17
msgid "You will see the blocks that you can add to your page:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:19 doc/noosfero/community/editing-sideboxes.en.xhtml:19 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:19 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:19 doc/noosfero/user/editing-sideboxes.en.xhtml:17 doc/noosfero/user/editing-sideboxes.en.xhtml:17
msgid "Add a block"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:21 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:21 doc/noosfero/user/editing-sideboxes.en.xhtml:19
msgid ""
"Select where you want to add the new block. You have only two options, "
"&#8220;Area 2&#8221; (left side) and &#8220;Area 3&#8221; (right side). You "
"cannot add a new block in the middle of your page."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:22 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:22 doc/noosfero/user/editing-sideboxes.en.xhtml:20
msgid "Choose which block will be added."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:23 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:23 doc/noosfero/user/editing-sideboxes.en.xhtml:21
msgid ""
"After clicking on &#8220;Add&#8221; button, the new block will be displayed "
"on the bottom of the area you selected."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:25 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:25 doc/noosfero/user/editing-sideboxes.en.xhtml:23
msgid "Types of blocks:"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:27
msgid ""
"<strong>Display one of your contents:</strong> This block displays one of "
"the community&#8217;s articles. You can edit the block to select which "
"article is going to be displayed in the block."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:27 doc/noosfero/community/editing-sideboxes.en.xhtml:27 doc/noosfero/community/editing-sideboxes.en.xhtml:46 doc/noosfero/community/editing-sideboxes.en.xhtml:46 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:27 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:27 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:48 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:48 doc/noosfero/user/editing-sideboxes.en.xhtml:47 doc/noosfero/user/editing-sideboxes.en.xhtml:47
msgid "block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:28
msgid ""
"<strong>Last updates:</strong> Display the most recents contents created on "
"the community. You can choose how many articles will be listed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:28 doc/noosfero/community/editing-sideboxes.en.xhtml:28 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:28 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:28 doc/noosfero/user/editing-sideboxes.en.xhtml:26 doc/noosfero/user/editing-sideboxes.en.xhtml:26
msgid "Recent content block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:29
msgid ""
"<strong>Links (static menu):</strong> You can use it to create a menu of "
"links. You can add, remove and update the links as you wish. If you want a "
"link to the community&#8217;s blog, for example, you should type "
"&#8220;/{profile}/blog&#8221; on the field &#8220;Address&#8221;. The "
"&#8220;{profile}&#8221; will be replaced by your identifier."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:29 doc/noosfero/community/editing-sideboxes.en.xhtml:29 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:29 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:29 doc/noosfero/user/editing-sideboxes.en.xhtml:27 doc/noosfero/user/editing-sideboxes.en.xhtml:27
msgid "Links block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:30 doc/noosfero/user/editing-sideboxes.en.xhtml:28
msgid ""
"<strong>Feed reader:</strong> This block can be used to list the latest news "
"from any site you want. You just need to inform the address of a <span "
"class=\"caps\">RSS</span> feed clicking on &#8220;Edit&#8221; button. You "
"also can select the number of items that will be displayed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:30 doc/noosfero/community/editing-sideboxes.en.xhtml:30 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:30 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:30 doc/noosfero/user/editing-sideboxes.en.xhtml:28 doc/noosfero/user/editing-sideboxes.en.xhtml:28
msgid "Feed reader block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:31
msgid ""
"<strong>Location map:</strong> Shows where the community is on the material "
"world."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:31 doc/noosfero/community/editing-sideboxes.en.xhtml:31 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:31 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:31 doc/noosfero/user/editing-sideboxes.en.xhtml:29 doc/noosfero/user/editing-sideboxes.en.xhtml:29
msgid "Location map block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:32
msgid ""
"<strong>Members:</strong> Displays the members of the community. You can "
"choose how many members will be displayed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:32 doc/noosfero/community/editing-sideboxes.en.xhtml:32 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:32 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:32
msgid "Members block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:33
msgid ""
"<strong>Tags:</strong> Tags are created when a person add some of them to "
"the contents created on the community. This block will display the tags used "
"on the contents. You can choose how many tags will be displayed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:33 doc/noosfero/community/editing-sideboxes.en.xhtml:33 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:34 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:34 doc/noosfero/user/editing-sideboxes.en.xhtml:32 doc/noosfero/user/editing-sideboxes.en.xhtml:32
msgid "Tags block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:34
msgid ""
"<strong>Profile Information:</strong> It has a picture and some basic "
"information about the community, like how long the profile is part of the "
"environment and useful links."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:34 doc/noosfero/community/editing-sideboxes.en.xhtml:34 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:35 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:35 doc/noosfero/user/editing-sideboxes.en.xhtml:33 doc/noosfero/user/editing-sideboxes.en.xhtml:33
msgid "Profile info block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:35
msgid ""
"<strong>My network:</strong> This block displays some information about the "
"community&#8217;s networking."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:35 doc/noosfero/community/editing-sideboxes.en.xhtml:35
msgid "Community network block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:36
msgid "<strong>Profile Image:</strong> This block presents the community image."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:36 doc/noosfero/community/editing-sideboxes.en.xhtml:36 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:37 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:37 doc/noosfero/user/editing-sideboxes.en.xhtml:35 doc/noosfero/user/editing-sideboxes.en.xhtml:35
msgid "Profile image block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:37
msgid ""
"<strong>Slideshow:</strong> This block displays the images of one of the "
"community&#8217;s image galleries as a slideshow. You can edit the block to "
"select which image gallery will be displayed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:37 doc/noosfero/community/editing-sideboxes.en.xhtml:37 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:38 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:38 doc/noosfero/user/editing-sideboxes.en.xhtml:36 doc/noosfero/user/editing-sideboxes.en.xhtml:36
msgid "Slideshow block"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:39 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:41 doc/noosfero/user/editing-sideboxes.en.xhtml:40
msgid ""
"In the bottom of each block you will see some buttons. Passing mouse over "
"the button, the name of the button function is displayed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:39 doc/noosfero/community/editing-sideboxes.en.xhtml:39 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:41 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:41 doc/noosfero/user/editing-sideboxes.en.xhtml:40 doc/noosfero/user/editing-sideboxes.en.xhtml:40
msgid "Buttons from block"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:41 doc/noosfero/community/editing-header-footer.en.xhtml:21 doc/noosfero/cms/writing-article.en.xhtml:33 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:43 doc/noosfero/enterprise/editing-header-footer.en.xhtml:21 doc/noosfero/user/editing-sideboxes.en.xhtml:42 doc/noosfero/user/editing-header-footer.en.xhtml:19
msgid "From the left to right:"
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:43 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:45 doc/noosfero/user/editing-sideboxes.en.xhtml:44
msgid ""
"<strong>Move block up:</strong> The block will change place with the block "
"on the top of it."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:44 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:46 doc/noosfero/user/editing-sideboxes.en.xhtml:45
msgid ""
"<strong>Move block down:</strong> The block will change place with the block "
"on the bottom of it."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:45 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:47 doc/noosfero/user/editing-sideboxes.en.xhtml:46
msgid ""
"<strong>Move to the opposite side:</strong> The block is moved to the other "
"side of your page, on the bottom of the column. If it is on the left, it is "
"moved to the right side. If it is on the right, it is moved to the left "
"side."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:46 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:48 doc/noosfero/user/editing-sideboxes.en.xhtml:47
msgid ""
"<strong>Edit:</strong> This button will only be displayed if the block is "
"editable. Click on this button to configure the block. Some blocks have "
"specific configuration."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li><ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:48 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:50 doc/noosfero/user/editing-sideboxes.en.xhtml:49
msgid ""
"Custom title of this block: Each block has a default title. If you want to "
"change it, type your title in this field."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li><ol><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:49 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:51 doc/noosfero/user/editing-sideboxes.en.xhtml:50
msgid ""
"Display this block: Select how you want this block to be displayed. There "
"are 3 options:"
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li><ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:51 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:53 doc/noosfero/user/editing-sideboxes.en.xhtml:52
msgid "In all pages: The block will be displayed in all pages of your profile."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li><ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:52 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:54 doc/noosfero/user/editing-sideboxes.en.xhtml:53
msgid "Only in the home page: The block will only be displayed on your homepage."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li><ol><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:53 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:55 doc/noosfero/user/editing-sideboxes.en.xhtml:54
msgid "Don&#8217;t display: The block will not be displayed."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:56 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:58 doc/noosfero/user/editing-sideboxes.en.xhtml:57
msgid "<strong>Remove block:</strong> Remove the block from your page."
msgstr ""

#. type: Content of: <ol><li><ul><li><ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:57 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:59 doc/noosfero/user/editing-sideboxes.en.xhtml:58
msgid ""
"<strong>Help on this block:</strong> Display a message with a small "
"description of the block."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/editing-sideboxes.en.xhtml:64 doc/noosfero/community/toc.en.xhtml:9
msgid "<a href=\"/doc/community/editing-appearance\">Editing appearance</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/community/creating-community.en.xhtml:1
msgid "Creating a community"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/creating-community.en.xhtml:2
msgid "<em>You can create communities to interact to others users</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:11 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:11
msgid "In user menu, click on Control Panel"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:12 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:12
msgid "Then, click on &#8220;Manage my groups&#8221;:"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:16
msgid "Find the button &#8220;Create a new community&#8221; and click on it."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/creating-community.en.xhtml:16 doc/noosfero/community/creating-community.en.xhtml:16
msgid "Groups list"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:17
msgid "You will see a form to be filled with the community information."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/creating-community.en.xhtml:17 doc/noosfero/community/creating-community.en.xhtml:17
msgid "Form for creation of a community"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:19
msgid ""
"<strong>Name:</strong> Fill in with the name of the community you want to "
"create."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:20
msgid ""
"<strong>Tag list:</strong> Fill in with tags. Tags are keywords or terms "
"associated to your community."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:21
msgid ""
"<strong>Image:</strong> Insert a picture. It will be the image of your "
"community. Click on &#8220;File&#8230;&#8221; and choose the image in your "
"computer. The image must have a maximum of 500Kb and should be .jpg , .gif "
"or .png."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:22
msgid ""
"<strong>New members must be approved:</strong> You should choose if the "
"community should be moderated. Choosing the first option, a moderator needs "
"to approve when a person asks to join the community. Choosing the second "
"option, no moderation is needed."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:23
msgid "After filling the fields, click on &#8220;Create&#8221; button."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/creating-community.en.xhtml:25
msgid ""
"If allowed by the environment, the community will be already "
"created. Otherwise, the environment administrator will need to approve/deny "
"the new community."
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/community/moderating-articles.en.xhtml:1
msgid "Moderating articles"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/moderating-articles.en.xhtml:2
msgid ""
"<em>Community&#8217;s members can publish articles on community. If the "
"community is moderated, the administrator/moderator needs to approve or deny "
"the publication.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/moderating-articles.en.xhtml:17 doc/noosfero/community/accepting-members.en.xhtml:17
msgid ""
"If the community has pending requests, you will see a box with the list of "
"pending tasks on your control panel. In order to accept or deny, you should "
"click on &#8220;Process requests&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/moderating-articles.en.xhtml:18 doc/noosfero/community/moderating-articles.en.xhtml:18 doc/noosfero/community/accepting-members.en.xhtml:18 doc/noosfero/community/accepting-members.en.xhtml:18
msgid "Community control panel with pending tasks"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/moderating-articles.en.xhtml:19
msgid "You will see the tasks list."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/moderating-articles.en.xhtml:19 doc/noosfero/community/moderating-articles.en.xhtml:19 doc/noosfero/community/accepting-members.en.xhtml:20 doc/noosfero/community/accepting-members.en.xhtml:20
msgid "Community tasks list"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/moderating-articles.en.xhtml:21
msgid ""
"If you want to accept, choose the option &#8220;Accept&#8221;. If you want "
"to ignore the request, choose &#8220;Ignore&#8221;."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/moderating-articles.en.xhtml:22
msgid ""
"<strong>Name for publishing</strong>: When an article is approved, it will "
"be listed as content of the community. If you think the article should have "
"its original name, leave this field blank. If you want to change it, fill in "
"with the name you want."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/moderating-articles.en.xhtml:23
msgid ""
"<strong>Choose the folder where the article must be published</strong>: You "
"can choose the folder where the article will be listed."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/moderating-articles.en.xhtml:24
msgid ""
"<strong>Highlight this article</strong>: If the community is the news source "
"of the environment, you can check this option to highlight the article on "
"environment&#8217;s homepage."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/community/moderating-articles.en.xhtml:25
msgid ""
"<strong>Comment for author</strong>: The text written here will be sent to "
"the requestor after your decision."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/moderating-articles.en.xhtml:28
msgid ""
"After clicking on button &#8220;Ok!&#8221;, your decision will be "
"processed. If you accepted the article, it will be listed as "
"community&#8217;s content."
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/community/accepting-members.en.xhtml:1
msgid "Accepting new members"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/accepting-members.en.xhtml:2
msgid ""
"<em>If a community is moderated, the administrator/moderator needs to "
"approve the requests of new members.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/accepting-members.en.xhtml:19
msgid ""
"If you want to accept, choose the option &#8220;Accept&#8221;. You also need "
"to choose wich roles the new member should have. Each role has some "
"permissions, that are defined by the environment administrator."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-header-footer.en.xhtml:1 doc/noosfero/community/editing-header-footer.en.xhtml:50 doc/noosfero/community/editing-header-footer.en.xhtml:50 doc/noosfero/enterprise/editing-header-footer.en.xhtml:1 doc/noosfero/enterprise/editing-header-footer.en.xhtml:50 doc/noosfero/enterprise/editing-header-footer.en.xhtml:50 doc/noosfero/user/editing-header-footer.en.xhtml:1 doc/noosfero/user/editing-header-footer.en.xhtml:48 doc/noosfero/user/editing-header-footer.en.xhtml:48
msgid "Editing header and footer"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/community/editing-header-footer.en.xhtml:2
msgid ""
"<em>You can customize the page of your community, adding some text or image "
"on header or footer.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:14 doc/noosfero/enterprise/editing-header-footer.en.xhtml:14 doc/noosfero/user/editing-header-footer.en.xhtml:12
msgid "Then, click on &#8220;Edit Header and Footer&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-header-footer.en.xhtml:14 doc/noosfero/community/editing-header-footer.en.xhtml:14
msgid "Edit header and footer on community control panel"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:18 doc/noosfero/enterprise/editing-header-footer.en.xhtml:18 doc/noosfero/user/editing-header-footer.en.xhtml:16
msgid ""
"You will see 2 boxes. In the first box, add the content of your header, that "
"will be displayed on the top of your page. In the second box, add the "
"content of your footer, that will be displayed on the bottom of your page."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:19 doc/noosfero/enterprise/editing-header-footer.en.xhtml:19 doc/noosfero/user/editing-header-footer.en.xhtml:17
msgid ""
"On the top of both boxes you will see some buttons, that will help you "
"formatting your text. Passing mouse over the button, the name of the button "
"function is displayed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/community/editing-header-footer.en.xhtml:19 doc/noosfero/community/editing-header-footer.en.xhtml:19 doc/noosfero/cms/writing-article.en.xhtml:31 doc/noosfero/cms/writing-article.en.xhtml:31 doc/noosfero/enterprise/editing-header-footer.en.xhtml:19 doc/noosfero/enterprise/editing-header-footer.en.xhtml:19 doc/noosfero/user/editing-header-footer.en.xhtml:17 doc/noosfero/user/editing-header-footer.en.xhtml:17
msgid "WYSIWYG buttons"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:23 doc/noosfero/enterprise/editing-header-footer.en.xhtml:23 doc/noosfero/user/editing-header-footer.en.xhtml:21
msgid ""
"<strong>Print:</strong> use this button if you want to print your the box "
"content"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:24 doc/noosfero/cms/writing-article.en.xhtml:36 doc/noosfero/enterprise/editing-header-footer.en.xhtml:24 doc/noosfero/user/editing-header-footer.en.xhtml:22
msgid ""
"<strong>Copy:</strong> select a section of the text and click on this button "
"to copy it"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:25 doc/noosfero/cms/writing-article.en.xhtml:37 doc/noosfero/enterprise/editing-header-footer.en.xhtml:25 doc/noosfero/user/editing-header-footer.en.xhtml:23
msgid ""
"<strong>Paste:</strong> if you copied something, then use this button to "
"paste it on your text. The text will be pasted into the place where the "
"cursor is"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:26 doc/noosfero/cms/writing-article.en.xhtml:38 doc/noosfero/enterprise/editing-header-footer.en.xhtml:26 doc/noosfero/user/editing-header-footer.en.xhtml:24
msgid ""
"<strong>Undo:</strong> click on this button after writing or formatting some "
"text and want to undo the action"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:27 doc/noosfero/cms/writing-article.en.xhtml:39 doc/noosfero/enterprise/editing-header-footer.en.xhtml:27 doc/noosfero/user/editing-header-footer.en.xhtml:25
msgid ""
"<strong>Redo:</strong> click on this button if you clicked on button "
"&#8220;undo&#8221; and want to redo your last action"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:28 doc/noosfero/cms/writing-article.en.xhtml:40 doc/noosfero/enterprise/editing-header-footer.en.xhtml:28 doc/noosfero/user/editing-header-footer.en.xhtml:26
msgid ""
"<strong>Find:</strong> click on this button to find some word or phrase in "
"your text"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:29 doc/noosfero/cms/writing-article.en.xhtml:41 doc/noosfero/enterprise/editing-header-footer.en.xhtml:29 doc/noosfero/user/editing-header-footer.en.xhtml:27
msgid ""
"<strong>Find/Replace:</strong> click on this button to find some word or "
"phrase in your text and replace it for other"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:30 doc/noosfero/cms/writing-article.en.xhtml:42 doc/noosfero/enterprise/editing-header-footer.en.xhtml:30 doc/noosfero/user/editing-header-footer.en.xhtml:28
msgid ""
"<strong>Font size:</strong> used to define the size of characters. Select "
"the text/word and change the size clicking on this button"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:31 doc/noosfero/cms/writing-article.en.xhtml:43 doc/noosfero/enterprise/editing-header-footer.en.xhtml:31 doc/noosfero/user/editing-header-footer.en.xhtml:29
msgid ""
"<strong>Format:</strong> if you want to use one of the pre-configured "
"formats, select text/word, click on this button and select the desired "
"format."
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:32 doc/noosfero/cms/writing-article.en.xhtml:44 doc/noosfero/enterprise/editing-header-footer.en.xhtml:32 doc/noosfero/user/editing-header-footer.en.xhtml:30
msgid ""
"<strong>Bold:</strong> it formats your text/word with a line thicker than "
"usual. This format is used to emphasize the words. Example: "
"<strong>home</strong> . To use it, first you should select the text/word and "
"then click on button"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:33 doc/noosfero/cms/writing-article.en.xhtml:45 doc/noosfero/enterprise/editing-header-footer.en.xhtml:33 doc/noosfero/user/editing-header-footer.en.xhtml:31
msgid ""
"<strong>Italic</strong> it formats your text/word as oblique. This format is "
"also used to emphasize the words. Example: <em>home</em> . To use it, first "
"you should select the text/word and then click on button"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:34 doc/noosfero/cms/writing-article.en.xhtml:46 doc/noosfero/enterprise/editing-header-footer.en.xhtml:34
msgid ""
"<strong>Underline:</strong> it is also used to emphasize a word/phrase. One "
"line is drawn under the word. Example: <span "
"style=\"text-decoration:underline;\">home</span> . To use it, first you "
"should select the word/phrase and then click on button"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:35 doc/noosfero/cms/writing-article.en.xhtml:47 doc/noosfero/enterprise/editing-header-footer.en.xhtml:35 doc/noosfero/user/editing-header-footer.en.xhtml:33
msgid ""
"<strong>Strikethrough:</strong> one line in drawn in the middle of "
"word/phrase Example: <span "
"style=\"text-decoration:line-through;\">home</span> . To use it, first you "
"should select the word/phrase and then click on button"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:36 doc/noosfero/cms/writing-article.en.xhtml:48 doc/noosfero/enterprise/editing-header-footer.en.xhtml:36 doc/noosfero/user/editing-header-footer.en.xhtml:34
msgid ""
"<strong>Unordered list:</strong> it creates a list, inserting a small ball "
"before each item."
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:37 doc/noosfero/cms/writing-article.en.xhtml:49 doc/noosfero/enterprise/editing-header-footer.en.xhtml:37 doc/noosfero/user/editing-header-footer.en.xhtml:35
msgid ""
"<strong>Ordered list</strong> it creates a numbered list, adding a number "
"before each item."
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:38 doc/noosfero/cms/writing-article.en.xhtml:50 doc/noosfero/enterprise/editing-header-footer.en.xhtml:38 doc/noosfero/user/editing-header-footer.en.xhtml:36
msgid ""
"<strong>Align left:</strong> use this button if you want your text to be "
"left aligned. In this case, the right border of each line will be misaligned"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:39 doc/noosfero/cms/writing-article.en.xhtml:51 doc/noosfero/enterprise/editing-header-footer.en.xhtml:39 doc/noosfero/user/editing-header-footer.en.xhtml:37
msgid ""
"<strong>Align center</strong> the alignment of the text is based on the "
"center of the text. In this case, the left and right borders will be "
"misaligned"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:40 doc/noosfero/cms/writing-article.en.xhtml:52 doc/noosfero/enterprise/editing-header-footer.en.xhtml:40 doc/noosfero/user/editing-header-footer.en.xhtml:38
msgid ""
"<strong>Align right:</strong> use this button if you want your text to be "
"right aligned. In this case, the left border of each line will be misaligned"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:41 doc/noosfero/cms/writing-article.en.xhtml:53 doc/noosfero/enterprise/editing-header-footer.en.xhtml:41 doc/noosfero/user/editing-header-footer.en.xhtml:39
msgid ""
"<strong>Align full:</strong> use this button if you want your text to be "
"aligned in both sides. In this case, the left and right borders of each line "
"will be aligned"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:42 doc/noosfero/cms/writing-article.en.xhtml:54 doc/noosfero/enterprise/editing-header-footer.en.xhtml:42 doc/noosfero/user/editing-header-footer.en.xhtml:40
msgid ""
"<strong>Insert/edit link:</strong> use it when you want to insert or edit a "
"link to some address"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:43 doc/noosfero/cms/writing-article.en.xhtml:55 doc/noosfero/enterprise/editing-header-footer.en.xhtml:43 doc/noosfero/user/editing-header-footer.en.xhtml:41
msgid ""
"<strong>Unlink:</strong> if you have a link in your text, click on this "
"button to remove the link"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:44 doc/noosfero/cms/writing-article.en.xhtml:56 doc/noosfero/enterprise/editing-header-footer.en.xhtml:44 doc/noosfero/user/editing-header-footer.en.xhtml:42
msgid ""
"<strong>Insert/edit image:</strong> use it if you want to insert an image or "
"to edit an image that is in your text"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:45 doc/noosfero/cms/writing-article.en.xhtml:57 doc/noosfero/enterprise/editing-header-footer.en.xhtml:45 doc/noosfero/user/editing-header-footer.en.xhtml:43
msgid "<strong>Inserts a new table:</strong> use it to insert a table in your text"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:46 doc/noosfero/cms/writing-article.en.xhtml:58 doc/noosfero/enterprise/editing-header-footer.en.xhtml:46 doc/noosfero/user/editing-header-footer.en.xhtml:44
msgid ""
"<strong>Cleanup messy code:</strong> click on this button to remove bad "
"<span class=\"caps\">HTML</span> code. You should use it after pasting a "
"formatted text from another place"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:47 doc/noosfero/enterprise/editing-header-footer.en.xhtml:47 doc/noosfero/user/editing-header-footer.en.xhtml:45
msgid ""
"<strong>Edit <span class=\"caps\">HTML</span> source:</strong> the text "
"written in this editor is transformed in <span class=\"caps\">HTML</span> "
"code, to be viewed on browsers. Use this button to view/edit the <span "
"class=\"caps\">HTML</span> code of your header/footer."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/community/editing-header-footer.en.xhtml:50 doc/noosfero/enterprise/editing-header-footer.en.xhtml:50 doc/noosfero/user/editing-header-footer.en.xhtml:48
msgid "After editing your header and footer, click on &#8220;Save&#8221; button"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/index.en.xhtml:1
msgid "Noosfero online manual"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/index.en.xhtml:2
msgid ""
"This is the Noosfero online manual. In these pages you will find useful "
"information on how to use Noosfero, manage a Noosfero environment and "
"customize Noosfero in several ways."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/index.en.xhtml:3
msgid ""
"To display the manual about a given topic, first choose a section in the "
"left menu, and then choose a topic within the section."
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:1
msgid "Posting on blog"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:2
msgid "<em>You can have a blog and publish posts on it.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:10
msgid ""
"If you don&#8217;t have a blog yet, you can create yours following "
"instructions on <a href=\"/doc/cms/creating-blog\">Creating a blog</a> ."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:11
msgid "To find your blog, first find you user menu on top bar:"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:13 doc/noosfero/cms/managing-content.en.xhtml:14 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:13 doc/noosfero/cms/writing-article.en.xhtml:12
msgid "Then, click on &#8220;Manage content&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:13 doc/noosfero/cms/posting-on-blog.en.xhtml:13 doc/noosfero/cms/spreading-articles.en.xhtml:15 doc/noosfero/cms/spreading-articles.en.xhtml:15 doc/noosfero/cms/managing-content.en.xhtml:14 doc/noosfero/cms/managing-content.en.xhtml:14 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:13 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:13 doc/noosfero/cms/writing-article.en.xhtml:12 doc/noosfero/cms/writing-article.en.xhtml:12
msgid "Manage content in control panel"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:17
msgid "Find your blog on the list and click to view it."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:17 doc/noosfero/cms/posting-on-blog.en.xhtml:17
msgid "Public visualization of blog in CMS"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:18
msgid "You will see your blog. Click on &#8220;New post&#8221; button:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:18 doc/noosfero/cms/posting-on-blog.en.xhtml:18
msgid "Blog button on visualization mode"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:19
msgid ""
"Then, write an article following instructions on <a "
"href=\"/doc/cms/writing-article\">Writing an article</a> ."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:23 doc/noosfero/cms/toc.en.xhtml:6
msgid "<a href=\"/doc/cms/creating-blog\">Creating a blog</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/posting-on-blog.en.xhtml:24 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:23 doc/noosfero/cms/creating-blog.en.xhtml:28 doc/noosfero/cms/toc.en.xhtml:9
msgid "<a href=\"/doc/cms/managing-content\">Managing your content</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/cms/spreading-articles.en.xhtml:1
msgid "Spreading articles"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/spreading-articles.en.xhtml:2
msgid ""
"<em>With an article already created, you can spread it in the communities "
"that you participate.</em>"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/cms/spreading-articles.en.xhtml:9
msgid "To spread your articles there are two options that you can follow:"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/spreading-articles.en.xhtml:11
msgid "Through the Content Manager"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/spreading-articles.en.xhtml:13 doc/noosfero/cms/managing-content.en.xhtml:12 doc/noosfero/cms/creating-blog.en.xhtml:10 doc/noosfero/cms/writing-article.en.xhtml:10
msgid "Find your menu on top bar:"
msgstr ""

#. type: Content of: <ul><li><ol><li>
#: doc/noosfero/cms/spreading-articles.en.xhtml:15
msgid "Click on &#8220;Manage content&#8221;:"
msgstr ""

#. type: Content of: <ul><li><ol><li>
#: doc/noosfero/cms/spreading-articles.en.xhtml:16
msgid "Then click on the &#8220;Spread this&#8221; button:"
msgstr ""

#. type: Attribute 'alt' of: <ul><li><ol><li><img>
#: doc/noosfero/cms/spreading-articles.en.xhtml:16 doc/noosfero/cms/spreading-articles.en.xhtml:16 doc/noosfero/cms/spreading-articles.en.xhtml:22 doc/noosfero/cms/spreading-articles.en.xhtml:22 doc/noosfero/cms/spreading-articles.en.xhtml:23 doc/noosfero/cms/spreading-articles.en.xhtml:23
msgid "Spread article"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/spreading-articles.en.xhtml:20
msgid "Through the article&#8217;s view page"
msgstr ""

#. type: Content of: <ul><li><ol><li>
#: doc/noosfero/cms/spreading-articles.en.xhtml:22
msgid "Access your article and press the &#8220;Spread this&#8221; button:"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/spreading-articles.en.xhtml:27
msgid ""
"Check the communities where you want to spread your article and fill in the "
"name that you want to spread it."
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/cms/spreading-articles.en.xhtml:28 doc/noosfero/cms/spreading-articles.en.xhtml:28
msgid "Choose the communities"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/spreading-articles.en.xhtml:29
msgid ""
"After choosing the communities and the respective names, you just need to "
"press &#8220;Spread this&#8221;. Note that there are communities where the "
"publication needs the moderation of the administrator."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/spreading-articles.en.xhtml:32 doc/noosfero/cms/managing-content.en.xhtml:51 doc/noosfero/cms/writing-advanced-article.en.xhtml:63 doc/noosfero/cms/toc.en.xhtml:3
msgid "<a href=\"/doc/cms/writing-article\">Writing an article</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/spreading-articles.en.xhtml:33
msgid ""
"<a href=\"/doc/cms/writing-advanced-article\">Writing an advanced "
"article</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/cms/managing-content.en.xhtml:1
msgid "Managing your content"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/managing-content.en.xhtml:2
msgid ""
"<em>Folder is a structure used to organize files in a computer and can also "
"be called a directory. It may contain other files and folders, which may "
"also contain other directories</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/managing-content.en.xhtml:3
msgid ""
"<em>It is usually used to organize files from the same category, like music, "
"videos, poems, recipes, payments or the way the user prefers.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/managing-content.en.xhtml:4
msgid ""
"<em>To organize your texts/images/files, you should manage your "
"content.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:18
msgid ""
"You will see some buttons and the list of your content. The folders are "
"listed first and then your files/articles. Clicking on your folders, you "
"will see the files/folders inside them."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/managing-content.en.xhtml:18 doc/noosfero/cms/managing-content.en.xhtml:18
msgid "CMS with marks on buttons"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:19
msgid ""
"Click to create a new folder. To understand categories and tags, read <a "
"href=\"/doc/cms/writing-article\">Writing an article</a> from item 7."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/managing-content.en.xhtml:19 doc/noosfero/cms/managing-content.en.xhtml:19
msgid "Creating a new folder"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:21
msgid "Fill in with the name you want for your folder"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:22
msgid ""
"Select the type of the folder you want to create. If you want to use it to "
"organize pictures, choose the type &#8220;Image gallery&#8221;"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:23
msgid "Fill in with some information about the folder"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:25
msgid "Click to upload files"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/managing-content.en.xhtml:25 doc/noosfero/cms/managing-content.en.xhtml:25
msgid "Uploading files from CMS"
msgstr ""

#. type: Content of: <ul><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:27 doc/noosfero/cms/writing-advanced-article.en.xhtml:35
msgid "Select the folder where the file will be uploaded"
msgstr ""

#. type: Content of: <ul><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:28 doc/noosfero/cms/writing-advanced-article.en.xhtml:36
msgid "Select the file in your computer"
msgstr ""

#. type: Content of: <ul><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:29 doc/noosfero/cms/writing-advanced-article.en.xhtml:37
msgid "If you want to upload more files at once, click on &#8220;More files&#8221;"
msgstr ""

#. type: Content of: <ul><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:30 doc/noosfero/cms/writing-advanced-article.en.xhtml:38
msgid "Click on &#8220;Upload&#8221;"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:32
msgid ""
"Clicking on this button, you will create a new article. To learn how to "
"write an article, read <a href=\"/doc/cms/writing-article\">Writing an "
"article</a>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:33
msgid "Folder options. From left to right:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/managing-content.en.xhtml:33 doc/noosfero/cms/managing-content.en.xhtml:33
msgid "Folder icons on CMS"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:35
msgid "<strong>Edit:</strong> It allows you to change folder&#8217;s information"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:36 doc/noosfero/cms/managing-content.en.xhtml:43
msgid ""
"<strong>Public view:</strong> It shows how the folder will be displayed to "
"the others users"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:37
msgid "<strong>Use as homepage:</strong> Set the folder as your homepage"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:38
msgid "<strong>Delete:</strong> Delete the folder"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:40
msgid "Files options. From left to right:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/managing-content.en.xhtml:40 doc/noosfero/cms/managing-content.en.xhtml:40
msgid "Article icons on CMS"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:42
msgid "<strong>Edit:</strong> It allows you to change the article"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:44
msgid ""
"<strong>Publish:</strong> It should be used to publish your articles in "
"communities or enterprises that you are member"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:45
msgid "<strong>Use as homepage:</strong> Set the article as your homepage"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/managing-content.en.xhtml:46
msgid "<strong>Delete:</strong> Delete the article"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:1
msgid "Adding pictures to gallery"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:2
msgid "<em>You can publish pictures on your image gallery</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:10
msgid ""
"If you don&#8217;t have an image gallery yet, you can create yours following "
"instructions on <a href=\"/doc/cms/managing-content\">Managing content</a> "
"until item 1 of description. When creating the folder, choose &#8220;Image "
"gallery&#8221; in &#8220;Folder type&#8221;."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:11
msgid "To find your image gallery, first find your user menu on top bar:"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:17
msgid "Find your gallery on the list and click to view it."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:17 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:17
msgid "Public visualization of gallery in CMS"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:18
msgid "You will see your image gallery. Click on &#8220;Upload files&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:18 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:18
msgid "Gallery buttons on visualization mode"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:19
msgid ""
"Select the pictures you want to upload and click on &#8220;Upload&#8221; "
"button. If you want to upload more than 3 pictures at once, click on "
"&#8220;More files&#8221;button and more fields will appear."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/adding-images-to-gallery.en.xhtml:19 doc/noosfero/cms/adding-images-to-gallery.en.xhtml:19
msgid "uploading files to gallery"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/cms/creating-blog.en.xhtml:1
msgid "Creating a blog"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/creating-blog.en.xhtml:2
msgid "<em>You can have a blog in your system.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:12
msgid "Then click on &#8220;Create blog&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/creating-blog.en.xhtml:12 doc/noosfero/cms/creating-blog.en.xhtml:12
msgid "Create a blog in control panel"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/creating-blog.en.xhtml:15
msgid "Fill in the form and click on Save"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/cms/creating-blog.en.xhtml:15 doc/noosfero/cms/creating-blog.en.xhtml:15
msgid "Creation of a blog"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:17
msgid "Fill in with the name you want for your blog"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:18
msgid ""
"By default, blog address is based on blog&#8217;s name. If you want, you can "
"change it in this field."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:19
msgid "Type some description about your blog."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:20
msgid "Select the number of posts that will be listed in each blog&#8217;s page."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:21
msgid ""
"Select the number of posts that will be listed in blog&#8217;s <span "
"class=\"caps\">RSS</span> feed."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:22
msgid ""
"Select the content that will be displayed in post description on "
"blog&#8217;s <span class=\"caps\">RSS</span> feed."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:23
msgid ""
"Select this option if you want to import your posts from an external "
"feed. If you selected the option, you should fill in the field with the feed "
"address and choose if you want to import the posts periodically or just "
"once."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:24
msgid "Fill in with the blog&#8217;s tags."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/creating-blog.en.xhtml:29 doc/noosfero/cms/toc.en.xhtml:7
msgid "<a href=\"/doc/cms/posting-on-blog\">Posting on blog</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/cms/index.en.xhtml:1
msgid "Content Management"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:1
msgid "Writing an advanced article (inserting images, links, videos and audio)"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:2
msgid ""
"<em>You can add images and links to the articles created on the system to "
"make it more interesting.</em>"
msgstr ""

#. type: Content of: <ul><li><ul><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:7
msgid "<a href=\"#insertinglinks\">Inserting links</a>"
msgstr ""

#. type: Content of: <ul><li><ul><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:8
msgid "<a href=\"#insertingimages\">Inserting images</a>"
msgstr ""

#. type: Content of: <ul><li><ul><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:9
msgid "<a href=\"#insertingvideosaudio\">Inserting videos and audio</a>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:14
msgid ""
"Read <a href=\"/doc/cms/writing-article\">Writing an article</a> to learn "
"how to access article edition page."
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:16
msgid "Inserting links"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:18
msgid "Write the text that will be displayed"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:18 doc/noosfero/cms/writing-advanced-article.en.xhtml:18 doc/noosfero/cms/writing-article.en.xhtml:25 doc/noosfero/cms/writing-article.en.xhtml:25
msgid "Text on an article"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:19
msgid "Select the text and click on &#8220;Insert/edit link&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:19 doc/noosfero/cms/writing-advanced-article.en.xhtml:19
msgid "Insert links on an article"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:20
msgid "You will see a small window with a form to be filled."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:22
msgid ""
"<strong>Link <span class=\"caps\">URL</span>:</strong> fill in with the link "
"address"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:23
msgid ""
"<strong>Target:</strong> choose waht will happen when one person click on "
"the link, if it will open in the same window or in a new one."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:24
msgid ""
"<strong>Title:</strong> fill in what will be displayed when a person pass "
"mouse over the link."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:25 doc/noosfero/cms/writing-advanced-article.en.xhtml:25
msgid "Insert link popup on an article"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:27
msgid ""
"After filling in the form, click on &#8220;Insert&#8221; and the link will "
"be inserted on article."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:28 doc/noosfero/cms/writing-advanced-article.en.xhtml:28
msgid "Created link on an article"
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:30
msgid "Inserting images"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:31
msgid "When creating/editing an article, you will see a box in the right side."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:33
msgid ""
"In the top of it, you can choose files from your computer and upload them as "
"files from your profile."
msgstr ""

#. type: Attribute 'alt' of: <ul><li><ol><li><img>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:39 doc/noosfero/cms/writing-advanced-article.en.xhtml:39
msgid "Upload images when writing an article"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:41
msgid ""
"In the bottom of it, you will see the list of your files, that can be "
"inserted in your article."
msgstr ""

#. type: Content of: <ul><li><ul><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:43
msgid ""
"In the left column, you will see the images and in the right column, others "
"files, below &#8220;Documents&#8221;."
msgstr ""

#. type: Content of: <ul><li><ul><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:44
msgid ""
"When you add a document to your article, a link is created on it to download "
"the file. When you add an image, it will be displayed as an image in the "
"article. But both can be added in the same way:"
msgstr ""

#. type: Content of: <ul><li><ul><li><ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:46
msgid "Choose the folder that has the image you want to insert"
msgstr ""

#. type: Content of: <ul><li><ul><li><ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:47
msgid ""
"You will see a list with thumbnails of the images in the folder of your "
"choice"
msgstr ""

#. type: Content of: <ul><li><ul><li><ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:48
msgid ""
"Using your mouse, click and drag the image to the part of the text where it "
"will be inserted."
msgstr ""

#. type: Attribute 'alt' of: <ul><li><ul><li><ol><li><img>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:49 doc/noosfero/cms/writing-advanced-article.en.xhtml:49
msgid "Archives list when writing an article"
msgstr ""

#. type: Content of: <h3>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:53
msgid "Inserting videos and audio"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:55
msgid "Click on &#8220;<span class=\"caps\">HTML</span>&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:55 doc/noosfero/cms/writing-advanced-article.en.xhtml:55
msgid "Insert html on an article"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:56
msgid "Insert the code of the video or audio an click on &#8220;Update&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:56 doc/noosfero/cms/writing-advanced-article.en.xhtml:56
msgid "Insert html popup on an article"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:57
msgid "You will see a square with a &#8220;play&#8221; image on your text"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:57 doc/noosfero/cms/writing-advanced-article.en.xhtml:57
msgid "Created object on an article"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:58
msgid ""
"After clicking on &#8220;Save&#8221; button, the video or audio will be "
"displayed on your text."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/writing-advanced-article.en.xhtml:62 doc/noosfero/cms/writing-article.en.xhtml:77
msgid "<a href=\"/doc/cms/spreading-articles\">Spreading an article</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/cms/writing-article.en.xhtml:1
msgid "Writing an article"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/cms/writing-article.en.xhtml:2
msgid ""
"<em>To publish your articles you can create an aticle, as explained "
"below.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:16
msgid "Click on &#8220;New article&#8221; button:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-article.en.xhtml:16 doc/noosfero/cms/writing-article.en.xhtml:16
msgid "New article on CMS"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:17
msgid ""
"There are four options of article that you can create after clicking on "
"&#8220;New article&#8221; button:"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/cms/writing-article.en.xhtml:19
msgid ""
"<strong>Text article with visual editor:</strong> the screen for "
"article&#8217;s edition is similar to most text editors"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/cms/writing-article.en.xhtml:20
msgid ""
"<strong>Text article with Textile markup language:</strong> this option "
"helps edition of articles by people with visual impairments. To format the "
"text, is used the markup language <a "
"href=\"http://textile.thresholdstate.com/\">Textile</a>"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/cms/writing-article.en.xhtml:21
msgid "<strong>Event:</strong> creates an event, that will be listed on calendar"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/cms/writing-article.en.xhtml:22
msgid ""
"<strong>Feed <span class=\"caps\">RSS</span>:</strong> provides a <a "
"href=\"http://pt.wikipedia.org/wiki/Feed\">feed</a> <a "
"href=\"http://pt.wikipedia.org/wiki/RSS\"><span "
"class=\"caps\">RSS</span></a> of your recent articles"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/cms/writing-article.en.xhtml:23
msgid ""
"In this example, we will create an article with visual editor. Click on "
"&#8220;Text article with visual editor&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/cms/writing-article.en.xhtml:23 doc/noosfero/cms/writing-article.en.xhtml:23
msgid "List of article types"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:25
msgid "Create your article"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:27
msgid ""
"Fill in the field &#8220;Title&#8221; with the name of the article you want "
"to create."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:28
msgid ""
"Sometimes you need an introduction of the article, like when your blog is "
"configured to display only the initial part of the post. If you need a "
"shorter version click on &#8220;Lead&#8221; button and write the "
"introduction."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/cms/writing-article.en.xhtml:28 doc/noosfero/cms/writing-article.en.xhtml:28
msgid "Lead text on an article"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:29
msgid ""
"Below, there is a space for text, where you will write the content of your "
"article. You can write your text the same way you write in others text "
"editors."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:30
msgid ""
"After the text box, there are two buttons: &#8220;Save&#8221; (saves the "
"article and display it) and &#8220;Save an continue&#8221; (saves the "
"article and keeps on the same edition page)"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:31
msgid ""
"In the top of the box where you type your article you will see some buttons, "
"that will help you formatting your text. Passing mouse over the button, the "
"name of the button function is displayed."
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:35
msgid "<strong>Print:</strong> use this button if you want to print your article"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:59
msgid ""
"<strong>Edit <span class=\"caps\">HTML</span> source:</strong> the text "
"written in this editor is transformed in <span class=\"caps\">HTML</span> "
"code, to be viewed on browsers. Use this button to view/edit the <span "
"class=\"caps\">HTML</span> code of your article."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:63
msgid ""
"If categorization is enabled in the system, you can categorize your article, "
"increasing the possibility of others to access it. To view and select the "
"categories, click on the arrow:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-article.en.xhtml:63 doc/noosfero/cms/writing-article.en.xhtml:63
msgid "Categorization of an article on creation"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:64
msgid "You can select as many categories as you want."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-article.en.xhtml:64 doc/noosfero/cms/writing-article.en.xhtml:64
msgid "Category choosen on an article creation"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:65
msgid ""
"Tags list: fill in with tags. Tags are keywords or terms associated to your "
"article. It is also used to increase the possibility of others to access it, "
"because it will be listed when an user clicks in one of the tags your "
"article has."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-article.en.xhtml:65 doc/noosfero/cms/writing-article.en.xhtml:65
msgid "Tag on an article creation"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:66
msgid "When creating an article, you should check the options you want."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/cms/writing-article.en.xhtml:66 doc/noosfero/cms/writing-article.en.xhtml:66
msgid "Options on an article creation"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:68
msgid "Everybody will be able to view the article"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:69
msgid "Everybody who view your article will be able to comment on it"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:70
msgid "Sends an e-mail to you when a person comments on your article"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:71
msgid "Display the number of article&#8217;s visualizations"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/cms/writing-article.en.xhtml:73
msgid "Then, click on &#8220;Save&#8221; button and the article will be created."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/writing-article.en.xhtml:78
msgid "<a href=\"/doc/cms/writing-advanced-article\">Writing advanced articles</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/enterprise/disabling-enterprise.en.xhtml:1
msgid "Disabling an enterprise"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/enterprise/disabling-enterprise.en.xhtml:2
msgid ""
"<em>If you are an administrator of any enterprise and you don&#8217;t want "
"that it appears in the system anymore, you can disable it by following this "
"steps.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/disabling-enterprise.en.xhtml:13 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:13
msgid ""
"You will see the list of groups (communities/enterprises) that you are a "
"member. The groups that you can manage are listed with a link "
"&#8220;Manage&#8221;. Assuming that you are administrator of enterprise "
"&#8220;My enterprise&#8221;, click on &#8220;Manage&#8221; link."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/disabling-enterprise.en.xhtml:17
msgid ""
"In enterprise&#8217;s control panel, click on &#8220;Disable "
"Enterprise&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/disabling-enterprise.en.xhtml:18 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:18
msgid "Control panel with disable enterprise"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/disabling-enterprise.en.xhtml:19
msgid ""
"You will see the confirmation screen. If you are sure that you want to "
"disable the enterprise, click on &#8220;Yes, I want to disable&#8221;."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/disabling-enterprise.en.xhtml:20 doc/noosfero/enterprise/disabling-enterprise.en.xhtml:20
msgid "Enterprise disabling confirmation"
msgstr ""

#. type: Content of: <h2>
#: doc/noosfero/enterprise/disabling-enterprise.en.xhtml:22 doc/noosfero/enterprise/activating-enterprise.en.xhtml:23 doc/noosfero/user/accepting-friends.en.xhtml:20
msgid "Related Topics"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/disabling-enterprise.en.xhtml:25 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:38
msgid "<a href=\"/doc/enterprise/activating-enterprise\">Activating enterprise</a>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/enterprise/editing-appearance.en.xhtml:2
msgid ""
"<em>You can customize the page of your enterprise, changing the template of "
"it.</em>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/editing-appearance.en.xhtml:31 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:65 doc/noosfero/enterprise/toc.en.xhtml:9
msgid ""
"<a href=\"/doc/enterprise/editing-header-footer\">Editing header and "
"footer</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:1
msgid "Activating your enterprise"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:2
msgid ""
"<em>If you have an enterprise that is registered in the system, you might "
"have the activation code of the enterprise.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:3
msgid ""
"<em>This article shows how you can activate your enterprise in the "
"system. After that, you can update information, add members, products and "
"much more.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:16
msgid ""
"Below the control panel actions, you will see a box. Fill in the field with "
"the enterprise activation code and click on &#8220;Activate&#8221;."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:17 doc/noosfero/enterprise/activating-enterprise.en.xhtml:17
msgid "Control panel and enterprise activation box"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:18
msgid ""
"You will see a screen with the first activations step, the question about "
"the enterprise. You must fill in the field with the correct answer, or your "
"enterprise will be blocked. If you are sure that your answer is right, click "
"on &#8220;Continue&#8221; button."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:18 doc/noosfero/enterprise/activating-enterprise.en.xhtml:18
msgid "Activation question"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:19
msgid ""
"If the answer is wrong, the enterprise will be blocked and you need to "
"contact the system admin to unblock it. If the answer is right, you will go "
"to step 2. In this step, you should read the terms of use and, if you agree "
"with it, choose the option &#8220;I read the terms of use and accepted "
"them.&#8221;. After that, click on &#8220;Continue&#8221; button."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:20 doc/noosfero/enterprise/activating-enterprise.en.xhtml:20
msgid "Enterprise terms of use"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:21
msgid ""
"Then, you will receive a confirmation that your enterprise was activated. In "
"this screen, you can go to enterprise&#8217;s control panel and update it or "
"go to your control panel."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:21 doc/noosfero/enterprise/activating-enterprise.en.xhtml:21
msgid "Conclusion of enterprise activation"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:25 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:33 doc/noosfero/enterprise/adding-product.en.xhtml:35 doc/noosfero/enterprise/toc.en.xhtml:6
msgid ""
"<a href=\"/doc/enterprise/editing-enterprise-info\">Editing enterprise "
"settings</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/activating-enterprise.en.xhtml:26 doc/noosfero/user/deleting-profile.en.xhtml:21 doc/noosfero/user/toc.en.xhtml:3
msgid "<a href=\"/doc/user/registering-new-user\">Registering a new user</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/enterprise/index.en.xhtml:1
msgid "Enterprise features"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:2
msgid ""
"<em>You can customize the page of your enterprise, changing the blocks that "
"will be displayed on it.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:13
msgid ""
"You will see the list of groups (communities/enterprises) that you are a "
"member. The groups that you can manage are listed with a link "
"&#8220;Manage&#8221;. Assuming that you are an enterprise administrator, "
"click on &#8220;Manage&#8221; link."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:14 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:14
msgid "Edit sideboxes on enterprise control panel"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:27
msgid ""
"<strong>Display one of your contents:</strong> This block displays one of "
"the enterprise&#8217;s articles. You can edit the block to select which "
"article is going to be displayed in the block."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:28
msgid ""
"<strong>Last updates:</strong> Display the most recents contents created on "
"the enterprise. You can choose how many articles will be listed."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:29
msgid ""
"<strong>Links (static menu):</strong> You can use it to create a menu of "
"links. You can add, remove and update the links as you wish. If you want a "
"link to the enterprise&#8217;s blog, for example, you should type "
"&#8220;/{profile}/blog&#8221; on the field &#8220;Address&#8221;. The "
"&#8220;{profile}&#8221; will be replaced by your identifier."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:30
msgid ""
"<strong>Feed reader:</strong> This block can be used to list the latest news "
"from any site you want. You just need to inform the address of a <span "
"class=\"caps\">RSS</span> feed clicking on &#8220;Edit button&#8221;. You "
"also can select the number of items that will be displayed."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:31
msgid ""
"<strong>Location map:</strong> Shows where the enterprise is on the material "
"world."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:32
msgid ""
"<strong>Members:</strong> Displays the members of the enterprise. You can "
"choose how many members will be displayed."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:33
msgid ""
"<strong>Products:</strong> Displays the products of the enterprise. You can "
"choose how many products will be displayed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:33 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:33
msgid "Products block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:34
msgid ""
"<strong>Tags:</strong> Tags are created when a person add some of them to "
"the contents created on the enterprise. This block will display the tags "
"used on the contents. You can choose how many tags will be displayed."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:35
msgid ""
"<strong>Profile Information:</strong> It has a picture and some basic "
"information about the enterprise, like how long the profile is part of the "
"environment and useful links."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:36
msgid "<strong>My network:</strong> This block displays some links."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:36 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:36
msgid "enterprise network block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:37
msgid "<strong>Profile Image:</strong> This block presents the enterprise image."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:38
msgid ""
"<strong>Slideshow:</strong> This block displays the images of one of the "
"enterprise&#8217;s image galleries as a slideshow. You can edit the block to "
"select which image gallery will be displayed."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:39
msgid ""
"<strong>&#8220;Disabled enterprise&#8221; message:</strong> Shows a message "
"for disabled enterprises."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:39 doc/noosfero/enterprise/editing-sideboxes.en.xhtml:39
msgid "Disabled enterprise block"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/editing-sideboxes.en.xhtml:66 doc/noosfero/enterprise/toc.en.xhtml:8
msgid "<a href=\"/doc/enterprise/editing-appearance\">Editing appearance</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:1
msgid "Managing and adding members to an enterprise"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:2
msgid ""
"<em>If you are an enterprise administrator, you can add or remove members "
"from enterprise and also define which permissions each member will have</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:13
msgid ""
"You will see the list of groups (communities/enterprises) that you are a "
"member. The groups that you can manage are listed with a link "
"&#8220;Manage&#8221;. Assuming that you are administrator of an "
"enterprise&quot;, click on &#8220;Manage&#8221; link."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:17
msgid "In enterprise&#8217;s control panel, click on &#8220;Manage members&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:18 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:18
msgid "Control panel with manage members"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:19
msgid ""
"You will see the list of people who are members of the enterprise and some "
"buttons that will be explained in parts:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:19 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:19
msgid "Members list of enterprise on manage members"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:21
msgid ""
"<strong>Edit user role:</strong> Choose the role the member will have in the "
"enterprise. Each role is associated to some permissions."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:21 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:21
msgid "Changing role of an enterprise member"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:22
msgid ""
"<strong>Remove user:</strong> Clicking on the button, the user will be "
"removed from the enterprise."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:23
msgid ""
"<strong>Add members:</strong> You will see a screen to add new members to "
"the enterprise. The members you add will have administrator role by default, "
"with all permissions."
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:25
msgid ""
"Type in search field the name of the user system you want to add to the "
"enterprise. The table in the left side (&#8220;Users&#8221;) will display "
"the search results."
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:26
msgid ""
"Click on &#8220;+&#8221; button to add the user. After clicking the button, "
"the table on the right side (&#8220;Current members&#8221;) will be updated "
"with the new member."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><ol><li><img>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:27 doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:27
msgid "Add member on manage member"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/managing-enterprise-members.en.xhtml:34 doc/noosfero/enterprise/adding-product.en.xhtml:36 doc/noosfero/enterprise/toc.en.xhtml:3
msgid ""
"<a href=\"/doc/enterprise/activating-enterprise\">Activating your "
"enterprise</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:1
msgid "Editing enterprise settings"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:2
msgid ""
"<em>If you are administrator of an enterprise, you can edit its "
"settings.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:17
msgid ""
"In enterprise&#8217;s control panel, click on &#8220;Enterprise Info and "
"settings&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:18 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:18
msgid "Control panel with edit profile info"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:19
msgid ""
"Then you will see a form with the information and settings of the "
"enterprise. This screen will be explained in parts"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:20
msgid ""
"<strong>General information:</strong> Fill in with your enterprise&#8217;s "
"data. If you want the &#8220;Contact&#8221; button to be displayed when a "
"person visit your enterprise&#8217;s page, select &#8220;Enable "
"&#8216;contact us&#8217;&#8221;."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:21 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:21
msgid "General information when editing enterprise profile info"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:22
msgid ""
"<strong>Moderation options:</strong> Choose how the article&#8217;s "
"moderation on enterprise will be. Choose the first option if you want the "
"enterprise&#8217;s administrators to approve/deny the articles published and "
"choose the second if approval is not needed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:23 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:23
msgid "Moderation options when editing enterprise profile info"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:24
msgid ""
"<strong>Change picture:</strong> Insert a picture or change "
"enterprise&#8217;s picture. Click on &#8220;File&#8230;&#8221; and choose "
"the image in your computer. The image must have a maximum of 500Kb e be "
"<em>.jpg</em> , <em>.gif</em> or <em>.png</em> ."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:26 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:26
msgid "Add picture when editing enterprise profile info"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:27 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:27
msgid "Change picture when editing enterprise profile info"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:29
msgid ""
"<strong>Privacy options:</strong> Choose if enterprise profile will be "
"public or private. When an enterprise is private, the users that are not "
"friends and tries to view the enterprise&#8217;s profile or its contents "
"will be redirected to a page that show only general information."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:30 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:30 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:32 doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:32 doc/noosfero/user/editing-person-info.en.xhtml:20 doc/noosfero/user/editing-person-info.en.xhtml:20
msgid "Privacy options when editing enterprise profile info"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:31
msgid ""
"<strong>Categories:</strong> If enabled on the system, you can choose the "
"categories that the enterprise will have."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/editing-enterprise-info.en.xhtml:33
msgid ""
"Then, click on &#8220;Save&#8221; button&quot; and the profile will be "
"updated."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/enterprise/editing-header-footer.en.xhtml:2
msgid ""
"<em>You can customize the page of your enterprise, adding some text or image "
"on header or footer.</em>"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/editing-header-footer.en.xhtml:14 doc/noosfero/enterprise/editing-header-footer.en.xhtml:14
msgid "Edit header and footer on enterprise control panel"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/enterprise/adding-product.en.xhtml:1
msgid "Adding products to an enterprise"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/enterprise/adding-product.en.xhtml:2
msgid ""
"<em>If you are an enterprise administrator, you can add products to the "
"enterprise.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:10
msgid ""
"Go to the enterprise&#8217;s page. Use the <a "
"href=\"/doc/navigation/searching-enterprises\">search</a> and click on the "
"enterprise you want to add a product."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:14
msgid ""
"In enterprise&#8217;s control panel, click on &#8220;Manage products and "
"services&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:14 doc/noosfero/enterprise/adding-product.en.xhtml:14
msgid "Control panel with manage products"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:15
msgid ""
"You will see the list of products already registered. To add a new "
"product/service click on &#8220;New product or service&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:15 doc/noosfero/enterprise/adding-product.en.xhtml:15
msgid "Product list of enterprise on manage products"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:16
msgid ""
"Choose the category of your product. The button &#8220;Save and "
"continue&#8221; will become active if you are allowed to add a product on "
"the choosen category. Otherwise, you should keep browsing through the "
"category&#8217;s children until you choose a category that allows "
"registration of products. When you finish choosing the category, press the "
"&#8220;Save and continue button&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:17 doc/noosfero/enterprise/adding-product.en.xhtml:17
msgid "First category of product"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:18 doc/noosfero/enterprise/adding-product.en.xhtml:18
msgid "Second category of product"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:19 doc/noosfero/enterprise/adding-product.en.xhtml:19
msgid "Last category of product"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:20
msgid ""
"Then you will see the product you have just created. By default, the "
"product&#8217;s name is the same as the product&#8217;s category. In this "
"page you can change the product&#8217;s category, name, unit, image, basic "
"information and add inputs clicking on the link indicated by numbers"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:20 doc/noosfero/enterprise/adding-product.en.xhtml:20
msgid "Product created"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:22
msgid ""
"&#8220;Edit name and unit&#8221;: Fill in the form with the name of your "
"product and choose the unit of it (unit, litre, kilo) and press the "
"&#8220;Save&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:22 doc/noosfero/enterprise/adding-product.en.xhtml:22
msgid "Edit name form"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:23
msgid ""
"&#8220;Change image&#8221;: Choose an image and press the &#8220;Save&#8221; "
"button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:23 doc/noosfero/enterprise/adding-product.en.xhtml:23
msgid "Change image form"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:24
msgid ""
"&#8220;Add price and other basic information&#8221;: Fill in the form with "
"the information about your product and press the &#8220;Save&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:24 doc/noosfero/enterprise/adding-product.en.xhtml:24
msgid "Edit basic info form"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:25
msgid ""
"&#8220;Add some description about your product&#8221;: Write some "
"information about your product and press the &#8220;Save&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:25 doc/noosfero/enterprise/adding-product.en.xhtml:25
msgid "Edit description form"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:26
msgid ""
"&#8220;Input and raw material&#8221;: Click on the tab and then press the "
"button to add a new input"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:26 doc/noosfero/enterprise/adding-product.en.xhtml:26 doc/noosfero/enterprise/adding-product.en.xhtml:28 doc/noosfero/enterprise/adding-product.en.xhtml:28
msgid "Inputs tab"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:28
msgid ""
"Fill in the form with the category of the input you are adding and press the "
"&#8220;Save and continue&#8221; button"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/enterprise/adding-product.en.xhtml:31
msgid "Now the product is ready to be displayed"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/enterprise/adding-product.en.xhtml:31 doc/noosfero/enterprise/adding-product.en.xhtml:31
msgid "Product created final"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/user/changing-password.en.xhtml:1 doc/noosfero/user/changing-password.en.xhtml:15 doc/noosfero/user/changing-password.en.xhtml:15
msgid "Changing password"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/changing-password.en.xhtml:2
msgid "<em>Whenever you want, you can change your password.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/changing-password.en.xhtml:12
msgid "Then, click on &#8220;Change Password&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/changing-password.en.xhtml:12 doc/noosfero/user/changing-password.en.xhtml:12
msgid "Change password in control panel"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/changing-password.en.xhtml:17
msgid "Fill in with your password."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/changing-password.en.xhtml:18
msgid "Fill in with your new password."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/changing-password.en.xhtml:19
msgid "Retype your new password, to confirm it."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/changing-password.en.xhtml:20
msgid "Then, click on &#8220;Change password&#8221;."
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/removing-comments.en.xhtml:1
msgid "Removing comments"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/removing-comments.en.xhtml:2
msgid ""
"<em>If you are the author of an article or if you have permission to "
"moderate the comments of a profile (community/enterprise), you can remove "
"the unwanted comments posted on it.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/removing-comments.en.xhtml:9
msgid ""
"Visit an article that you created or that you have permission to moderate "
"the comments. The comments are listed below the article/picture/event"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/removing-comments.en.xhtml:12
msgid ""
"Next to each comment of the article, photo or event you will see a trash "
"icon. To delete one, click on the trash icon."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/removing-comments.en.xhtml:12 doc/noosfero/user/removing-comments.en.xhtml:12
msgid "Comments"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/removing-comments.en.xhtml:13
msgid ""
"You will be asked to confirm exclusion. Clickiing on &#8220;Ok&#8221; "
"button, the comment will be removed"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/removing-comments.en.xhtml:13 doc/noosfero/user/removing-comments.en.xhtml:13
msgid "Remove comment confirmation"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/removing-comments.en.xhtml:18
msgid ""
"<a href=\"/doc/user/commenting\">Commenting articles, pictures and "
"events</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/removing-friends.en.xhtml:1
msgid "Removing friends"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/removing-friends.en.xhtml:2
msgid "<em>How you can remove one friend from your contact list.</em>"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/removing-friends.en.xhtml:11 doc/noosfero/user/removing-friends.en.xhtml:11 doc/noosfero/user/invite-contacts.en.xhtml:11 doc/noosfero/user/invite-contacts.en.xhtml:11
msgid "Control panel menu"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/removing-friends.en.xhtml:12 doc/noosfero/user/invite-contacts.en.xhtml:12
msgid "Then, click on &#8220;Manage friends&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/removing-friends.en.xhtml:12 doc/noosfero/user/removing-friends.en.xhtml:12 doc/noosfero/user/invite-contacts.en.xhtml:12 doc/noosfero/user/invite-contacts.en.xhtml:12
msgid "Manage Friends"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/removing-friends.en.xhtml:16
msgid ""
"In manage friends screen, you will see your friends list. Find the friend "
"you want to remove from your contact list and click on trash icon next to "
"the picture of the person you want to remove."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/removing-friends.en.xhtml:17 doc/noosfero/user/removing-friends.en.xhtml:17
msgid "Remove Friend"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/removing-friends.en.xhtml:18
msgid ""
"You will be asked to confirm the exclusion. Confirm that you want to remove "
"your friend."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/removing-friends.en.xhtml:19 doc/noosfero/user/removing-friends.en.xhtml:19
msgid "Remove friend confirmation"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/removing-friends.en.xhtml:20
msgid ""
"After confirmation, the user will not be listed on your friends list "
"anymore."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/removing-friends.en.xhtml:24 doc/noosfero/user/registering-new-user.en.xhtml:25 doc/noosfero/user/sending-messages.en.xhtml:21 doc/noosfero/user/accepting-friends.en.xhtml:22 doc/noosfero/user/toc.en.xhtml:9
msgid "<a href=\"/doc/user/adding-friends\">Adding friends</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/removing-friends.en.xhtml:25 doc/noosfero/user/sending-scraps.en.xhtml:22 doc/noosfero/user/invite-contacts.en.xhtml:35 doc/noosfero/user/answering-scraps.en.xhtml:23 doc/noosfero/user/registering-new-user.en.xhtml:27 doc/noosfero/user/viewing-profiles-activity.en.xhtml:18 doc/noosfero/user/sending-messages.en.xhtml:22 doc/noosfero/user/adding-friends.en.xhtml:18 doc/noosfero/user/toc.en.xhtml:12
msgid "<a href=\"/doc/user/accepting-friends\">Accepting friends</a>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/editing-appearance.en.xhtml:2
msgid "<em>You can customize your page, changing the template of it.</em>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/editing-appearance.en.xhtml:29 doc/noosfero/user/editing-sideboxes.en.xhtml:64 doc/noosfero/user/toc.en.xhtml:21
msgid "<a href=\"/doc/user/editing-header-footer\">Editing header and footer</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/logout.en.xhtml:1
msgid "Leaving the system"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/logout.en.xhtml:2
msgid "<em>After finishing your navigation, we recommend leaving the system.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/logout.en.xhtml:11
msgid "In user menu, click on &#8220;Logout&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/logout.en.xhtml:11 doc/noosfero/user/logout.en.xhtml:11
msgid "Menu with logout"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/logout.en.xhtml:14
msgid "After clicking the button, you will be logged out of the system"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/sending-scraps.en.xhtml:1
msgid "Sending scraps to friends"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/sending-scraps.en.xhtml:2
msgid "<em>To keep in touch with your friends you can send scraps to them.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/sending-scraps.en.xhtml:10 doc/noosfero/user/viewing-profiles-activity.en.xhtml:10 doc/noosfero/user/adding-friends.en.xhtml:9
msgid ""
"If you have a friend in this system, you can find her/him with the system "
"search. Use the <a href=\"/doc/navigation/searching-people\">search</a> and "
"click on your friend picture to visite her/his page."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/sending-scraps.en.xhtml:11 doc/noosfero/user/viewing-profiles-activity.en.xhtml:11
msgid ""
"In the person page you will see the &#8220;View profile&#8221; link near her "
"picture."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/sending-scraps.en.xhtml:11 doc/noosfero/user/sending-scraps.en.xhtml:11 doc/noosfero/user/answering-scraps.en.xhtml:10 doc/noosfero/user/answering-scraps.en.xhtml:10 doc/noosfero/user/viewing-profiles-activity.en.xhtml:11 doc/noosfero/user/viewing-profiles-activity.en.xhtml:11
msgid "Link to view profile"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/sending-scraps.en.xhtml:15
msgid ""
"On profile&#8217;s page, when you click on &#8220;Wall&#8221; tab, the "
"scraps sent to the user will be listed. To leave your scrap, fill in the "
"field and press the &#8220;Leave a scrap&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/sending-scraps.en.xhtml:15 doc/noosfero/user/sending-scraps.en.xhtml:15 doc/noosfero/user/sending-scraps.en.xhtml:16 doc/noosfero/user/sending-scraps.en.xhtml:16 doc/noosfero/user/answering-scraps.en.xhtml:14 doc/noosfero/user/answering-scraps.en.xhtml:14 doc/noosfero/user/answering-scraps.en.xhtml:15 doc/noosfero/user/answering-scraps.en.xhtml:15 doc/noosfero/user/answering-scraps.en.xhtml:16 doc/noosfero/user/answering-scraps.en.xhtml:16 doc/noosfero/user/answering-scraps.en.xhtml:17 doc/noosfero/user/answering-scraps.en.xhtml:17
msgid "Wall tab"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/sending-scraps.en.xhtml:16
msgid "Then, your scrap will be listed on profile&#8217;s wall"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/sending-scraps.en.xhtml:20 doc/noosfero/user/toc.en.xhtml:11
msgid "<a href=\"/doc/user/answering-scraps\">Answering scraps sent by friends</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/sending-scraps.en.xhtml:21 doc/noosfero/user/invite-contacts.en.xhtml:36 doc/noosfero/user/answering-scraps.en.xhtml:22 doc/noosfero/user/registering-new-user.en.xhtml:26 doc/noosfero/user/viewing-profiles-activity.en.xhtml:17 doc/noosfero/user/accepting-friends.en.xhtml:23 doc/noosfero/user/adding-friends.en.xhtml:17 doc/noosfero/user/toc.en.xhtml:19
msgid "<a href=\"/doc/user/removing-friends\">Removing friends</a>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/invite-contacts.en.xhtml:2
msgid ""
"<em>You can invite e-mail contacts to be your friend on the system. If the "
"e-mail is registered on the system, the user will receive an invitation "
"through the system. If it is not registered, the user will receive an "
"invitation on his e-mail.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/invite-contacts.en.xhtml:16
msgid ""
"You will your list of friends and the invitation button. Click on the "
"button."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/invite-contacts.en.xhtml:17 doc/noosfero/user/invite-contacts.en.xhtml:17
msgid "User&#39;s friends list"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/user/invite-contacts.en.xhtml:20 doc/noosfero/user/invite-contacts.en.xhtml:20
msgid "Manually invitation for user. Step 1"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><ul><li><img>
#: doc/noosfero/user/invite-contacts.en.xhtml:23 doc/noosfero/user/invite-contacts.en.xhtml:23
msgid "Manually invitation for user. Step 2"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/user/invite-contacts.en.xhtml:25 doc/noosfero/user/invite-contacts.en.xhtml:25
msgid "Import invitation for user. Step 1"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><ul><li><img>
#: doc/noosfero/user/invite-contacts.en.xhtml:29 doc/noosfero/user/invite-contacts.en.xhtml:29
msgid "Import invitation for user. Step 2"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/commenting.en.xhtml:1
msgid "Commenting articles"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/commenting.en.xhtml:2
msgid ""
"<em>Articles, pictures and events of the system can be commented. When a "
"person creates an article or upload a picture, she can allow other people to "
"comment.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/commenting.en.xhtml:3
msgid ""
"<em>If comments are available, the option to comment will be displayed to "
"everyone who access the article or picture, authenticated or not. Now you "
"will learn how to comment pictures and articles.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/commenting.en.xhtml:11
msgid ""
"When a person is viewing an article, picture or event, you will see a button "
"to send comments after the content:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/commenting.en.xhtml:11 doc/noosfero/user/commenting.en.xhtml:11
msgid "Box for comments closed"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/commenting.en.xhtml:15
msgid ""
"<strong>Logged in user:</strong> Click the button and a comment form will be "
"displayed. You will see the title and body comment fields:"
msgstr ""

#. type: Attribute 'alt' of: <ul><li><img>
#: doc/noosfero/user/commenting.en.xhtml:15 doc/noosfero/user/commenting.en.xhtml:15
msgid "Box for comments open when logged in"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/commenting.en.xhtml:16
msgid ""
"<strong>Not logged in user:</strong> If you are not logged in, you will see "
"name and e-mail fields to identify yourself:"
msgstr ""

#. type: Attribute 'alt' of: <ul><li><img>
#: doc/noosfero/user/commenting.en.xhtml:16 doc/noosfero/user/commenting.en.xhtml:16
msgid "Box for comments open when not logged in"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/commenting.en.xhtml:17
msgid ""
"After filling the fields and clicking the &#8220;Send comment&#8221; button, "
"the comment will be displayed below the article."
msgstr ""

#. type: Attribute 'alt' of: <ul><li><img>
#: doc/noosfero/user/commenting.en.xhtml:18 doc/noosfero/user/commenting.en.xhtml:18
msgid "Comment of a logged in person"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/login.en.xhtml:1
msgid "Login into the system"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/login.en.xhtml:2
msgid "<em>Some system features only can be used when the user is logged in.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/login.en.xhtml:9 doc/noosfero/user/registering-new-user.en.xhtml:10
msgid "In the system homepage you will see a box to get into the system."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/login.en.xhtml:12
msgid ""
"Fill in the fields with the &#8216;login&#8217; and &#8216;password&#8217; "
"you choosed in your registration and click on &#8220;Log in&#8221; button."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/login.en.xhtml:12 doc/noosfero/user/login.en.xhtml:12
msgid "Environment homepage with login button"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/login.en.xhtml:13
msgid ""
"After clicking on &#8220;Log in&#8221; button you will be authenticated in "
"the system. You can verify that you are logged in because your menu will be "
"displayed in the top of page."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/login.en.xhtml:17
msgid "<a href=\"/doc/user/registering-new-user\">Registering new user</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/answering-scraps.en.xhtml:1
msgid "Answering scraps sent by friends"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/answering-scraps.en.xhtml:2
msgid "<em>When a friend sends a scrap to you, you can answer it.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/answering-scraps.en.xhtml:10
msgid "Visit your profile to see the scraps that your friends sent to you."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/answering-scraps.en.xhtml:14
msgid ""
"On you profile, when you click on &#8220;Wall&#8221; tab, the scraps sent to "
"you will be listed."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/answering-scraps.en.xhtml:15
msgid ""
"When you hover the mouse on the scrap, click on the &#8220;Reply&#8221; "
"button that will be displayed"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/answering-scraps.en.xhtml:16
msgid ""
"To answer the scrap, fill in the field and press the &#8220;Leave a "
"scrap&#8221; button"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/answering-scraps.en.xhtml:17
msgid "Then, your reply will be listed on your profile&#8217;s wall"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/answering-scraps.en.xhtml:21 doc/noosfero/user/toc.en.xhtml:10
msgid "<a href=\"/doc/user/sending-scraps\">Sending scraps to friends</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/deleting-profile.en.xhtml:1
msgid "Deleting a profile"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/deleting-profile.en.xhtml:2
msgid ""
"<em>You can delete your profile if you don&#8217;t want to be a member of "
"the environment anymore.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/deleting-profile.en.xhtml:15 doc/noosfero/user/editing-person-info.en.xhtml:15
msgid "In your control panel, click on &#8220;Profile Info and settings&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/deleting-profile.en.xhtml:15 doc/noosfero/user/deleting-profile.en.xhtml:15 doc/noosfero/user/editing-person-info.en.xhtml:15 doc/noosfero/user/editing-person-info.en.xhtml:15
msgid "Control panel with edit profile info of person"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/deleting-profile.en.xhtml:16
msgid ""
"You will see a form with your information and settings. Click on the "
"&#8220;Delete profile&#8221; button below the privacy options"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/deleting-profile.en.xhtml:16 doc/noosfero/user/deleting-profile.en.xhtml:16
msgid "Delete profile link"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/deleting-profile.en.xhtml:17
msgid ""
"You will see a confirmation page. If you are sure that you want to delete "
"the profile, click on &#8220;Yes, I am sure&#8221;"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/deleting-profile.en.xhtml:17 doc/noosfero/user/deleting-profile.en.xhtml:17
msgid "Delete profile confirmation"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/index.en.xhtml:1
msgid "User features"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/registering-new-user.en.xhtml:1
msgid "Registering a new user"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/registering-new-user.en.xhtml:2
msgid ""
"<em>To be part of the system, you need to register yourself. After "
"registering, you will be able to join communities, enterprises, add friends "
"and much more.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/registering-new-user.en.xhtml:11
msgid "Click on &#8220;New user&#8221;:"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/registering-new-user.en.xhtml:11 doc/noosfero/user/registering-new-user.en.xhtml:11
msgid "Register on box"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/registering-new-user.en.xhtml:15
msgid ""
"You will see registration form. Fill it with you information and read and "
"accept the system terms of use."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/registering-new-user.en.xhtml:17
msgid ""
"The fields with red names are mandatory, so your registration won&#8217;t be "
"done if they are not filled in."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/registering-new-user.en.xhtml:18
msgid ""
"Your e-mail and login must be unique within the system. So, if you fill in "
"with a login/e-mail that already exists in the system, a message will be "
"shown informing the error and you should choose another login/e-mail."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/registering-new-user.en.xhtml:19
msgid ""
"After clicking the &#8220;Sign up&#8221; button you will be redirected to "
"your control panel, where you can change your settings and start using the "
"system."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/user/registering-new-user.en.xhtml:20 doc/noosfero/user/registering-new-user.en.xhtml:20
msgid "Signup form"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/viewing-profiles-activity.en.xhtml:1
msgid "Viewing profile&#8217;s activities"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/viewing-profiles-activity.en.xhtml:2
msgid ""
"<em>Whenever you want to see what a profile is doing you can visit the "
"profile and view his activities.</em>"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/viewing-profiles-activity.en.xhtml:14
msgid ""
"On profile&#8217;s page, when you click on &#8220;Activity&#8221; tab, the "
"most recent activities of the user will be listed"
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/user/viewing-profiles-activity.en.xhtml:14 doc/noosfero/user/viewing-profiles-activity.en.xhtml:14
msgid "Activity tab"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:2
msgid ""
"<em>You can customize your page, changing the blocks that will be displayed "
"on it.</em>"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:12 doc/noosfero/user/editing-sideboxes.en.xhtml:12
msgid "Edit sideboxes on user control panel"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:25
msgid ""
"<strong>Display one of your contents:</strong> This block displays one of "
"your articles. You can edit the block to select which one of your articles "
"is going to be displayed in the block."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:25 doc/noosfero/user/editing-sideboxes.en.xhtml:25
msgid "Article block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:26
msgid ""
"<strong>Last updates:</strong> Display the most recents contents that you "
"created. You can choose how many articles will be listed."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:27
msgid ""
"<strong>Links (static menu):</strong> You can use it to create a menu of "
"links. You can add, remove and update the links as you wish. If you want a "
"link to your blog, for example, you should type "
"&#8220;/{profile}/blog&#8221; on the field &#8220;Address&#8221;. The "
"&#8220;{profile}&#8221; will be replaced by your identifier."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:29
msgid ""
"<strong>Location map:</strong> Shows where the profile is on the material "
"world."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:30
msgid ""
"<strong>Friends:</strong> Displays your friends. You can choose how many "
"friends will be displayed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:30 doc/noosfero/user/editing-sideboxes.en.xhtml:30
msgid "Friends block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:31
msgid ""
"<strong>Communities:</strong> Displays the communities in which the user is "
"a member. You can choose how many communities will be displayed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:31 doc/noosfero/user/editing-sideboxes.en.xhtml:31
msgid "Communities block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:32
msgid ""
"<strong>Tags:</strong> Tags are created when you add some of them to your "
"contents. This block will display the tags used on your contents. You can "
"choose how many tags will be displayed."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:33
msgid ""
"<strong>Profile Information:</strong> It has a picture and some basic "
"information about the profile, like how long the profile is part of the "
"environment and useful links."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:34
msgid ""
"<strong>My network:</strong> This block displays some information about your "
"networking."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:34 doc/noosfero/user/editing-sideboxes.en.xhtml:34
msgid "User network block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:35
msgid "<strong>Profile Image:</strong> This block presents the profile image."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:36
msgid ""
"<strong>Slideshow:</strong> This block displays the images of one of your "
"image galleries as a slideshow. You can edit the block to select which image "
"gallery will be displayed."
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:37
msgid ""
"<strong>Favorite enterprises:</strong> Lists your favorite enterprises. You "
"can choose how many enterprises will be listed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:37 doc/noosfero/user/editing-sideboxes.en.xhtml:37
msgid "Favorite enterprises block"
msgstr ""

#. type: Content of: <ol><li><ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:38
msgid ""
"<strong>Enterprises:</strong> This block displays the enterprises in which "
"the user is a member. You can choose how many enterprises will be listed."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ul><li><img>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:38 doc/noosfero/user/editing-sideboxes.en.xhtml:38
msgid "Enterprises block"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/editing-sideboxes.en.xhtml:65 doc/noosfero/user/toc.en.xhtml:20
msgid "<a href=\"/doc/user/editing-appearance\">Editing appearance</a>"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/sending-messages.en.xhtml:1
msgid "Sending messages"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/sending-messages.en.xhtml:2
msgid ""
"<em>To interact with other system users, you can send messages through the "
"system. The messages will be received by email.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/sending-messages.en.xhtml:10
msgid ""
"Find the user you want to send a message using the <a "
"href=\"/doc/navigation/searching-people\">search</a> and click to view "
"his/her profile."
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/sending-messages.en.xhtml:11
msgid ""
"In the person page you will see the &#8220;Contact&#8221; button below her "
"picture if you are logged in and you are friend of the person in the system."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/sending-messages.en.xhtml:12 doc/noosfero/user/sending-messages.en.xhtml:12
msgid "Contact button"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/sending-messages.en.xhtml:15
msgid ""
"Fill in the form. Note that the fields &#8220;Subject&#8221; and "
"&#8220;Message&#8221; are mandatory, so the message will not be sent if you "
"don&#8217;t fill them."
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/sending-messages.en.xhtml:16
msgid ""
"After clicking on &#8220;Send&#8221; button, the message will be sent to the "
"user e-mail and, if you want to receive a copy of the message, select the "
"option &#8220;I want to receive a copy of the message in my e-mail.&#8221;."
msgstr ""

#. type: Attribute 'alt' of: <p><img>
#: doc/noosfero/user/sending-messages.en.xhtml:17 doc/noosfero/user/sending-messages.en.xhtml:17
msgid "Send message"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/accepting-friends.en.xhtml:1
msgid "Accepting friends"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/accepting-friends.en.xhtml:2
msgid ""
"<em>When one person asks to be your friend, you should accept or reject the "
"request. This is what will be explained.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/accepting-friends.en.xhtml:15
msgid ""
"If you have pending requests, you will see a box with the list of pending "
"tasks on your control panel. In order to accept or deny, you should click on "
"&#8220;Process requests&#8221; button"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/accepting-friends.en.xhtml:16 doc/noosfero/user/accepting-friends.en.xhtml:16
msgid "Control panel with pending tasks"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/accepting-friends.en.xhtml:17
msgid ""
"If you want to accept, choose the option &#8220;Accept&#8221; and you also "
"can classify your new friend according to your relationship type you two "
"have. to confirm, click in &#8220;OK&#8221;. After that, your new friend "
"will be listed in your contact list."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/accepting-friends.en.xhtml:18 doc/noosfero/user/accepting-friends.en.xhtml:18
msgid "Tasks list"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/adding-friends.en.xhtml:1
msgid "Adding friends"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/adding-friends.en.xhtml:2
msgid ""
"<em>To interact with others system users, you can include them in your "
"contact list, adding them as friends.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/adding-friends.en.xhtml:12
msgid ""
"In the users page, click on &#8220;Add friend&#8221; button that you will "
"see below the user picture"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/adding-friends.en.xhtml:12 doc/noosfero/user/adding-friends.en.xhtml:12
msgid "Button to add a profile as friend"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/adding-friends.en.xhtml:13
msgid ""
"After clicking the button, confirm that you want to add this user as a "
"friend. On this screen you can also classify your friend with your "
"relationship type."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/adding-friends.en.xhtml:13 doc/noosfero/user/adding-friends.en.xhtml:13
msgid "Confirmation when adding a friend"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/editing-header-footer.en.xhtml:2
msgid ""
"<em>You can customize your page, adding some text or image on header or "
"footer.</em>"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><img>
#: doc/noosfero/user/editing-header-footer.en.xhtml:12 doc/noosfero/user/editing-header-footer.en.xhtml:12
msgid "Edit header and footer on user control panel"
msgstr ""

#. type: Content of: <ol><li><ol><li><ol><li>
#: doc/noosfero/user/editing-header-footer.en.xhtml:32
msgid ""
"<strong>Underline:</strong> it is also used to emphasize a word/phrase. One "
"line is drawn under the word. Example: <span style=\"text-decoration: "
"underline;\">home</span> . To use it, first you should select the "
"word/phrase and then click on button"
msgstr ""

#. type: Content of: <h1>
#: doc/noosfero/user/editing-person-info.en.xhtml:1
msgid "Editing user settings"
msgstr ""

#. type: Content of: <p>
#: doc/noosfero/user/editing-person-info.en.xhtml:2
msgid "<em>You can change your profile information and settings in the system.</em>"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/editing-person-info.en.xhtml:16
msgid ""
"You will see a form with your information and settings. This will be "
"explained in parts"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/user/editing-person-info.en.xhtml:18
msgid "<strong>General information:</strong> Fill in with your data"
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/user/editing-person-info.en.xhtml:18 doc/noosfero/user/editing-person-info.en.xhtml:18
msgid "General information when editing person profile info"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/user/editing-person-info.en.xhtml:19
msgid ""
"<strong>Change picture:</strong> Insert or change your picture. Click "
"on&quot;Fileā€¦&quot; and choose the image in your computer. The image must "
"have a maximum of 500Kb e be <em>.jpg</em> , <em>.gif</em> or <em>.png</em> "
"."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/user/editing-person-info.en.xhtml:19 doc/noosfero/user/editing-person-info.en.xhtml:19
msgid "Change picture when editing person profile info"
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/user/editing-person-info.en.xhtml:20
msgid ""
"<strong>Privacy options:</strong> Choose if your profile will be public or "
"private. When a profile is private, the users that are not friends and that "
"tries to view the profile or some of its contents will be redirected to a "
"page that display only general information."
msgstr ""

#. type: Content of: <ol><li><ol><li>
#: doc/noosfero/user/editing-person-info.en.xhtml:21
msgid ""
"<strong>Categories:</strong> If enabled in the system, you can choose the "
"categories that the person will have."
msgstr ""

#. type: Attribute 'alt' of: <ol><li><ol><li><img>
#: doc/noosfero/user/editing-person-info.en.xhtml:21 doc/noosfero/user/editing-person-info.en.xhtml:21
msgid "Categories when editing person profile info"
msgstr ""

#. type: Content of: <ol><li>
#: doc/noosfero/user/editing-person-info.en.xhtml:23
msgid "Then, click on &#8220;Save&#8221; button an the profile will be updated."
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/toc.en.xhtml:3
msgid "<a href=\"/doc/plugins/send_email\">SendEmailPlugin</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/toc.en.xhtml:4
msgid "<a href=\"/doc/plugins/variables\">Variables Plugin</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/toc.en.xhtml:5
msgid "<a href=\"/doc/plugins/google_cse\">GoogleCsePlugin</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/toc.en.xhtml:6
msgid "<a href=\"/doc/plugins/google_analytics\">Google Analytics</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/plugins/toc.en.xhtml:7
msgid "<a href=\"/doc/plugins/shopping_cart\">Shopping Cart</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/admin/toc.en.xhtml:3
msgid "<a href=\"/doc/admin/send-email-members\">Sending e-mail to members</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/admin/toc.en.xhtml:4
msgid "<a href=\"/doc/admin/export-users-list\">Export the list of users</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/quotas/toc.en.xhtml:3
msgid "<a href=\"/doc/quotas/manage-quotas\">Manage Upload Quotas</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/toc.en.xhtml:7
msgid ""
"<a href=\"/doc/navigation/finding-more-active-people\">Finding more active "
"people</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/toc.en.xhtml:8
msgid ""
"<a href=\"/doc/navigation/finding-more-active-communities\">Finding more "
"active communities</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/toc.en.xhtml:11
msgid "<a href=\"/doc/navigation/person-balloon\">Person balloon</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/toc.en.xhtml:12
msgid "<a href=\"/doc/navigation/community-balloon\">Community balloon</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/navigation/toc.en.xhtml:14
msgid "<a href=\"/doc/navigation/searching\">Searching on the system</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/toc.en.xhtml:5
msgid "<a href=\"/doc/community/invite-contacts\">Inviting contacts from e-mail</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/toc.en.xhtml:6
msgid "<a href=\"/doc/community/send-email-members\">Sending e-mail to members</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/toc.en.xhtml:7
msgid "<a href=\"/doc/community/accepting-members\">Accepting new members</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/toc.en.xhtml:8
msgid "<a href=\"/doc/community/moderating-articles\">Moderating articles</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/community/toc.en.xhtml:10
msgid "<a href=\"/doc/community/editing-sideboxes\">Editing sideboxes</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/toc.en.xhtml:4
msgid "<a href=\"/doc/cms/spreading-articles\">Spreading articles</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/toc.en.xhtml:5
msgid "<a href=\"/doc/cms/adding-images-to-gallery\">Adding pictures to gallery</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/cms/toc.en.xhtml:8
msgid ""
"<a href=\"/doc/cms/writing-advanced-article\">Writing an advanced article "
"(inserting images, links, videos and audio)</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/toc.en.xhtml:4
msgid ""
"<a href=\"/doc/enterprise/managing-enterprise-members\">Managing and adding "
"members to an enterprise</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/toc.en.xhtml:5
msgid ""
"<a href=\"/doc/enterprise/adding-product\">Adding products to an "
"enterprise</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/toc.en.xhtml:7
msgid "<a href=\"/doc/enterprise/editing-sideboxes\">Editing sideboxes</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/enterprise/toc.en.xhtml:10
msgid "<a href=\"/doc/enterprise/disabling-enterprise\">Disabling an enterprise</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:4
msgid "<a href=\"/doc/user/deleting-profile\">Deleting a profile</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:6
msgid "<a href=\"/doc/user/editing-person-info\">Editing user settings</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:7
msgid "<a href=\"/doc/user/logout\">Leaving the system</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:8
msgid "<a href=\"/doc/user/invite-contacts\">Inviting contacts from e-mail</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:13
msgid ""
"<a href=\"/doc/user/viewing-profiles-activity\">Viewing profile&#8217;s "
"activities</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:14
msgid "<a href=\"/doc/user/commenting\">Commenting articles</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:15
msgid "<a href=\"/doc/user/removing-comments\">Removing comments</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:16
msgid "<a href=\"/doc/user/sending-messages\">Sending messages</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:17
msgid "<a href=\"/doc/user/editing-sideboxes\">Editing sideboxes</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/user/toc.en.xhtml:18
msgid "<a href=\"/doc/user/changing-password\">Changing password</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/toc.en.xhtml:3
msgid "<a href=\"/doc/plugins\">Plugins</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/toc.en.xhtml:4
msgid "<a href=\"/doc/admin\">Admin features</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/toc.en.xhtml:5
msgid "<a href=\"/doc/quotas\">Upload Quotas</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/toc.en.xhtml:6
msgid "<a href=\"/doc/navigation\">Navigation</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/toc.en.xhtml:7
msgid "<a href=\"/doc/community\">Community features</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/toc.en.xhtml:8
msgid "<a href=\"/doc/cms\">Content Management</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/toc.en.xhtml:9
msgid "<a href=\"/doc/enterprise\">Enterprise features</a>"
msgstr ""

#. type: Content of: <ul><li>
#: doc/noosfero/toc.en.xhtml:10
msgid "<a href=\"/doc/user\">User features</a>"
msgstr ""