+++ /dev/null
-<?php
-/**
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2010-2011, StatusNet, Inc.
- *
- * A plugin for integrating Facebook with StatusNet. Includes single-sign-on
- * and publishing notices to Facebook using Facebook's Graph API.
- *
- * PHP version 5
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Plugin
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @copyright 2011 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
- * @link http://status.net/
- */
-
-if (!defined('STATUSNET')) {
- exit(1);
-}
-
-define("FACEBOOK_SERVICE", 2);
-
-/**
- * Main class for Facebook Bridge plugin
- *
- * @category Plugin
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @copyright 2010-2011 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
- * @link http://status.net/
- */
-class FacebookBridgePlugin extends Plugin
-{
- public $appId; // Facebook application ID
- public $secret; // Facebook application secret
-
- public $facebook = null; // Facebook application instance
- public $dir = null; // Facebook plugin dir
-
- /**
- * Initializer for this plugin
- *
- * Gets an instance of the Facebook API client object
- *
- * @return boolean hook value; true means continue processing, false means stop.
- */
- function initialize()
- {
-
- // Allow the id and key to be passed in
- // Control panel will override
-
- if (isset($this->appId)) {
- $appId = common_config('facebook', 'appid');
- if (empty($appId)) {
- Config::save(
- 'facebook',
- 'appid',
- $this->appId
- );
- }
- }
-
- if (isset($this->secret)) {
- $secret = common_config('facebook', 'secret');
- if (empty($secret)) {
- Config::save('facebook', 'secret', $this->secret);
- }
- }
-
- $this->facebook = Facebookclient::getFacebook(
- $this->appId,
- $this->secret
- );
-
- return true;
- }
-
- /**
- * Load related modules when needed
- *
- * @param string $cls Name of the class to be loaded
- *
- * @return boolean hook value; true means continue processing, false means stop.
- */
- function onAutoload($cls)
- {
- $dir = dirname(__FILE__);
-
- switch ($cls)
- {
- case 'Facebook': // Facebook PHP SDK
- include_once $dir . '/extlib/base_facebook.php';
- include_once $dir . '/extlib/facebook.php';
- return false;
- }
-
- return parent::onAutoload($cls);
- }
-
- /**
- * Database schema setup
- *
- * We maintain a table mapping StatusNet notices to Facebook items
- *
- * @see Schema
- * @see ColumnDef
- *
- * @return boolean hook value; true means continue processing, false means stop.
- */
- function onCheckSchema()
- {
- $schema = Schema::get();
- $schema->ensureTable('notice_to_item', Notice_to_item::schemaDef());
- return true;
- }
-
- /*
- * Does this $action need the Facebook JavaScripts?
- */
- function needsScripts($action)
- {
- static $needy = array(
- 'FacebookloginAction',
- 'FacebookfinishloginAction',
- 'FacebookadminpanelAction',
- 'FacebooksettingsAction'
- );
-
- if (in_array(get_class($action), $needy)) {
- return true;
- } else {
- return false;
- }
- }
-
- /**
- * Map URLs to actions
- *
- * @param URLMapper $m path-to-action mapper
- *
- * @return boolean hook value; true means continue processing, false means stop.
- */
- public function onRouterInitialized(URLMapper $m)
- {
- // Always add the admin panel route
- $m->connect('panel/facebook', array('action' => 'facebookadminpanel'));
-
- $m->connect(
- 'main/facebooklogin',
- array('action' => 'facebooklogin')
- );
- $m->connect(
- 'main/facebookfinishlogin',
- array('action' => 'facebookfinishlogin')
- );
- $m->connect(
- 'settings/facebook',
- array('action' => 'facebooksettings')
- );
- $m->connect(
- 'facebook/deauthorize',
- array('action' => 'facebookdeauthorize')
- );
-
- return true;
- }
-
- /*
- * Add a login tab for Facebook, but only if there's a Facebook
- * application defined for the plugin to use.
- *
- * @param Action $action the current action
- *
- * @return void
- */
- function onEndLoginGroupNav($action)
- {
- $action_name = $action->trimmed('action');
-
- if ($this->hasApplication()) {
-
- $action->menuItem(
- // TRANS: Menu item for "Facebook" login.
- common_local_url('facebooklogin'),
- _m('MENU', 'Facebook'),
- // TRANS: Menu title for "Facebook" login.
- _m('Login or register using Facebook.'),
- 'facebooklogin' === $action_name
- );
- }
-
- return true;
- }
-
- /**
- * If the plugin's installed, this should be accessible to admins
- */
- function onAdminPanelCheck($name, &$isOK)
- {
- if ($name == 'facebook') {
- $isOK = true;
- return false;
- }
-
- return true;
- }
-
- /**
- * Add a Facebook tab to the admin panels
- *
- * @param Widget $nav Admin panel nav
- *
- * @return boolean hook value
- */
- function onEndAdminPanelNav($nav)
- {
- if (AdminPanelAction::canAdmin('facebook')) {
-
- $action_name = $nav->action->trimmed('action');
-
- $nav->out->menuItem(
- common_local_url('facebookadminpanel'),
- // TRANS: Menu item for "Facebook" in administration panel.
- _m('MENU','Facebook'),
- // TRANS: Menu title for "Facebook" in administration panel.
- _m('Facebook integration configuration.'),
- $action_name == 'facebookadminpanel',
- 'nav_facebook_admin_panel'
- );
- }
-
- return true;
- }
-
- /*
- * Add a tab for user-level Facebook settings if the user
- * has a link to Facebook
- *
- * @param Action $action the current action
- *
- * @return void
- */
- function onEndConnectSettingsNav($action)
- {
- if ($this->hasApplication()) {
- $action_name = $action->trimmed('action');
-
- $user = common_current_user();
-
- $flink = null;
-
- if (!empty($user)) {
- $flink = Foreign_link::getByUserID(
- $user->id,
- FACEBOOK_SERVICE
- );
- }
-
- if (!empty($flink)) {
-
- $action->menuItem(
- common_local_url('facebooksettings'),
- // TRANS: Menu item for "Facebook" in user settings.
- _m('MENU','Facebook'),
- // TRANS: Menu title for "Facebook" in user settings.
- _m('Facebook settings.'),
- $action_name === 'facebooksettings'
- );
- }
- }
- }
-
- /*
- * Is there a Facebook application for the plugin to use?
- *
- * Checks to see if a Facebook application ID and secret
- * have been configured and a valid Facebook API client
- * object exists.
- *
- */
- function hasApplication()
- {
- if (!empty($this->facebook)) {
-
- $appId = $this->facebook->getAppId();
- $secret = $this->facebook->getApiSecret();
-
- if (!empty($appId) && !empty($secret)) {
- return true;
- }
- }
-
- return false;
- }
-
- /*
- * Output a Facebook div for the Facebook JavaSsript SDK to use
- *
- * @param Action $action the current action
- *
- */
- function onStartShowHeader($action)
- {
- // output <div id="fb-root"></div> as close to <body> as possible
- $action->element('div', array('id' => 'fb-root'));
- return true;
- }
-
- /*
- * Load the Facebook JavaScript SDK on pages that need them.
- *
- * @param Action $action the current action
- *
- */
- function onEndShowScripts($action)
- {
- if ($this->needsScripts($action)) {
-
- $action->script('https://connect.facebook.net/en_US/all.js');
-
- $script = <<<ENDOFSCRIPT
-function setCookie(name, value) {
- var date = new Date();
- date.setTime(date.getTime() + (5 * 60 * 1000)); // 5 mins
- var expires = "; expires=" + date.toGMTString();
- document.cookie = name + "=" + value + expires + "; path=/";
-}
-
-FB.init({appId: %1\$s, status: true, cookie: true, xfbml: true, oauth: true});
-
-$('#facebook_button').bind('click', function(event) {
-
- event.preventDefault();
-
- FB.login(function(response) {
- if (response.authResponse) {
- // put the access token in a cookie for the next step
- setCookie('fb_access_token', response.authResponse.accessToken);
- window.location.href = '%2\$s';
- } else {
- // NOP (user cancelled login)
- }
- }, {scope:'read_stream,publish_stream,offline_access,user_status,user_location,user_website,email'});
-});
-ENDOFSCRIPT;
-
- $action->inlineScript(
- sprintf(
- $script,
- json_encode($this->facebook->getAppId()),
- common_local_url('facebookfinishlogin')
- )
- );
- }
- }
-
- /*
- * Log the user out of Facebook, per the Facebook authentication guide
- *
- * @param Action action the current action
- */
- function onStartLogout($action)
- {
- if ($this->hasApplication()) {
-
- $cur = common_current_user();
- $flink = Foreign_link::getByUserID($cur->id, FACEBOOK_SERVICE);
-
- if (!empty($flink)) {
-
- $this->facebook->setAccessToken($flink->credentials);
-
- if (common_config('singleuser', 'enabled')) {
- $user = User::singleUser();
-
- $destination = common_local_url(
- 'showstream',
- array('nickname' => $user->nickname)
- );
- } else {
- $destination = common_local_url('public');
- }
-
- $logoutUrl = $this->facebook->getLogoutUrl(
- array('next' => $destination)
- );
-
- common_log(
- LOG_INFO,
- sprintf(
- "Logging user out of Facebook (fbuid = %s)",
- $fbuid
- ),
- __FILE__
- );
-
- $action->logout();
-
- common_redirect($logoutUrl, 303);
- }
-
- return true;
- }
- }
-
- /*
- * Add fbml namespace to our HTML, so Facebook's JavaScript SDK can parse
- * and render XFBML tags
- *
- * @param Action $action the current action
- * @param array $attrs array of attributes for the HTML tag
- *
- * @return nothing
- */
- function onStartHtmlElement($action, $attrs) {
-
- if ($this->needsScripts($action)) {
- $attrs = array_merge(
- $attrs,
- array('xmlns:fb' => 'http://www.facebook.com/2008/fbml')
- );
- }
-
- return true;
- }
-
- /**
- * Add a Facebook queue item for each notice
- *
- * @param Notice $notice the notice
- * @param array &$transports the list of transports (queues)
- *
- * @return boolean hook return
- */
- function onStartEnqueueNotice($notice, &$transports)
- {
- if (self::hasApplication() && $notice->isLocal() && $notice->inScope(null)) {
- array_push($transports, 'facebook');
- }
- return true;
- }
-
- /**
- * Register Facebook notice queue handler
- *
- * @param QueueManager $manager
- *
- * @return boolean hook return
- */
- function onEndInitializeQueueManager($manager)
- {
- if (self::hasApplication()) {
- $manager->connect('facebook', 'FacebookQueueHandler');
- }
- return true;
- }
-
- /**
- * If a notice gets deleted, remove the Notice_to_item mapping and
- * delete the item on Facebook
- *
- * @param User $user The user doing the deleting
- * @param Notice $notice The notice getting deleted
- *
- * @return boolean hook value
- */
- function onStartDeleteOwnNotice(User $user, Notice $notice)
- {
- $client = new Facebookclient($notice);
- $client->streamRemove();
-
- return true;
- }
-
- /**
- * Notify remote users when their notices get favorited.
- *
- * @param Profile or User $profile of local user doing the faving
- * @param Notice $notice being favored
- * @return hook return value
- */
- function onEndFavorNotice(Profile $profile, Notice $notice)
- {
- $client = new Facebookclient($notice, $profile);
- $client->like();
-
- return true;
- }
-
- /**
- * Notify remote users when their notices get de-favorited.
- *
- * @param Profile $profile Profile person doing the de-faving
- * @param Notice $notice Notice being favored
- *
- * @return hook return value
- */
- function onEndDisfavorNotice(Profile $profile, Notice $notice)
- {
- $client = new Facebookclient($notice, $profile);
- $client->unLike();
-
- return true;
- }
-
- /**
- * Add links in the user's profile block to their Facebook profile URL.
- *
- * @param Profile $profile The profile being shown
- * @param Array &$links Writeable array of arrays (href, text, image).
- *
- * @return boolean hook value (true)
- */
-
- function onOtherAccountProfiles($profile, &$links)
- {
- $fuser = null;
-
- $flink = Foreign_link::getByUserID($profile->id, FACEBOOK_SERVICE);
-
- if (!empty($flink)) {
-
- $fuser = $this->getFacebookUser($flink->foreign_id);
-
- if (!empty($fuser)) {
- $links[] = array("href" => $fuser->link,
- "text" => sprintf(_("%s on Facebook"), $fuser->name),
- "image" => $this->path("images/f_logo.png"));
- }
- }
-
- return true;
- }
-
- function getFacebookUser($id) {
-
- $key = Cache::key(sprintf("FacebookBridgePlugin:userdata:%s", $id));
-
- $c = Cache::instance();
-
- if ($c) {
- $obj = $c->get($key);
- if ($obj) {
- return $obj;
- }
- }
-
- $url = sprintf("https://graph.facebook.com/%s", $id);
- $client = new HTTPClient();
- $resp = $client->get($url);
-
- if (!$resp->isOK()) {
- return null;
- }
-
- $user = json_decode($resp->getBody());
-
- if ($user->error) {
- return null;
- }
-
- if ($c) {
- $c->set($key, $user);
- }
-
- return $user;
- }
-
- /*
- * Add version info for this plugin
- *
- * @param array &$versions plugin version descriptions
- */
- function onPluginVersion(array &$versions)
- {
- $versions[] = array(
- 'name' => 'Facebook Bridge',
- 'version' => GNUSOCIAL_VERSION,
- 'author' => 'Craig Andrews, Zach Copley',
- 'homepage' => 'https://git.gnu.io/gnu/gnu-social/tree/master/plugins/FacebookBridge',
- 'rawdescription' =>
- // TRANS: Plugin description.
- _m('A plugin for integrating StatusNet with Facebook.')
- );
-
- return true;
- }
-}
+++ /dev/null
-Facebook Bridge Plugin
-
-The Facebook Bridge plugin allows you to integrate your StatusNet site
-with Facebook. It uses Facebook's new SDKs, the Graph API and OAuth
-2.0, and supercedes the previous "Facebook" plugin, which relied on the
-Facebook's now deprecated "Old REST API". The other major difference is
-the troublesome and confusing Facebook Canvas Application has been
-removed.
-
-Note: Do NOT try to run the old Facebook plugin and this plugin at the same
-time. It won't work.
-
-Features for the new Facebook Bridge Plugin:
-
-- "Login with Facebook" (AKA single-sign-on using Facebook Connect for
- authentication).
-
-- Registration with Facebook Connect, including automatic profile creation
- based on users' Facebook accounts.
-
-- Post mirroring -- posting a notice on StatusNet automatically creates a post
- on Facebook, deleting it on StatusNet deletes it on Facebook, and faving it
- "likes" it on Facebook.
-
-
-Upgrading from the old Facebook plugin
-======================================
-
-Remove the addPlugin('Facebook') statement for the old Facebook plugin
-from your config.php and adjust your existing Facebook application using
-the setup instructions below as a guide, then enable the new plugin (also
-described below). Existing users who have setup post mirroring shouldn't
-have to do anything. The new Facebook Bridge plugin will keep their notices
-flowing to Facebook.
-
-Setup
-=====
-
-There are two parts configuring the Facebook Bridge plugin -- setup on the
-Facebook side, and setup on the StatusNet side.
-
-Setup (Facebook side)
-=====================
-
-The first step is to login to Facebook and register a Facebook application
-to get an application ID and secret.
-
-Use the handy Facebook application setup wizard:
-
-http://developers.facebook.com/setup/
-
-Once you've set up your application, you'll need to enter the Facebook Developer
-dashboard (http://www.facebook.com/developers/editapp.php?app_id=YOUR_APPLICATION_ID)
-and customize a few things:
-
-About tab
----------
-
-Set your logos, application description, etc. as you see fit.
-
-Web Site tab
-------------
-
-Make a note of the "Application ID" and "Application Secret" Facebook generated
-for your application. You'll need both of those later.
-
-Make sure "Site URL" points to your StatusNet installation
-(e.g.: http://example.net/).
-
-- Special Note for multi-site Status Networks: enter your domain (SLD and TLD)
- in the "Site Domain" field. (e.g.: status.net). This will allow a single
- Facebook Application to work with all your network subdomains (*.status.net).
-
-Facebook Integration tab
-------------------------
-
-Use the default settings.
-
-Mobile and Devices tab
-----------------------
-
-Use the default settings.
-
-Advanced tab
-------------
-
-In the Authentication section, set the "Deauthorize Callback" to
-http://YOURSITE/facebook/deauthorize (e.g.: http://example.net/facebook/deauthorize).
-
-In the Migrations section, ensure that "OAuth 2.0 for Canvas" is set to
-"Enabled". It probably already will be, but double check.
-
-The default settings should suffice for everything else.
-
-Setup (StatusNet side)
-======================
-
-To enable the Facebook Bridge plugin, add
-
- addPlugin('FacebookBridge');
-
-to you config.php.
-
-Next login to your StatusNet site as a user with the administrator role, and
-navigate to the admin menu. You should see a new tab for the Facebook admin
-panel, titled "Facebook". Enter your Facebook application ID and secret in
-that admin panel and hit save. After that, the Facebook Bridge Plugin should
-be ready to use.
+++ /dev/null
-<?php
-/**
- * StatusNet, the distributed open-source microblogging tool
- *
- * Facebook integration administration panel
- *
- * PHP version 5
- *
- * LICENCE: This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Settings
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @copyright 2010 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-
-if (!defined('STATUSNET')) {
- exit(1);
-}
-
-/**
- * Administer global Facebook integration settings
- *
- * @category Admin
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-class FacebookadminpanelAction extends AdminPanelAction
-{
- /**
- * Returns the page title
- *
- * @return string page title
- */
- function title()
- {
- // TRANS: Title for Facebook administration panel.
- return _m('TITLE','Facebook integration settings');
- }
-
- /**
- * Instructions for using this form.
- *
- * @return string instructions
- */
- function getInstructions()
- {
- // TRANS: Instruction for Facebook administration panel.
- return _m('Facebook integration settings');
- }
-
- /**
- * Show the Facebook admin panel form
- *
- * @return void
- */
- function showForm()
- {
- $form = new FacebookAdminPanelForm($this);
- $form->show();
- return;
- }
-
- /**
- * Save settings from the form
- *
- * @return void
- */
- function saveSettings()
- {
- static $settings = array(
- 'facebook' => array('appid', 'secret'),
- );
-
- $values = array();
-
- foreach ($settings as $section => $parts) {
- foreach ($parts as $setting) {
- $values[$section][$setting]
- = $this->trimmed($setting);
- }
- }
-
- // This throws an exception on validation errors
- $this->validate($values);
-
- // assert(all values are valid);
-
- $config = new Config();
-
- $config->query('BEGIN');
-
- foreach ($settings as $section => $parts) {
- foreach ($parts as $setting) {
- Config::save($section, $setting, $values[$section][$setting]);
- }
- }
-
- $config->query('COMMIT');
-
- return;
- }
-
- function validate(&$values)
- {
- // appId, key and secret (can't be too long)
-
- if (mb_strlen($values['facebook']['appid']) > 255) {
- $this->clientError(
- // TRANS: Client error displayed when providing too long a Facebook application ID.
- _m("Invalid Facebook ID. Maximum length is 255 characters.")
- );
- }
-
- if (mb_strlen($values['facebook']['secret']) > 255) {
- $this->clientError(
- // TRANS: Client error displayed when providing too long a Facebook secret key.
- _m("Invalid Facebook secret. Maximum length is 255 characters.")
- );
- }
- }
-}
-
-class FacebookAdminPanelForm extends AdminForm
-{
- /**
- * ID of the form
- *
- * @return int ID of the form
- */
- function id()
- {
- return 'facebookadminpanel';
- }
-
- /**
- * class of the form
- *
- * @return string class of the form
- */
- function formClass()
- {
- return 'form_settings';
- }
-
- /**
- * Action of the form
- *
- * @return string URL of the action
- */
- function action()
- {
- return common_local_url('facebookadminpanel');
- }
-
- /**
- * Data elements of the form
- *
- * @return void
- */
- function formData()
- {
- $this->out->elementStart(
- 'fieldset',
- array('id' => 'settings_facebook-application')
- );
- // TRANS: Fieldset legend.
- $this->out->element('legend', null, _m('Facebook application settings'));
- $this->out->elementStart('ul', 'form_data');
-
- $this->li();
- $this->input(
- 'appid',
- // TRANS: Field label for Facebook application ID.
- _m('Application ID'),
- // TRANS: Field title for Facebook application ID.
- _m('ID of your Facebook application.'),
- 'facebook'
- );
- $this->unli();
-
- $this->li();
- $this->input(
- 'secret',
- // TRANS: Field label for Facebook secret key.
- _m('Secret'),
- // TRANS: Field title for Facebook secret key.
- _m('Application secret.'),
- 'facebook'
- );
- $this->unli();
-
- $this->out->elementEnd('ul');
- $this->out->elementEnd('fieldset');
- }
-
- /**
- * Action elements
- *
- * @return void
- */
- function formActions()
- {
- // TRANS: Button text to save Facebook integration settings.
- $this->out->submit('submit', _m('BUTTON','Save'),
- // TRANS: Button title to save Facebook integration settings.
- 'submit', null, _m('Save Facebook settings.'));
- }
-}
+++ /dev/null
-<?php
-/**
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2010-2011, StatusNet, Inc.
- *
- * An action that handles deauthorize callbacks from Facebook
- *
- * PHP version 5
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Plugin
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @copyright 2010-2011 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
- * @link http://status.net/
- */
-
-if (!defined('STATUSNET')) {
- exit(1);
-}
-
-/*
- * Action class for handling deauthorize callbacks from Facebook. If the user
- * doesn't have a password let her know she'll need to contact the site
- * admin to get back into her account (if possible).
- */
-class FacebookdeauthorizeAction extends Action
-{
- private $facebook;
-
- /**
- * For initializing members of the class.
- *
- * @param array $args misc. arguments
- *
- * @return boolean true
- */
- function prepare(array $args = array())
- {
- $this->facebook = Facebookclient::getFacebook();
-
- return true;
- }
-
- /**
- * Handler method
- *
- * @param array $args is ignored since it's now passed in in prepare()
- */
- function handle()
- {
- parent::handle();
-
- $data = $this->facebook->getSignedRequest();
-
- if (isset($data['user_id'])) {
-
- $fbuid = $data['user_id'];
-
- $flink = Foreign_link::getByForeignID($fbuid, FACEBOOK_SERVICE);
- $user = $flink->getUser();
-
- // Remove the link to Facebook
- $result = $flink->delete();
-
- if (!$result) {
- common_log_db_error($flink, 'DELETE', __FILE__);
- common_log(
- LOG_WARNING,
- sprintf(
- 'Unable to delete Facebook foreign link '
- . 'for %s (%d), fbuid %d',
- $user->nickname,
- $user->id,
- $fbuid
- ),
- __FILE__
- );
- return;
- }
-
- common_log(
- LOG_INFO,
- sprintf(
- 'Facebook callback: %s (%d), fbuid %d has deauthorized '
- . 'the Facebook application.',
- $user->nickname,
- $user->id,
- $fbuid
- ),
- __FILE__
- );
-
- // Warn the user about being locked out of their account
- // if we can.
- if (empty($user->password) && !empty($user->email)) {
- Facebookclient::emailWarn($user);
- } else {
- common_log(
- LOG_WARNING,
- sprintf(
- '%s (%d), fbuid %d has deauthorized his/her Facebook '
- . 'connection but hasn\'t set a password so s/he '
- . 'is locked out.',
- $user->nickname,
- $user->id,
- $fbuid
- ),
- __FILE__
- );
- }
-
- } else {
- if (!empty($data)) {
- common_log(
- LOG_WARNING,
- sprintf(
- 'Facebook called the deauthorize callback '
- . ' but didn\'t provide a user ID.'
- ),
- __FILE__
- );
- } else {
- // It probably wasn't Facebook that hit this action,
- // so redirect to the public timeline
- common_redirect(common_local_url('public'), 303);
- }
- }
- }
-}
+++ /dev/null
-<?php
-/**
- * StatusNet, the distributed open-source microblogging tool
- *
- * Login or register a local user based on a Facebook user
- *
- * PHP version 5
- *
- * LICENCE: This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Plugin
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @copyright 2010-2011 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-
-if (!defined('STATUSNET')) {
- exit(1);
-}
-
-class FacebookfinishloginAction extends Action
-{
- private $fbuid = null; // Facebook user ID
- private $fbuser = null; // Facebook user object (JSON)
- private $accessToken = null; // Access token provided by Facebook JS API
-
- function prepare(array $args = array()) {
- parent::prepare($args);
-
- // Check cookie for a valid access_token
-
- if (isset($_COOKIE['fb_access_token'])) {
- $this->accessToken = $_COOKIE['fb_access_token'];
- }
-
- if (empty($this->accessToken)) {
- $this->clientError(_m("Unable to authenticate you with Facebook."));
- }
-
- $graphUrl = 'https://graph.facebook.com/me?access_token=' . urlencode($this->accessToken);
- $this->fbuser = json_decode(file_get_contents($graphUrl));
-
- if (empty($this->fbuser)) {
- // log badness
-
- list($proxy, $ip) = common_client_ip();
-
- common_log(
- LOG_WARNING,
- sprintf(
- 'Failed Facebook authentication attempt, proxy = %s, ip = %s.',
- $proxy,
- $ip
- ),
- __FILE__
- );
-
- $this->clientError(
- // TRANS: Client error displayed when trying to connect to Facebook while not logged in.
- _m('You must be logged into Facebook to register a local account using Facebook.')
- );
- }
-
- $this->fbuid = $this->fbuser->id;
- // OKAY, all is well... proceed to register
- return true;
- }
-
- function handle()
- {
- parent::handle();
-
- if (common_is_real_login()) {
-
- // This will throw a client exception if the user already
- // has some sort of foreign_link to Facebook.
-
- $this->checkForExistingLink();
-
- // Possibly reconnect an existing account
-
- $this->connectUser();
-
- } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
- $this->handlePost();
- } else {
- $this->tryLogin();
- }
- }
-
- function checkForExistingLink() {
-
- // User is already logged in, are her accounts already linked?
-
- $flink = Foreign_link::getByForeignID($this->fbuid, FACEBOOK_SERVICE);
-
- if (!empty($flink)) {
-
- // User already has a linked Facebook account and shouldn't be here!
-
- $this->clientError(
- // TRANS: Client error displayed when trying to connect to a Facebook account that is already linked
- // TRANS: in the same StatusNet site.
- _m('There is already a local account linked with that Facebook account.')
- );
- }
-
- $cur = common_current_user();
- $flink = Foreign_link::getByUserID($cur->id, FACEBOOK_SERVICE);
-
- if (!empty($flink)) {
-
- // There's already a local user linked to this Facebook account.
-
- $this->clientError(
- // TRANS: Client error displayed when trying to connect to a Facebook account that is already linked
- // TRANS: in the same StatusNet site.
- _m('There is already a local account linked with that Facebook account.')
- );
- }
- }
-
- function handlePost()
- {
- $token = $this->trimmed('token');
-
- // CSRF protection
- if (!$token || $token != common_session_token()) {
- $this->showForm(
- // TRANS: Client error displayed when the session token does not match or is not given.
- _m('There was a problem with your session token. Try again, please.')
- );
- return;
- }
-
- if ($this->arg('create')) {
-
- if (!$this->boolean('license')) {
- $this->showForm(
- // TRANS: Form validation error displayed when user has not agreed to the license.
- _m('You cannot register if you do not agree to the license.'),
- $this->trimmed('newname')
- );
- return;
- }
-
- // We has a valid Facebook session and the Facebook user has
- // agreed to the SN license, so create a new user
- $this->createNewUser();
-
- } else if ($this->arg('connect')) {
-
- $this->connectNewUser();
-
- } else {
-
- $this->showForm(
- // TRANS: Form validation error displayed when an unhandled error occurs.
- _m('An unknown error has occured.'),
- $this->trimmed('newname')
- );
- }
- }
-
- function showPageNotice()
- {
- if ($this->error) {
-
- $this->element('div', array('class' => 'error'), $this->error);
-
- } else {
-
- $this->element(
- 'div', 'instructions',
- sprintf(
- // TRANS: Form instructions for connecting to Facebook.
- // TRANS: %s is the site name.
- _m('This is the first time you have logged into %s so we must connect your Facebook to a local account. You can either create a new local account, or connect with an existing local account.'),
- common_config('site', 'name')
- )
- );
- }
- }
-
- function title()
- {
- // TRANS: Page title.
- return _m('Facebook Setup');
- }
-
- function showForm($error=null, $username=null)
- {
- $this->error = $error;
- $this->username = $username;
-
- $this->showPage();
- }
-
- function showPage()
- {
- parent::showPage();
- }
-
- /**
- * @todo FIXME: Much of this duplicates core code, which is very fragile.
- * Should probably be replaced with an extensible mini version of
- * the core registration form.
- */
- function showContent()
- {
- if (!empty($this->message_text)) {
- $this->element('p', null, $this->message);
- return;
- }
-
- $this->elementStart('form', array('method' => 'post',
- 'id' => 'form_settings_facebook_connect',
- 'class' => 'form_settings',
- 'action' => common_local_url('facebookfinishlogin')));
- $this->elementStart('fieldset', array('id' => 'settings_facebook_connect_options'));
- // TRANS: Fieldset legend.
- $this->element('legend', null, _m('Connection options'));
- $this->elementStart('ul', 'form_data');
- $this->elementStart('li');
- $this->element('input', array('type' => 'checkbox',
- 'id' => 'license',
- 'class' => 'checkbox',
- 'name' => 'license',
- 'value' => 'true'));
- $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license'));
- // TRANS: %s is the name of the license used by the user for their status updates.
- $message = _m('My text and files are available under %s ' .
- 'except this private data: password, ' .
- 'email address, IM address, and phone number.');
- $link = '<a href="' .
- htmlspecialchars(common_config('license', 'url')) .
- '">' .
- htmlspecialchars(common_config('license', 'title')) .
- '</a>';
- $this->raw(sprintf(htmlspecialchars($message), $link));
- $this->elementEnd('label');
- $this->elementEnd('li');
- $this->elementEnd('ul');
-
- $this->elementStart('fieldset');
- $this->hidden('token', common_session_token());
- $this->element('legend', null,
- // TRANS: Fieldset legend.
- _m('Create new account'));
- $this->element('p', null,
- // TRANS: Form instructions.
- _m('Create a new user with this nickname.'));
- $this->elementStart('ul', 'form_data');
-
- // Hook point for captcha etc
- Event::handle('StartRegistrationFormData', array($this));
-
- $this->elementStart('li');
- // TRANS: Field label.
- $this->input('newname', _m('New nickname'),
- ($this->username) ? $this->username : '',
- // TRANS: Field title.
- _m('1-64 lowercase letters or numbers, no punctuation or spaces.'));
- $this->elementEnd('li');
-
- // Hook point for captcha etc
- Event::handle('EndRegistrationFormData', array($this));
-
- $this->elementEnd('ul');
- // TRANS: Submit button to create a new account.
- $this->submit('create', _m('BUTTON','Create'));
- $this->elementEnd('fieldset');
-
- $this->elementStart('fieldset');
- $this->element('legend', null,
- // TRANS: Fieldset legend.
- _m('Connect existing account'));
- $this->element('p', null,
- // TRANS: Form instructions.
- _m('If you already have an account, login with your username and password to connect it to your Facebook.'));
- $this->elementStart('ul', 'form_data');
- $this->elementStart('li');
- // TRANS: Field label.
- $this->input('nickname', _m('Existing nickname'));
- $this->elementEnd('li');
- $this->elementStart('li');
- // TRANS: Field label.
- $this->password('password', _m('Password'));
- $this->elementEnd('li');
- $this->elementEnd('ul');
- // TRANS: Submit button to connect a Facebook account to an existing StatusNet account.
- $this->submit('connect', _m('BUTTON','Connect'));
- $this->elementEnd('fieldset');
-
- $this->elementEnd('fieldset');
- $this->elementEnd('form');
- }
-
- function message($msg)
- {
- $this->message_text = $msg;
- $this->showPage();
- }
-
- function createNewUser()
- {
- if (!Event::handle('StartRegistrationTry', array($this))) {
- return;
- }
-
- if (common_config('site', 'closed')) {
- // TRANS: Client error trying to register with registrations not allowed.
- $this->clientError(_m('Registration not allowed.'));
- }
-
- $invite = null;
-
- if (common_config('site', 'inviteonly')) {
- $code = $_SESSION['invitecode'];
- if (empty($code)) {
- // TRANS: Client error trying to register with registrations 'invite only'.
- $this->clientError(_m('Registration not allowed.'));
- }
-
- $invite = Invitation::getKV($code);
-
- if (empty($invite)) {
- // TRANS: Client error trying to register with an invalid invitation code.
- $this->clientError(_m('Not a valid invitation code.'));
- }
- }
-
- try {
- $nickname = Nickname::normalize($this->trimmed('newname'), true);
- } catch (NicknameException $e) {
- $this->showForm($e->getMessage());
- return;
- }
-
- $args = array(
- 'nickname' => $nickname,
- 'fullname' => $this->fbuser->name,
- 'homepage' => $this->fbuser->website,
- 'location' => $this->fbuser->location->name
- );
-
- // It's possible that the email address is already in our
- // DB. It's a unique key, so we need to check
- if ($this->isNewEmail($this->fbuser->email)) {
- $args['email'] = $this->fbuser->email;
- if (isset($this->fuser->verified) && $this->fuser->verified == true) {
- $args['email_confirmed'] = true;
- }
- }
-
- if (!empty($invite)) {
- $args['code'] = $invite->code;
- }
-
- $user = User::register($args);
- $result = $this->flinkUser($user->id, $this->fbuid);
-
- if (!$result) {
- // TRANS: Server error displayed when connecting to Facebook fails.
- $this->serverError(_m('Error connecting user to Facebook.'));
- }
-
- // Add a Foreign_user record
- Facebookclient::addFacebookUser($this->fbuser);
-
- $this->setAvatar($user);
-
- common_set_user($user);
- common_real_login(true);
-
- common_log(
- LOG_INFO,
- sprintf(
- 'Registered new user %s (%d) from Facebook user %s, (fbuid %d)',
- $user->nickname,
- $user->id,
- $this->fbuser->name,
- $this->fbuid
- ),
- __FILE__
- );
-
- Event::handle('EndRegistrationTry', array($this));
-
- $this->goHome($user->nickname);
- }
-
- /*
- * Attempt to download the user's Facebook picture and create a
- * StatusNet avatar for the new user.
- */
- function setAvatar($user)
- {
- try {
- $picUrl = sprintf(
- 'http://graph.facebook.com/%d/picture?type=large',
- $this->fbuser->id
- );
-
- // fetch the picture from Facebook
- $client = new HTTPClient();
-
- // fetch the actual picture
- $response = $client->get($picUrl);
-
- if ($response->isOk()) {
-
- // seems to always be jpeg, but not sure
- $tmpname = "facebook-avatar-tmp-" . common_random_hexstr(4);
-
- $ok = file_put_contents(
- Avatar::path($tmpname),
- $response->getBody()
- );
-
- if (!$ok) {
- common_log(LOG_WARNING, 'Couldn\'t save tmp Facebook avatar: ' . $tmpname, __FILE__);
- } else {
- // save it as an avatar
-
- $imagefile = new ImageFile(null, Avatar::path($tmpname));
- $filename = Avatar::filename($user->id, image_type_to_extension($imagefile->preferredType()),
- 180, common_timestamp());
- // Previous docs said 180 is the "biggest img we get from Facebook"
- $imagefile->resizeTo(Avatar::path($filename, array('width'=>180, 'height'=>180)));
-
- // No need to keep the temporary file around...
- @unlink(Avatar::path($tmpname));
-
- $profile = $user->getProfile();
-
- if ($profile->setOriginal($filename)) {
- common_log(
- LOG_INFO,
- sprintf(
- 'Saved avatar for %s (%d) from Facebook picture for '
- . '%s (fbuid %d), filename = %s',
- $user->nickname,
- $user->id,
- $this->fbuser->name,
- $this->fbuid,
- $filename
- ),
- __FILE__
- );
-
- // clean up tmp file
- }
-
- }
- }
- } catch (Exception $e) {
- common_log(LOG_WARNING, 'Couldn\'t save Facebook avatar: ' . $e->getMessage(), __FILE__);
- // error isn't fatal, continue
- }
- }
-
- function connectNewUser()
- {
- $nickname = $this->trimmed('nickname');
- $password = $this->trimmed('password');
-
- if (!common_check_user($nickname, $password)) {
- // TRANS: Form validation error displayed when username/password combination is incorrect.
- $this->showForm(_m('Invalid username or password.'));
- return;
- }
-
- $user = User::getKV('nickname', $nickname);
-
- $this->tryLinkUser($user);
-
- common_set_user($user);
- common_real_login(true);
-
- // clear out the stupid cookie
- setcookie('fb_access_token', '', time() - 3600); // one hour ago
-
- $this->goHome($user->nickname);
- }
-
- function connectUser()
- {
- $user = common_current_user();
- $this->tryLinkUser($user);
-
- // clear out the stupid cookie
- setcookie('fb_access_token', '', time() - 3600); // one hour ago
- common_redirect(common_local_url('facebookfinishlogin'), 303);
- }
-
- function tryLinkUser($user)
- {
- $result = $this->flinkUser($user->id, $this->fbuid);
-
- if (empty($result)) {
- // TRANS: Server error displayed when connecting to Facebook fails.
- $this->serverError(_m('Error connecting user to Facebook.'));
- }
- }
-
- function tryLogin()
- {
- try {
- $flink = Foreign_link::getByForeignID($this->fbuid, FACEBOOK_SERVICE);
- $user = $flink->getUser();
-
- common_log(
- LOG_INFO,
- sprintf(
- 'Logged in Facebook user %s as user %d (%s)',
- $this->fbuid,
- $user->nickname,
- $user->id
- ),
- __FILE__
- );
-
- common_set_user($user);
- common_real_login(true);
-
- // clear out the stupid cookie
- setcookie('fb_access_token', '', time() - 3600); // one hour ago
-
- $this->goHome($user->nickname);
-
- } catch (NoResultException $e) {
- $this->showForm(null, $this->bestNewNickname());
- }
- }
-
- function goHome($nickname)
- {
- $url = common_get_returnto();
- if ($url) {
- // We don't have to return to it again
- common_set_returnto(null);
- } else {
- $url = common_local_url('all',
- array('nickname' =>
- $nickname));
- }
-
- common_redirect($url, 303);
- }
-
- function flinkUser($user_id, $fbuid)
- {
- $flink = new Foreign_link();
-
- $flink->user_id = $user_id;
- $flink->foreign_id = $fbuid;
- $flink->service = FACEBOOK_SERVICE;
- $flink->credentials = $this->accessToken;
- $flink->created = common_sql_now();
-
- $flink_id = $flink->insert();
-
- return $flink_id;
- }
-
- function bestNewNickname()
- {
- try {
- $nickname = Nickname::normalize($this->fbuser->username, true);
- return $nickname;
- } catch (NicknameException $e) {
- // Failed to normalize nickname, but let's try the full name
- }
-
- try {
- $nickname = Nickname::normalize($this->fbuser->name, true);
- return $nickname;
- } catch (NicknameException $e) {
- // Any more ideas? Nope.
- }
-
- return null;
- }
-
- /*
- * Do we already have a user record with this email?
- * (emails have to be unique but they can change)
- *
- * @param string $email the email address to check
- *
- * @return boolean result
- */
- function isNewEmail($email)
- {
- // we shouldn't have to validate the format
- $result = User::getKV('email', $email);
-
- if (empty($result)) {
- return true;
- }
-
- return false;
- }
-}
+++ /dev/null
-<?php
-/**
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2010, StatusNet, Inc.
- *
- * An action for logging in with Facebook
- *
- * PHP version 5
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Plugin
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @copyright 2010-2011 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
- * @link http://status.net/
- */
-
-if (!defined('STATUSNET')) {
- exit(1);
-}
-
-class FacebookloginAction extends Action
-{
- function handle()
- {
- parent::handle();
-
- if (common_is_real_login()) {
- // TRANS: Client error displayed when trying to login while already logged in.
- $this->clientError(_m('Already logged in.'));
- } else {
- $this->showPage();
- }
- }
-
- function getInstructions()
- {
- // TRANS: Form instructions.
- return _m('Login with your Facebook Account');
- }
-
- function showPageNotice()
- {
- $instr = $this->getInstructions();
- $output = common_markup_to_html($instr);
- $this->elementStart('div', 'instructions');
- $this->raw($output);
- $this->elementEnd('div');
- }
-
- function title()
- {
- // TRANS: Page title.
- return _m('Login with Facebook');
- }
-
- function showContent() {
- $this->elementStart('fieldset');
-
- $facebook = Facebookclient::getFacebook();
-
- $params = array(
- 'scope' => 'read_stream,publish_stream,offline_access,user_status,user_location,user_website,email',
- 'redirect_uri' => common_local_url('facebookfinishlogin')
- );
-
- // Degrade to plain link if JavaScript is not available
- $this->elementStart(
- 'a',
- array(
- 'href' => $facebook->getLoginUrl($params),
- 'id' => 'facebook_button'
- )
- );
-
- $attrs = array(
- 'src' => Plugin::staticPath('FacebookBridge', 'images/login-button.png'),
- // TRANS: Alt text for "Login with Facebook" image.
- 'alt' => _m('Login with Facebook'),
- // TRANS: Title for "Login with Facebook" image.
- 'title' => _m('Login with Facebook.')
- );
-
- $this->element('img', $attrs);
-
- $this->elementEnd('a');
-
- $this->elementEnd('fieldset');
- }
-
- function showLocalNav()
- {
- $nav = new LoginGroupNav($this);
- $nav->show();
- }
-}
+++ /dev/null
-<?php
-/**
- * StatusNet, the distributed open-source microblogging tool
- *
- * Edit user settings for Facebook
- *
- * PHP version 5
- *
- * LICENCE: This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Settings
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @copyright 2010 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-if (!defined('GNUSOCIAL')) { exit(1); }
-
-/**
- * Edit user settings for Facebook
- *
- * @category Settings
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- *
- * @see SettingsAction
- */
-class FacebooksettingsAction extends SettingsAction {
- private $facebook; // Facebook PHP-SDK client obj
-
- protected $flink;
-
- protected function doPreparation()
- {
- $this->facebook = new Facebook(
- array(
- 'appId' => common_config('facebook', 'appid'),
- 'secret' => common_config('facebook', 'secret'),
- 'cookie' => true,
- )
- );
-
- $this->flink = Foreign_link::getByUserID(
- $this->scoped->getID(),
- FACEBOOK_SERVICE
- );
- }
-
- protected function doPost()
- {
- if ($this->arg('save')) {
- return $this->saveSettings();
- } else if ($this->arg('disconnect')) {
- return $this->disconnect();
- }
-
- throw new ClientException(_('No action to take on POST.'));
- }
-
- /**
- * Returns the page title
- *
- * @return string page title
- */
- function title() {
- // TRANS: Page title for Facebook settings.
- return _m('TITLE','Facebook settings');
- }
-
- /**
- * Instructions for use
- *
- * @return instructions for use
- */
- function getInstructions() {
- // TRANS: Instructions for Facebook settings.
- return _m('Facebook settings');
- }
-
- /*
- * Show the settings form if he/she has a link to Facebook
- *
- * @return void
- */
- function showContent() {
- if (!$this->flink instanceof Foreign_link) {
- throw new ServerException(_m('You have not linked this account to Facebook.'));
- }
-
- $this->elementStart(
- 'form',
- array(
- 'method' => 'post',
- 'id' => 'form_settings_facebook',
- 'class' => 'form_settings',
- 'action' => common_local_url('facebooksettings')
- )
- );
-
- $this->hidden('token', common_session_token());
-
- // TRANS: Form note. User is connected to facebook.
- $this->element('p', 'form_note', _m('Connected Facebook user'));
-
- $this->elementStart('p', array('class' => 'facebook-user-display'));
-
- $this->element(
- 'fb:profile-pic',
- array(
- 'uid' => $this->flink->foreign_id,
- 'size' => 'small',
- 'linked' => 'true',
- 'facebook-logo' => 'true'
- )
- );
-
- $this->element(
- 'fb:name',
- array('uid' => $this->flink->foreign_id, 'useyou' => 'false')
- );
-
- $this->elementEnd('p');
-
- $this->elementStart('ul', 'form_data');
-
- $this->elementStart('li');
-
- $this->checkbox(
- 'noticesync',
- // TRANS: Checkbox label in Facebook settings.
- _m('Publish my notices to Facebook.'),
- $this->flink->noticesync & FOREIGN_NOTICE_SEND
- );
-
- $this->elementEnd('li');
-
- $this->elementStart('li');
-
- $this->checkbox(
- 'replysync',
- // TRANS: Checkbox label in Facebook settings.
- _m('Send "@" replies to Facebook.'),
- $this->flink->noticesync & FOREIGN_NOTICE_SEND_REPLY
- );
-
- $this->elementEnd('li');
-
- $this->elementStart('li');
-
- // TRANS: Submit button to save synchronisation settings.
- $this->submit('save', _m('BUTTON', 'Save'));
-
- $this->elementEnd('li');
-
- $this->elementEnd('ul');
-
- $this->elementStart('fieldset');
-
- // TRANS: Fieldset legend for form to disconnect from Facebook.
- $this->element('legend', null, _m('Disconnect my account from Facebook'));
-
- if (!$this->scoped->hasPassword()) {
- $this->elementStart('p', array('class' => 'form_guide'));
-
- $msg = sprintf(
- // TRANS: Notice in disconnect from Facebook form if user has no local StatusNet password.
- _m('Disconnecting your Faceboook would make it impossible to '.
- 'log in! Please [set a password](%s) first.'),
- common_local_url('passwordsettings')
- );
-
- $this->raw(common_markup_to_html($msg));
- $this->elementEnd('p');
- } else {
- // @todo FIXME: i18n: This message is not being used.
- // TRANS: Message displayed when initiating disconnect of a StatusNet user
- // TRANS: from a Facebook account. %1$s is the StatusNet site name.
- $msg = sprintf(_m('Keep your %1$s account but disconnect from Facebook. ' .
- 'You\'ll use your %1$s password to log in.'),
- common_config('site', 'name')
- );
-
- // TRANS: Submit button.
- $this->submit('disconnect', _m('BUTTON', 'Disconnect'));
- }
-
- $this->elementEnd('fieldset');
-
- $this->elementEnd('form');
- }
-
- /*
- * Save the user's Facebook settings
- *
- * @return void
- */
- function saveSettings() {
- $noticesync = $this->boolean('noticesync');
- $replysync = $this->boolean('replysync');
-
- $original = clone($this->flink);
- $this->flink->set_flags($noticesync, false, $replysync, false);
- $result = $this->flink->update($original);
-
- if ($result === false) {
- // TRANS: Notice in case saving of synchronisation preferences fail.
- throw new ServerException(_m('There was a problem saving your sync preferences.'));
- }
- // TRANS: Confirmation that synchronisation settings have been saved into the system.
- return _m('Sync preferences saved.');
- }
-
- /*
- * Disconnect the user's Facebook account - deletes the Foreign_link
- * and shows the user a success message if all goes well.
- */
- function disconnect() {
- $result = $this->flink->delete();
- $this->flink = null;
-
- if ($result === false) {
- common_log_db_error($this->flink, 'DELETE', __FILE__);
- // TRANS: Server error displayed when deleting the link to a Facebook account fails.
- throw new ServerException(_m('Could not delete link to Facebook.'));
- }
-
- // TRANS: Confirmation message. GNU social account was unlinked from Facebook.
- return _m('You have disconnected this account from Facebook.');
- }
-}
+++ /dev/null
-<?php
-/**
- * Data class for storing notice-to-Facebook-item mappings
- *
- * PHP version 5
- *
- * @category Data
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
- * @link http://status.net/
- *
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2010, StatusNet, Inc.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-if (!defined('STATUSNET')) {
- exit(1);
-}
-
-require_once INSTALLDIR . '/classes/Memcached_DataObject.php';
-
-/**
- * Data class for mapping notices to Facebook stream items
- *
- * Note that notice_id is unique only within a single database; if you
- * want to share this data for some reason, get the notice's URI and use
- * that instead, since it's universally unique.
- *
- * @category Action
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
- * @link http://status.net/
- *
- * @see DB_DataObject
- */
-class Notice_to_item extends Managed_DataObject
-{
- public $__table = 'notice_to_item'; // table name
- public $notice_id; // int(4) primary_key not_null
- public $item_id; // varchar(191) not null not 255 because utf8mb4 takes more space
- public $created; // datetime
-
- /**
- * return table definition for DB_DataObject
- *
- * DB_DataObject needs to know something about the table to manipulate
- * instances. This method provides all the DB_DataObject needs to know.
- *
- * @return array array of column definitions
- */
- function table()
- {
- return array(
- 'notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
- 'item_id' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
- 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL
- );
- }
-
- static function schemaDef()
- {
- return array(
- new ColumnDef('notice_id', 'integer', null, false, 'PRI'),
- new ColumnDef('item_id', 'varchar', 191, false, 'UNI'),
- new ColumnDef('created', 'datetime', null, false)
- );
- }
-
- /**
- * return key definitions for DB_DataObject
- *
- * DB_DataObject needs to know about keys that the table has, since it
- * won't appear in StatusNet's own keys list. In most cases, this will
- * simply reference your keyTypes() function.
- *
- * @return array list of key field names
- */
- function keys()
- {
- return array_keys($this->keyTypes());
- }
-
- /**
- * return key definitions for Memcached_DataObject
- *
- * Our caching system uses the same key definitions, but uses a different
- * method to get them. This key information is used to store and clear
- * cached data, so be sure to list any key that will be used for static
- * lookups.
- *
- * @return array associative array of key definitions, field name to type:
- * 'K' for primary key: for compound keys, add an entry for each component;
- * 'U' for unique keys: compound keys are not well supported here.
- */
- function keyTypes()
- {
- return array('notice_id' => 'K', 'item_id' => 'U');
- }
-
- /**
- * Magic formula for non-autoincrementing integer primary keys
- *
- * If a table has a single integer column as its primary key, DB_DataObject
- * assumes that the column is auto-incrementing and makes a sequence table
- * to do this incrementation. Since we don't need this for our class, we
- * overload this method and return the magic formula that DB_DataObject needs.
- *
- * @return array magic three-false array that stops auto-incrementing.
- */
- function sequenceKey()
- {
- return array(false, false, false);
- }
-
- /**
- * Save a mapping between a notice and a Facebook item
- *
- * @param integer $notice_id ID of the notice in StatusNet
- * @param integer $item_id ID of the stream item on Facebook
- *
- * @return Notice_to_item new object for this value
- */
- static function saveNew($notice_id, $item_id)
- {
- $n2i = Notice_to_item::getKV('notice_id', $notice_id);
-
- if (!empty($n2i)) {
- return $n2i;
- }
-
- $n2i = Notice_to_item::getKV('item_id', $item_id);
-
- if (!empty($n2i)) {
- return $n2i;
- }
-
- common_debug(
- "Mapping notice {$notice_id} to Facebook item {$item_id}",
- __FILE__
- );
-
- $n2i = new Notice_to_item();
-
- $n2i->notice_id = $notice_id;
- $n2i->item_id = $item_id;
- $n2i->created = common_sql_now();
-
- $n2i->insert();
-
- return $n2i;
- }
-}
+++ /dev/null
-<?php
-/**
- * Copyright 2011 Facebook, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may
- * not use this file except in compliance with the License. You may obtain
- * a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations
- * under the License.
- */
-
-if (!function_exists('curl_init')) {
- throw new Exception('Facebook needs the CURL PHP extension.');
-}
-if (!function_exists('json_decode')) {
- throw new Exception('Facebook needs the JSON PHP extension.');
-}
-
-/**
- * Thrown when an API call returns an exception.
- *
- * @author Naitik Shah <naitik@facebook.com>
- */
-class FacebookApiException extends Exception
-{
- /**
- * The result from the API server that represents the exception information.
- */
- protected $result;
-
- /**
- * Make a new API Exception with the given result.
- *
- * @param array $result The result from the API server
- */
- public function __construct($result) {
- $this->result = $result;
-
- $code = isset($result['error_code']) ? $result['error_code'] : 0;
-
- if (isset($result['error_description'])) {
- // OAuth 2.0 Draft 10 style
- $msg = $result['error_description'];
- } else if (isset($result['error']) && is_array($result['error'])) {
- // OAuth 2.0 Draft 00 style
- $msg = $result['error']['message'];
- } else if (isset($result['error_msg'])) {
- // Rest server style
- $msg = $result['error_msg'];
- } else {
- $msg = 'Unknown Error. Check getResult()';
- }
-
- parent::__construct($msg, $code);
- }
-
- /**
- * Return the associated result object returned by the API server.
- *
- * @return array The result from the API server
- */
- public function getResult() {
- return $this->result;
- }
-
- /**
- * Returns the associated type for the error. This will default to
- * 'Exception' when a type is not available.
- *
- * @return string
- */
- public function getType() {
- if (isset($this->result['error'])) {
- $error = $this->result['error'];
- if (is_string($error)) {
- // OAuth 2.0 Draft 10 style
- return $error;
- } else if (is_array($error)) {
- // OAuth 2.0 Draft 00 style
- if (isset($error['type'])) {
- return $error['type'];
- }
- }
- }
-
- return 'Exception';
- }
-
- /**
- * To make debugging easier.
- *
- * @return string The string representation of the error
- */
- public function __toString() {
- $str = $this->getType() . ': ';
- if ($this->code != 0) {
- $str .= $this->code . ': ';
- }
- return $str . $this->message;
- }
-}
-
-/**
- * Provides access to the Facebook Platform. This class provides
- * a majority of the functionality needed, but the class is abstract
- * because it is designed to be sub-classed. The subclass must
- * implement the four abstract methods listed at the bottom of
- * the file.
- *
- * @author Naitik Shah <naitik@facebook.com>
- */
-abstract class BaseFacebook
-{
- /**
- * Version.
- */
- const VERSION = '3.1.1';
-
- /**
- * Default options for curl.
- */
- public static $CURL_OPTS = array(
- CURLOPT_CONNECTTIMEOUT => 10,
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_TIMEOUT => 60,
- CURLOPT_USERAGENT => 'facebook-php-3.1',
- );
-
- /**
- * List of query parameters that get automatically dropped when rebuilding
- * the current URL.
- */
- protected static $DROP_QUERY_PARAMS = array(
- 'code',
- 'state',
- 'signed_request',
- );
-
- /**
- * Maps aliases to Facebook domains.
- */
- public static $DOMAIN_MAP = array(
- 'api' => 'https://api.facebook.com/',
- 'api_video' => 'https://api-video.facebook.com/',
- 'api_read' => 'https://api-read.facebook.com/',
- 'graph' => 'https://graph.facebook.com/',
- 'www' => 'https://www.facebook.com/',
- );
-
- /**
- * The Application ID.
- *
- * @var string
- */
- protected $appId;
-
- /**
- * The Application API Secret.
- *
- * @var string
- */
- protected $apiSecret;
-
- /**
- * The ID of the Facebook user, or 0 if the user is logged out.
- *
- * @var integer
- */
- protected $user;
-
- /**
- * The data from the signed_request token.
- */
- protected $signedRequest;
-
- /**
- * A CSRF state variable to assist in the defense against CSRF attacks.
- */
- protected $state;
-
- /**
- * The OAuth access token received in exchange for a valid authorization
- * code. null means the access token has yet to be determined.
- *
- * @var string
- */
- protected $accessToken = null;
-
- /**
- * Indicates if the CURL based @ syntax for file uploads is enabled.
- *
- * @var boolean
- */
- protected $fileUploadSupport = false;
-
- /**
- * Initialize a Facebook Application.
- *
- * The configuration:
- * - appId: the application ID
- * - secret: the application secret
- * - fileUpload: (optional) boolean indicating if file uploads are enabled
- *
- * @param array $config The application configuration
- */
- public function __construct($config) {
- $this->setAppId($config['appId']);
- $this->setApiSecret($config['secret']);
- if (isset($config['fileUpload'])) {
- $this->setFileUploadSupport($config['fileUpload']);
- }
-
- $state = $this->getPersistentData('state');
- if (!empty($state)) {
- $this->state = $this->getPersistentData('state');
- }
- }
-
- /**
- * Set the Application ID.
- *
- * @param string $appId The Application ID
- * @return BaseFacebook
- */
- public function setAppId($appId) {
- $this->appId = $appId;
- return $this;
- }
-
- /**
- * Get the Application ID.
- *
- * @return string the Application ID
- */
- public function getAppId() {
- return $this->appId;
- }
-
- /**
- * Set the API Secret.
- *
- * @param string $apiSecret The API Secret
- * @return BaseFacebook
- */
- public function setApiSecret($apiSecret) {
- $this->apiSecret = $apiSecret;
- return $this;
- }
-
- /**
- * Get the API Secret.
- *
- * @return string the API Secret
- */
- public function getApiSecret() {
- return $this->apiSecret;
- }
-
- /**
- * Set the file upload support status.
- *
- * @param boolean $fileUploadSupport The file upload support status.
- * @return BaseFacebook
- */
- public function setFileUploadSupport($fileUploadSupport) {
- $this->fileUploadSupport = $fileUploadSupport;
- return $this;
- }
-
- /**
- * Get the file upload support status.
- *
- * @return boolean true if and only if the server supports file upload.
- */
- public function useFileUploadSupport() {
- return $this->fileUploadSupport;
- }
-
- /**
- * Sets the access token for api calls. Use this if you get
- * your access token by other means and just want the SDK
- * to use it.
- *
- * @param string $access_token an access token.
- * @return BaseFacebook
- */
- public function setAccessToken($access_token) {
- $this->accessToken = $access_token;
- return $this;
- }
-
- /**
- * Determines the access token that should be used for API calls.
- * The first time this is called, $this->accessToken is set equal
- * to either a valid user access token, or it's set to the application
- * access token if a valid user access token wasn't available. Subsequent
- * calls return whatever the first call returned.
- *
- * @return string The access token
- */
- public function getAccessToken() {
- if ($this->accessToken !== null) {
- // we've done this already and cached it. Just return.
- return $this->accessToken;
- }
-
- // first establish access token to be the application
- // access token, in case we navigate to the /oauth/access_token
- // endpoint, where SOME access token is required.
- $this->setAccessToken($this->getApplicationAccessToken());
- if ($user_access_token = $this->getUserAccessToken()) {
- $this->setAccessToken($user_access_token);
- }
-
- return $this->accessToken;
- }
-
- /**
- * Determines and returns the user access token, first using
- * the signed request if present, and then falling back on
- * the authorization code if present. The intent is to
- * return a valid user access token, or false if one is determined
- * to not be available.
- *
- * @return string A valid user access token, or false if one
- * could not be determined.
- */
- protected function getUserAccessToken() {
- // first, consider a signed request if it's supplied.
- // if there is a signed request, then it alone determines
- // the access token.
- $signed_request = $this->getSignedRequest();
- if ($signed_request) {
- // apps.facebook.com hands the access_token in the signed_request
- if (array_key_exists('oauth_token', $signed_request)) {
- $access_token = $signed_request['oauth_token'];
- $this->setPersistentData('access_token', $access_token);
- return $access_token;
- }
-
- // the JS SDK puts a code in with the redirect_uri of ''
- if (array_key_exists('code', $signed_request)) {
- $code = $signed_request['code'];
- $access_token = $this->getAccessTokenFromCode($code, '');
- if ($access_token) {
- $this->setPersistentData('code', $code);
- $this->setPersistentData('access_token', $access_token);
- return $access_token;
- }
- }
-
- // signed request states there's no access token, so anything
- // stored should be cleared.
- $this->clearAllPersistentData();
- return false; // respect the signed request's data, even
- // if there's an authorization code or something else
- }
-
- $code = $this->getCode();
- if ($code && $code != $this->getPersistentData('code')) {
- $access_token = $this->getAccessTokenFromCode($code);
- if ($access_token) {
- $this->setPersistentData('code', $code);
- $this->setPersistentData('access_token', $access_token);
- return $access_token;
- }
-
- // code was bogus, so everything based on it should be invalidated.
- $this->clearAllPersistentData();
- return false;
- }
-
- // as a fallback, just return whatever is in the persistent
- // store, knowing nothing explicit (signed request, authorization
- // code, etc.) was present to shadow it (or we saw a code in $_REQUEST,
- // but it's the same as what's in the persistent store)
- return $this->getPersistentData('access_token');
- }
-
- /**
- * Retrieve the signed request, either from a request parameter or,
- * if not present, from a cookie.
- *
- * @return string the signed request, if available, or null otherwise.
- */
- public function getSignedRequest() {
- if (!$this->signedRequest) {
- if (isset($_REQUEST['signed_request'])) {
- $this->signedRequest = $this->parseSignedRequest(
- $_REQUEST['signed_request']);
- } else if (isset($_COOKIE[$this->getSignedRequestCookieName()])) {
- $this->signedRequest = $this->parseSignedRequest(
- $_COOKIE[$this->getSignedRequestCookieName()]);
- }
- }
- return $this->signedRequest;
- }
-
- /**
- * Get the UID of the connected user, or 0
- * if the Facebook user is not connected.
- *
- * @return string the UID if available.
- */
- public function getUser() {
- if ($this->user !== null) {
- // we've already determined this and cached the value.
- return $this->user;
- }
-
- return $this->user = $this->getUserFromAvailableData();
- }
-
- /**
- * Determines the connected user by first examining any signed
- * requests, then considering an authorization code, and then
- * falling back to any persistent store storing the user.
- *
- * @return integer The id of the connected Facebook user,
- * or 0 if no such user exists.
- */
- protected function getUserFromAvailableData() {
- // if a signed request is supplied, then it solely determines
- // who the user is.
- $signed_request = $this->getSignedRequest();
- if ($signed_request) {
- if (array_key_exists('user_id', $signed_request)) {
- $user = $signed_request['user_id'];
- $this->setPersistentData('user_id', $signed_request['user_id']);
- return $user;
- }
-
- // if the signed request didn't present a user id, then invalidate
- // all entries in any persistent store.
- $this->clearAllPersistentData();
- return 0;
- }
-
- $user = $this->getPersistentData('user_id', $default = 0);
- $persisted_access_token = $this->getPersistentData('access_token');
-
- // use access_token to fetch user id if we have a user access_token, or if
- // the cached access token has changed.
- $access_token = $this->getAccessToken();
- if ($access_token &&
- $access_token != $this->getApplicationAccessToken() &&
- !($user && $persisted_access_token == $access_token)) {
- $user = $this->getUserFromAccessToken();
- if ($user) {
- $this->setPersistentData('user_id', $user);
- } else {
- $this->clearAllPersistentData();
- }
- }
-
- return $user;
- }
-
- /**
- * Get a Login URL for use with redirects. By default, full page redirect is
- * assumed. If you are using the generated URL with a window.open() call in
- * JavaScript, you can pass in display=popup as part of the $params.
- *
- * The parameters:
- * - redirect_uri: the url to go to after a successful login
- * - scope: comma separated list of requested extended perms
- *
- * @param array $params Provide custom parameters
- * @return string The URL for the login flow
- */
- public function getLoginUrl($params=array()) {
- $this->establishCSRFTokenState();
- $currentUrl = $this->getCurrentUrl();
-
- // if 'scope' is passed as an array, convert to comma separated list
- $scopeParams = isset($params['scope']) ? $params['scope'] : null;
- if ($scopeParams && is_array($scopeParams)) {
- $params['scope'] = implode(',', $scopeParams);
- }
-
- return $this->getUrl(
- 'www',
- 'dialog/oauth',
- array_merge(array(
- 'client_id' => $this->getAppId(),
- 'redirect_uri' => $currentUrl, // possibly overwritten
- 'state' => $this->state),
- $params));
- }
-
- /**
- * Get a Logout URL suitable for use with redirects.
- *
- * The parameters:
- * - next: the url to go to after a successful logout
- *
- * @param array $params Provide custom parameters
- * @return string The URL for the logout flow
- */
- public function getLogoutUrl($params=array()) {
- return $this->getUrl(
- 'www',
- 'logout.php',
- array_merge(array(
- 'next' => $this->getCurrentUrl(),
- 'access_token' => $this->getAccessToken(),
- ), $params)
- );
- }
-
- /**
- * Get a login status URL to fetch the status from Facebook.
- *
- * The parameters:
- * - ok_session: the URL to go to if a session is found
- * - no_session: the URL to go to if the user is not connected
- * - no_user: the URL to go to if the user is not signed into facebook
- *
- * @param array $params Provide custom parameters
- * @return string The URL for the logout flow
- */
- public function getLoginStatusUrl($params=array()) {
- return $this->getUrl(
- 'www',
- 'extern/login_status.php',
- array_merge(array(
- 'api_key' => $this->getAppId(),
- 'no_session' => $this->getCurrentUrl(),
- 'no_user' => $this->getCurrentUrl(),
- 'ok_session' => $this->getCurrentUrl(),
- 'session_version' => 3,
- ), $params)
- );
- }
-
- /**
- * Make an API call.
- *
- * @return mixed The decoded response
- */
- public function api(/* polymorphic */) {
- $args = func_get_args();
- if (is_array($args[0])) {
- return $this->_restserver($args[0]);
- } else {
- return call_user_func_array(array($this, '_graph'), $args);
- }
- }
-
- /**
- * Constructs and returns the name of the cookie that
- * potentially houses the signed request for the app user.
- * The cookie is not set by the BaseFacebook class, but
- * it may be set by the JavaScript SDK.
- *
- * @return string the name of the cookie that would house
- * the signed request value.
- */
- protected function getSignedRequestCookieName() {
- return 'fbsr_'.$this->getAppId();
- }
-
- /**
- * Get the authorization code from the query parameters, if it exists,
- * and otherwise return false to signal no authorization code was
- * discoverable.
- *
- * @return mixed The authorization code, or false if the authorization
- * code could not be determined.
- */
- protected function getCode() {
- if (isset($_REQUEST['code'])) {
- if ($this->state !== null &&
- isset($_REQUEST['state']) &&
- $this->state === $_REQUEST['state']) {
-
- // CSRF state has done its job, so clear it
- $this->state = null;
- $this->clearPersistentData('state');
- return $_REQUEST['code'];
- } else {
- self::errorLog('CSRF state token does not match one provided.');
- return false;
- }
- }
-
- return false;
- }
-
- /**
- * Retrieves the UID with the understanding that
- * $this->accessToken has already been set and is
- * seemingly legitimate. It relies on Facebook's Graph API
- * to retrieve user information and then extract
- * the user ID.
- *
- * @return integer Returns the UID of the Facebook user, or 0
- * if the Facebook user could not be determined.
- */
- protected function getUserFromAccessToken() {
- try {
- $user_info = $this->api('/me');
- return $user_info['id'];
- } catch (FacebookApiException $e) {
- return 0;
- }
- }
-
- /**
- * Returns the access token that should be used for logged out
- * users when no authorization code is available.
- *
- * @return string The application access token, useful for gathering
- * public information about users and applications.
- */
- protected function getApplicationAccessToken() {
- return $this->appId.'|'.$this->apiSecret;
- }
-
- /**
- * Lays down a CSRF state token for this process.
- *
- * @return void
- */
- protected function establishCSRFTokenState() {
- if ($this->state === null) {
- $this->state = md5(uniqid(mt_rand(), true));
- $this->setPersistentData('state', $this->state);
- }
- }
-
- /**
- * Retrieves an access token for the given authorization code
- * (previously generated from www.facebook.com on behalf of
- * a specific user). The authorization code is sent to graph.facebook.com
- * and a legitimate access token is generated provided the access token
- * and the user for which it was generated all match, and the user is
- * either logged in to Facebook or has granted an offline access permission.
- *
- * @param string $code An authorization code.
- * @return mixed An access token exchanged for the authorization code, or
- * false if an access token could not be generated.
- */
- protected function getAccessTokenFromCode($code, $redirect_uri = null) {
- if (empty($code)) {
- return false;
- }
-
- if ($redirect_uri === null) {
- $redirect_uri = $this->getCurrentUrl();
- }
-
- try {
- // need to circumvent json_decode by calling _oauthRequest
- // directly, since response isn't JSON format.
- $access_token_response =
- $this->_oauthRequest(
- $this->getUrl('graph', '/oauth/access_token'),
- $params = array('client_id' => $this->getAppId(),
- 'client_secret' => $this->getApiSecret(),
- 'redirect_uri' => $redirect_uri,
- 'code' => $code));
- } catch (FacebookApiException $e) {
- // most likely that user very recently revoked authorization.
- // In any event, we don't have an access token, so say so.
- return false;
- }
-
- if (empty($access_token_response)) {
- return false;
- }
-
- $response_params = array();
- parse_str($access_token_response, $response_params);
- if (!isset($response_params['access_token'])) {
- return false;
- }
-
- return $response_params['access_token'];
- }
-
- /**
- * Invoke the old restserver.php endpoint.
- *
- * @param array $params Method call object
- *
- * @return mixed The decoded response object
- * @throws FacebookApiException
- */
- protected function _restserver($params) {
- // generic application level parameters
- $params['api_key'] = $this->getAppId();
- $params['format'] = 'json-strings';
-
- $result = json_decode($this->_oauthRequest(
- $this->getApiUrl($params['method']),
- $params
- ), true);
-
- // results are returned, errors are thrown
- if (is_array($result) && isset($result['error_code'])) {
- throw new FacebookApiException($result);
- }
-
- return $result;
- }
-
- /**
- * Invoke the Graph API.
- *
- * @param string $path The path (required)
- * @param string $method The http method (default 'GET')
- * @param array $params The query/post data
- *
- * @return mixed The decoded response object
- * @throws FacebookApiException
- */
- protected function _graph($path, $method = 'GET', $params = array()) {
- if (is_array($method) && empty($params)) {
- $params = $method;
- $method = 'GET';
- }
- $params['method'] = $method; // method override as we always do a POST
-
- $result = json_decode($this->_oauthRequest(
- $this->getUrl('graph', $path),
- $params
- ), true);
-
- // results are returned, errors are thrown
- if (is_array($result) && isset($result['error'])) {
- $this->throwAPIException($result);
- }
-
- return $result;
- }
-
- /**
- * Make a OAuth Request.
- *
- * @param string $url The path (required)
- * @param array $params The query/post data
- *
- * @return string The decoded response object
- * @throws FacebookApiException
- */
- protected function _oauthRequest($url, $params) {
- if (!isset($params['access_token'])) {
- $params['access_token'] = $this->getAccessToken();
- }
-
- // json_encode all params values that are not strings
- foreach ($params as $key => $value) {
- if (!is_string($value)) {
- $params[$key] = json_encode($value);
- }
- }
-
- return $this->makeRequest($url, $params);
- }
-
- /**
- * Makes an HTTP request. This method can be overridden by subclasses if
- * developers want to do fancier things or use something other than curl to
- * make the request.
- *
- * @param string $url The URL to make the request to
- * @param array $params The parameters to use for the POST body
- * @param CurlHandler $ch Initialized curl handle
- *
- * @return string The response text
- */
- protected function makeRequest($url, $params, $ch=null) {
- if (!$ch) {
- $ch = curl_init();
- }
-
- $opts = self::$CURL_OPTS;
- if ($this->useFileUploadSupport()) {
- $opts[CURLOPT_POSTFIELDS] = $params;
- } else {
- $opts[CURLOPT_POSTFIELDS] = http_build_query($params, null, '&');
- }
- $opts[CURLOPT_URL] = $url;
-
- // disable the 'Expect: 100-continue' behaviour. This causes CURL to wait
- // for 2 seconds if the server does not support this header.
- if (isset($opts[CURLOPT_HTTPHEADER])) {
- $existing_headers = $opts[CURLOPT_HTTPHEADER];
- $existing_headers[] = 'Expect:';
- $opts[CURLOPT_HTTPHEADER] = $existing_headers;
- } else {
- $opts[CURLOPT_HTTPHEADER] = array('Expect:');
- }
-
- curl_setopt_array($ch, $opts);
- $result = curl_exec($ch);
-
- if (curl_errno($ch) == 60) { // CURLE_SSL_CACERT
- self::errorLog('Invalid or no certificate authority found, '.
- 'using bundled information');
- curl_setopt($ch, CURLOPT_CAINFO,
- dirname(__FILE__) . '/fb_ca_chain_bundle.crt');
- $result = curl_exec($ch);
- }
-
- if ($result === false) {
- $e = new FacebookApiException(array(
- 'error_code' => curl_errno($ch),
- 'error' => array(
- 'message' => curl_error($ch),
- 'type' => 'CurlException',
- ),
- ));
- curl_close($ch);
- throw $e;
- }
- curl_close($ch);
- return $result;
- }
-
- /**
- * Parses a signed_request and validates the signature.
- *
- * @param string $signed_request A signed token
- * @return array The payload inside it or null if the sig is wrong
- */
- protected function parseSignedRequest($signed_request) {
- list($encoded_sig, $payload) = explode('.', $signed_request, 2);
-
- // decode the data
- $sig = self::base64UrlDecode($encoded_sig);
- $data = json_decode(self::base64UrlDecode($payload), true);
-
- if (strtoupper($data['algorithm']) !== 'HMAC-SHA256') {
- self::errorLog('Unknown algorithm. Expected HMAC-SHA256');
- return null;
- }
-
- // check sig
- $expected_sig = hash_hmac('sha256', $payload,
- $this->getApiSecret(), $raw = true);
- if ($sig !== $expected_sig) {
- self::errorLog('Bad Signed JSON signature!');
- return null;
- }
-
- return $data;
- }
-
- /**
- * Build the URL for api given parameters.
- *
- * @param $method String the method name.
- * @return string The URL for the given parameters
- */
- protected function getApiUrl($method) {
- static $READ_ONLY_CALLS =
- array('admin.getallocation' => 1,
- 'admin.getappproperties' => 1,
- 'admin.getbannedusers' => 1,
- 'admin.getlivestreamvialink' => 1,
- 'admin.getmetrics' => 1,
- 'admin.getrestrictioninfo' => 1,
- 'application.getpublicinfo' => 1,
- 'auth.getapppublickey' => 1,
- 'auth.getsession' => 1,
- 'auth.getsignedpublicsessiondata' => 1,
- 'comments.get' => 1,
- 'connect.getunconnectedfriendscount' => 1,
- 'dashboard.getactivity' => 1,
- 'dashboard.getcount' => 1,
- 'dashboard.getglobalnews' => 1,
- 'dashboard.getnews' => 1,
- 'dashboard.multigetcount' => 1,
- 'dashboard.multigetnews' => 1,
- 'data.getcookies' => 1,
- 'events.get' => 1,
- 'events.getmembers' => 1,
- 'fbml.getcustomtags' => 1,
- 'feed.getappfriendstories' => 1,
- 'feed.getregisteredtemplatebundlebyid' => 1,
- 'feed.getregisteredtemplatebundles' => 1,
- 'fql.multiquery' => 1,
- 'fql.query' => 1,
- 'friends.arefriends' => 1,
- 'friends.get' => 1,
- 'friends.getappusers' => 1,
- 'friends.getlists' => 1,
- 'friends.getmutualfriends' => 1,
- 'gifts.get' => 1,
- 'groups.get' => 1,
- 'groups.getmembers' => 1,
- 'intl.gettranslations' => 1,
- 'links.get' => 1,
- 'notes.get' => 1,
- 'notifications.get' => 1,
- 'pages.getinfo' => 1,
- 'pages.isadmin' => 1,
- 'pages.isappadded' => 1,
- 'pages.isfan' => 1,
- 'permissions.checkavailableapiaccess' => 1,
- 'permissions.checkgrantedapiaccess' => 1,
- 'photos.get' => 1,
- 'photos.getalbums' => 1,
- 'photos.gettags' => 1,
- 'profile.getinfo' => 1,
- 'profile.getinfooptions' => 1,
- 'stream.get' => 1,
- 'stream.getcomments' => 1,
- 'stream.getfilters' => 1,
- 'users.getinfo' => 1,
- 'users.getloggedinuser' => 1,
- 'users.getstandardinfo' => 1,
- 'users.hasapppermission' => 1,
- 'users.isappuser' => 1,
- 'users.isverified' => 1,
- 'video.getuploadlimits' => 1);
- $name = 'api';
- if (isset($READ_ONLY_CALLS[strtolower($method)])) {
- $name = 'api_read';
- } else if (strtolower($method) == 'video.upload') {
- $name = 'api_video';
- }
- return self::getUrl($name, 'restserver.php');
- }
-
- /**
- * Build the URL for given domain alias, path and parameters.
- *
- * @param $name string The name of the domain
- * @param $path string Optional path (without a leading slash)
- * @param $params array Optional query parameters
- *
- * @return string The URL for the given parameters
- */
- protected function getUrl($name, $path='', $params=array()) {
- $url = self::$DOMAIN_MAP[$name];
- if ($path) {
- if ($path[0] === '/') {
- $path = substr($path, 1);
- }
- $url .= $path;
- }
- if ($params) {
- $url .= '?' . http_build_query($params, null, '&');
- }
-
- return $url;
- }
-
- /**
- * Returns the Current URL, stripping it of known FB parameters that should
- * not persist.
- *
- * @return string The current URL
- */
- protected function getCurrentUrl() {
- if (isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] == 'on' || $_SERVER['HTTPS'] == 1)
- || isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https'
- ) {
- $protocol = 'https://';
- }
- else {
- $protocol = 'http://';
- }
- $currentUrl = $protocol . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
- $parts = parse_url($currentUrl);
-
- $query = '';
- if (!empty($parts['query'])) {
- // drop known fb params
- $params = explode('&', $parts['query']);
- $retained_params = array();
- foreach ($params as $param) {
- if ($this->shouldRetainParam($param)) {
- $retained_params[] = $param;
- }
- }
-
- if (!empty($retained_params)) {
- $query = '?'.implode($retained_params, '&');
- }
- }
-
- // use port if non default
- $port =
- isset($parts['port']) &&
- (($protocol === 'http://' && $parts['port'] !== 80) ||
- ($protocol === 'https://' && $parts['port'] !== 443))
- ? ':' . $parts['port'] : '';
-
- // rebuild
- return $protocol . $parts['host'] . $port . $parts['path'] . $query;
- }
-
- /**
- * Returns true if and only if the key or key/value pair should
- * be retained as part of the query string. This amounts to
- * a brute-force search of the very small list of Facebook-specific
- * params that should be stripped out.
- *
- * @param string $param A key or key/value pair within a URL's query (e.g.
- * 'foo=a', 'foo=', or 'foo'.
- *
- * @return boolean
- */
- protected function shouldRetainParam($param) {
- foreach (self::$DROP_QUERY_PARAMS as $drop_query_param) {
- if (strpos($param, $drop_query_param.'=') === 0) {
- return false;
- }
- }
-
- return true;
- }
-
- /**
- * Analyzes the supplied result to see if it was thrown
- * because the access token is no longer valid. If that is
- * the case, then the persistent store is cleared.
- *
- * @param $result array A record storing the error message returned
- * by a failed API call.
- */
- protected function throwAPIException($result) {
- $e = new FacebookApiException($result);
- switch ($e->getType()) {
- // OAuth 2.0 Draft 00 style
- case 'OAuthException':
- // OAuth 2.0 Draft 10 style
- case 'invalid_token':
- $message = $e->getMessage();
- if ((strpos($message, 'Error validating access token') !== false) ||
- (strpos($message, 'Invalid OAuth access token') !== false)) {
- $this->setAccessToken(null);
- $this->user = 0;
- $this->clearAllPersistentData();
- }
- }
-
- throw $e;
- }
-
-
- /**
- * Prints to the error log if you aren't in command line mode.
- *
- * @param string $msg Log message
- */
- protected static function errorLog($msg) {
- // disable error log if we are running in a CLI environment
- // @codeCoverageIgnoreStart
- if (php_sapi_name() != 'cli') {
- error_log($msg);
- }
- // uncomment this if you want to see the errors on the page
- // print 'error_log: '.$msg."\n";
- // @codeCoverageIgnoreEnd
- }
-
- /**
- * Base64 encoding that doesn't need to be urlencode()ed.
- * Exactly the same as base64_encode except it uses
- * - instead of +
- * _ instead of /
- *
- * @param string $input base64UrlEncoded string
- * @return string
- */
- protected static function base64UrlDecode($input) {
- return base64_decode(strtr($input, '-_', '+/'));
- }
-
- /**
- * Each of the following four methods should be overridden in
- * a concrete subclass, as they are in the provided Facebook class.
- * The Facebook class uses PHP sessions to provide a primitive
- * persistent store, but another subclass--one that you implement--
- * might use a database, memcache, or an in-memory cache.
- *
- * @see Facebook
- */
-
- /**
- * Stores the given ($key, $value) pair, so that future calls to
- * getPersistentData($key) return $value. This call may be in another request.
- *
- * @param string $key
- * @param array $value
- *
- * @return void
- */
- abstract protected function setPersistentData($key, $value);
-
- /**
- * Get the data for $key, persisted by BaseFacebook::setPersistentData()
- *
- * @param string $key The key of the data to retrieve
- * @param boolean $default The default value to return if $key is not found
- *
- * @return mixed
- */
- abstract protected function getPersistentData($key, $default = false);
-
- /**
- * Clear the data with $key from the persistent storage
- *
- * @param string $key
- * @return void
- */
- abstract protected function clearPersistentData($key);
-
- /**
- * Clear all data from the persistent storage
- *
- * @return void
- */
- abstract protected function clearAllPersistentData();
-}
+++ /dev/null
-<?php
-/**
- * Copyright 2011 Facebook, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may
- * not use this file except in compliance with the License. You may obtain
- * a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations
- * under the License.
- */
-
-require_once "base_facebook.php";
-
-/**
- * Extends the BaseFacebook class with the intent of using
- * PHP sessions to store user ids and access tokens.
- */
-class Facebook extends BaseFacebook
-{
- /**
- * Identical to the parent constructor, except that
- * we start a PHP session to store the user ID and
- * access token if during the course of execution
- * we discover them.
- *
- * @param Array $config the application configuration.
- * @see BaseFacebook::__construct in facebook.php
- */
- public function __construct($config) {
- if (!session_id()) {
- session_start();
- }
- parent::__construct($config);
- }
-
- protected static $kSupportedKeys =
- array('state', 'code', 'access_token', 'user_id');
-
- /**
- * Provides the implementations of the inherited abstract
- * methods. The implementation uses PHP sessions to maintain
- * a store for authorization codes, user ids, CSRF states, and
- * access tokens.
- */
- protected function setPersistentData($key, $value) {
- if (!in_array($key, self::$kSupportedKeys)) {
- self::errorLog('Unsupported key passed to setPersistentData.');
- return;
- }
-
- $session_var_name = $this->constructSessionVariableName($key);
- $_SESSION[$session_var_name] = $value;
- }
-
- protected function getPersistentData($key, $default = false) {
- if (!in_array($key, self::$kSupportedKeys)) {
- self::errorLog('Unsupported key passed to getPersistentData.');
- return $default;
- }
-
- $session_var_name = $this->constructSessionVariableName($key);
- return isset($_SESSION[$session_var_name]) ?
- $_SESSION[$session_var_name] : $default;
- }
-
- protected function clearPersistentData($key) {
- if (!in_array($key, self::$kSupportedKeys)) {
- self::errorLog('Unsupported key passed to clearPersistentData.');
- return;
- }
-
- $session_var_name = $this->constructSessionVariableName($key);
- unset($_SESSION[$session_var_name]);
- }
-
- protected function clearAllPersistentData() {
- foreach (self::$kSupportedKeys as $key) {
- $this->clearPersistentData($key);
- }
- }
-
- protected function constructSessionVariableName($key) {
- return implode('_', array('fb',
- $this->getAppId(),
- $key));
- }
-}
+++ /dev/null
------BEGIN CERTIFICATE-----
-MIIFgjCCBGqgAwIBAgIQDKKbZcnESGaLDuEaVk6fQjANBgkqhkiG9w0BAQUFADBm
-MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
-d3cuZGlnaWNlcnQuY29tMSUwIwYDVQQDExxEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
-ZSBDQS0zMB4XDTEwMDExMzAwMDAwMFoXDTEzMDQxMTIzNTk1OVowaDELMAkGA1UE
-BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExEjAQBgNVBAcTCVBhbG8gQWx0bzEX
-MBUGA1UEChMORmFjZWJvb2ssIEluYy4xFzAVBgNVBAMUDiouZmFjZWJvb2suY29t
-MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9rzj7QIuLM3sdHu1HcI1VcR3g
-b5FExKNV646agxSle1aQ/sJev1mh/u91ynwqd2BQmM0brZ1Hc3QrfYyAaiGGgEkp
-xbhezyfeYhAyO0TKAYxPnm2cTjB5HICzk6xEIwFbA7SBJ2fSyW1CFhYZyo3tIBjj
-19VjKyBfpRaPkzLmRwIDAQABo4ICrDCCAqgwHwYDVR0jBBgwFoAUUOpzidsp+xCP
-nuUBINTeeZlIg/cwHQYDVR0OBBYEFPp+tsFBozkjrHlEnZ9J4cFj2eM0MA4GA1Ud
-DwEB/wQEAwIFoDAMBgNVHRMBAf8EAjAAMF8GA1UdHwRYMFYwKaAnoCWGI2h0dHA6
-Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9jYTMtZmIuY3JsMCmgJ6AlhiNodHRwOi8vY3Js
-NC5kaWdpY2VydC5jb20vY2EzLWZiLmNybDCCAcYGA1UdIASCAb0wggG5MIIBtQYL
-YIZIAYb9bAEDAAEwggGkMDoGCCsGAQUFBwIBFi5odHRwOi8vd3d3LmRpZ2ljZXJ0
-LmNvbS9zc2wtY3BzLXJlcG9zaXRvcnkuaHRtMIIBZAYIKwYBBQUHAgIwggFWHoIB
-UgBBAG4AeQAgAHUAcwBlACAAbwBmACAAdABoAGkAcwAgAEMAZQByAHQAaQBmAGkA
-YwBhAHQAZQAgAGMAbwBuAHMAdABpAHQAdQB0AGUAcwAgAGEAYwBjAGUAcAB0AGEA
-bgBjAGUAIABvAGYAIAB0AGgAZQAgAEQAaQBnAGkAQwBlAHIAdAAgAEMAUAAvAEMA
-UABTACAAYQBuAGQAIAB0AGgAZQAgAFIAZQBsAHkAaQBuAGcAIABQAGEAcgB0AHkA
-IABBAGcAcgBlAGUAbQBlAG4AdAAgAHcAaABpAGMAaAAgAGwAaQBtAGkAdAAgAGwA
-aQBhAGIAaQBsAGkAdAB5ACAAYQBuAGQAIABhAHIAZQAgAGkAbgBjAG8AcgBwAG8A
-cgBhAHQAZQBkACAAaABlAHIAZQBpAG4AIABiAHkAIAByAGUAZgBlAHIAZQBuAGMA
-ZQAuMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjANBgkqhkiG9w0BAQUF
-AAOCAQEACOkTIdxMy11+CKrbGNLBSg5xHaTvu/v1wbyn3dO/mf68pPfJnX6ShPYy
-4XM4Vk0x4uaFaU4wAGke+nCKGi5dyg0Esg7nemLNKEJaFAJZ9enxZm334lSCeARy
-wlDtxULGOFRyGIZZPmbV2eNq5xdU/g3IuBEhL722mTpAye9FU/J8Wsnw54/gANyO
-Gzkewigua8ip8Lbs9Cht399yAfbfhUP1DrAm/xEcnHrzPr3cdCtOyJaM6SRPpRqH
-ITK5Nc06tat9lXVosSinT3KqydzxBYua9gCFFiR3x3DgZfvXkC6KDdUlDrNcJUub
-a1BHnLLP4mxTHL6faAXYd05IxNn/IA==
------END CERTIFICATE-----
------BEGIN CERTIFICATE-----
-MIIGVTCCBT2gAwIBAgIQCFH5WYFBRcq94CTiEsnCDjANBgkqhkiG9w0BAQUFADBs
-MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
-d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
-ZSBFViBSb290IENBMB4XDTA3MDQwMzAwMDAwMFoXDTIyMDQwMzAwMDAwMFowZjEL
-MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3
-LmRpZ2ljZXJ0LmNvbTElMCMGA1UEAxMcRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug
-Q0EtMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9hCikQH17+NDdR
-CPge+yLtYb4LDXBMUGMmdRW5QYiXtvCgFbsIYOBC6AUpEIc2iihlqO8xB3RtNpcv
-KEZmBMcqeSZ6mdWOw21PoF6tvD2Rwll7XjZswFPPAAgyPhBkWBATaccM7pxCUQD5
-BUTuJM56H+2MEb0SqPMV9Bx6MWkBG6fmXcCabH4JnudSREoQOiPkm7YDr6ictFuf
-1EutkozOtREqqjcYjbTCuNhcBoz4/yO9NV7UfD5+gw6RlgWYw7If48hl66l7XaAs
-zPw82W3tzPpLQ4zJ1LilYRyyQLYoEt+5+F/+07LJ7z20Hkt8HEyZNp496+ynaF4d
-32duXvsCAwEAAaOCAvcwggLzMA4GA1UdDwEB/wQEAwIBhjCCAcYGA1UdIASCAb0w
-ggG5MIIBtQYLYIZIAYb9bAEDAAIwggGkMDoGCCsGAQUFBwIBFi5odHRwOi8vd3d3
-LmRpZ2ljZXJ0LmNvbS9zc2wtY3BzLXJlcG9zaXRvcnkuaHRtMIIBZAYIKwYBBQUH
-AgIwggFWHoIBUgBBAG4AeQAgAHUAcwBlACAAbwBmACAAdABoAGkAcwAgAEMAZQBy
-AHQAaQBmAGkAYwBhAHQAZQAgAGMAbwBuAHMAdABpAHQAdQB0AGUAcwAgAGEAYwBj
-AGUAcAB0AGEAbgBjAGUAIABvAGYAIAB0AGgAZQAgAEQAaQBnAGkAQwBlAHIAdAAg
-AEMAUAAvAEMAUABTACAAYQBuAGQAIAB0AGgAZQAgAFIAZQBsAHkAaQBuAGcAIABQ
-AGEAcgB0AHkAIABBAGcAcgBlAGUAbQBlAG4AdAAgAHcAaABpAGMAaAAgAGwAaQBt
-AGkAdAAgAGwAaQBhAGIAaQBsAGkAdAB5ACAAYQBuAGQAIABhAHIAZQAgAGkAbgBj
-AG8AcgBwAG8AcgBhAHQAZQBkACAAaABlAHIAZQBpAG4AIABiAHkAIAByAGUAZgBl
-AHIAZQBuAGMAZQAuMA8GA1UdEwEB/wQFMAMBAf8wNAYIKwYBBQUHAQEEKDAmMCQG
-CCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wgY8GA1UdHwSBhzCB
-hDBAoD6gPIY6aHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFz
-c3VyYW5jZUVWUm9vdENBLmNybDBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQu
-Y29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDAfBgNVHSMEGDAW
-gBSxPsNpA/i/RwHUmCYaCALvY2QrwzAdBgNVHQ4EFgQUUOpzidsp+xCPnuUBINTe
-eZlIg/cwDQYJKoZIhvcNAQEFBQADggEBAF1PhPGoiNOjsrycbeUpSXfh59bcqdg1
-rslx3OXb3J0kIZCmz7cBHJvUV5eR13UWpRLXuT0uiT05aYrWNTf58SHEW0CtWakv
-XzoAKUMncQPkvTAyVab+hA4LmzgZLEN8rEO/dTHlIxxFVbdpCJG1z9fVsV7un5Tk
-1nq5GMO41lJjHBC6iy9tXcwFOPRWBW3vnuzoYTYMFEuFFFoMg08iXFnLjIpx2vrF
-EIRYzwfu45DC9fkpx1ojcflZtGQriLCnNseaIGHr+k61rmsb5OPs4tk8QUmoIKRU
-9ZKNu8BVIASm2LAXFszj0Mi0PeXZhMbT9m5teMl5Q+h6N/9cNUm/ocU=
------END CERTIFICATE-----
------BEGIN CERTIFICATE-----
-MIIEQjCCA6ugAwIBAgIEQoclDjANBgkqhkiG9w0BAQUFADCBwzELMAkGA1UEBhMC
-VVMxFDASBgNVBAoTC0VudHJ1c3QubmV0MTswOQYDVQQLEzJ3d3cuZW50cnVzdC5u
-ZXQvQ1BTIGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTElMCMGA1UECxMc
-KGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDE6MDgGA1UEAxMxRW50cnVzdC5u
-ZXQgU2VjdXJlIFNlcnZlciBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEy
-MjIxNTI3MjdaFw0xNDA3MjIxNTU3MjdaMGwxCzAJBgNVBAYTAlVTMRUwEwYDVQQK
-EwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xKzApBgNV
-BAMTIkRpZ2lDZXJ0IEhpZ2ggQXNzdXJhbmNlIEVWIFJvb3QgQ0EwggEiMA0GCSqG
-SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGzOVz5vvUu+UtLTKm3+WBP8nNJUm2cSrD
-1ZQ0Z6IKHLBfaaZAscS3so/QmKSpQVk609yU1jzbdDikSsxNJYL3SqVTEjju80lt
-cZF+Y7arpl/DpIT4T2JRvvjF7Ns4kuMG5QiRDMQoQVX7y1qJFX5x6DW/TXIJPb46
-OFBbdzEbjbPHJEWap6xtABRaBLe6E+tRCphBQSJOZWGHgUFQpnlcid4ZSlfVLuZd
-HFMsfpjNGgYWpGhz0DQEE1yhcdNafFXbXmThN4cwVgTlEbQpgBLxeTmIogIRfCdm
-t4i3ePLKCqg4qwpkwr9mXZWEwaElHoddGlALIBLMQbtuC1E4uEvLAgMBAAGjggET
-MIIBDzASBgNVHRMBAf8ECDAGAQH/AgEBMCcGA1UdJQQgMB4GCCsGAQUFBwMBBggr
-BgEFBQcDAgYIKwYBBQUHAwQwMwYIKwYBBQUHAQEEJzAlMCMGCCsGAQUFBzABhhdo
-dHRwOi8vb2NzcC5lbnRydXN0Lm5ldDAzBgNVHR8ELDAqMCigJqAkhiJodHRwOi8v
-Y3JsLmVudHJ1c3QubmV0L3NlcnZlcjEuY3JsMB0GA1UdDgQWBBSxPsNpA/i/RwHU
-mCYaCALvY2QrwzALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAU8BdiE1U9s/8KAGv7
-UISX8+1i0BowGQYJKoZIhvZ9B0EABAwwChsEVjcuMQMCAIEwDQYJKoZIhvcNAQEF
-BQADgYEAUuVY7HCc/9EvhaYzC1rAIo348LtGIiMduEl5Xa24G8tmJnDioD2GU06r
-1kjLX/ktCdpdBgXadbjtdrZXTP59uN0AXlsdaTiFufsqVLPvkp5yMnqnuI3E2o6p
-NpAkoQSbB6kUCNnXcW26valgOjDLZFOnr241QiwdBAJAAE/rRa8=
------END CERTIFICATE-----
------BEGIN CERTIFICATE-----
-MIIE2DCCBEGgAwIBAgIEN0rSQzANBgkqhkiG9w0BAQUFADCBwzELMAkGA1UEBhMC
-VVMxFDASBgNVBAoTC0VudHJ1c3QubmV0MTswOQYDVQQLEzJ3d3cuZW50cnVzdC5u
-ZXQvQ1BTIGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTElMCMGA1UECxMc
-KGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDE6MDgGA1UEAxMxRW50cnVzdC5u
-ZXQgU2VjdXJlIFNlcnZlciBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw05OTA1
-MjUxNjA5NDBaFw0xOTA1MjUxNjM5NDBaMIHDMQswCQYDVQQGEwJVUzEUMBIGA1UE
-ChMLRW50cnVzdC5uZXQxOzA5BgNVBAsTMnd3dy5lbnRydXN0Lm5ldC9DUFMgaW5j
-b3JwLiBieSByZWYuIChsaW1pdHMgbGlhYi4pMSUwIwYDVQQLExwoYykgMTk5OSBF
-bnRydXN0Lm5ldCBMaW1pdGVkMTowOAYDVQQDEzFFbnRydXN0Lm5ldCBTZWN1cmUg
-U2VydmVyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGdMA0GCSqGSIb3DQEBAQUA
-A4GLADCBhwKBgQDNKIM0VBuJ8w+vN5Ex/68xYMmo6LIQaO2f55M28Qpku0f1BBc/
-I0dNxScZgSYMVHINiC3ZH5oSn7yzcdOAGT9HZnuMNSjSuQrfJNqc1lB5gXpa0zf3
-wkrYKZImZNHkmGw6AIr1NJtl+O3jEP/9uElY3KDegjlrgbEWGWG5VLbmQwIBA6OC
-AdcwggHTMBEGCWCGSAGG+EIBAQQEAwIABzCCARkGA1UdHwSCARAwggEMMIHeoIHb
-oIHYpIHVMIHSMQswCQYDVQQGEwJVUzEUMBIGA1UEChMLRW50cnVzdC5uZXQxOzA5
-BgNVBAsTMnd3dy5lbnRydXN0Lm5ldC9DUFMgaW5jb3JwLiBieSByZWYuIChsaW1p
-dHMgbGlhYi4pMSUwIwYDVQQLExwoYykgMTk5OSBFbnRydXN0Lm5ldCBMaW1pdGVk
-MTowOAYDVQQDEzFFbnRydXN0Lm5ldCBTZWN1cmUgU2VydmVyIENlcnRpZmljYXRp
-b24gQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMCmgJ6AlhiNodHRwOi8vd3d3LmVu
-dHJ1c3QubmV0L0NSTC9uZXQxLmNybDArBgNVHRAEJDAigA8xOTk5MDUyNTE2MDk0
-MFqBDzIwMTkwNTI1MTYwOTQwWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAU8Bdi
-E1U9s/8KAGv7UISX8+1i0BowHQYDVR0OBBYEFPAXYhNVPbP/CgBr+1CEl/PtYtAa
-MAwGA1UdEwQFMAMBAf8wGQYJKoZIhvZ9B0EABAwwChsEVjQuMAMCBJAwDQYJKoZI
-hvcNAQEFBQADgYEAkNwwAvpkdMKnCqV8IY00F6j7Rw7/JXyNEwr75Ji174z4xRAN
-95K+8cPV1ZVqBLssziY2ZcgxxufuP+NXdYR6Ee9GTxj005i7qIcyunL2POI9n9cd
-2cNgQ4xYDiKWL2KjLB+6rQXvqzJ4h6BUcxm1XAX5Uj5tLUUL9wqT6u0G+bI=
------END CERTIFICATE-----
+++ /dev/null
-<?php
-/**
- * StatusNet, the distributed open-source microblogging tool
- *
- * Class for communicating with Facebook
- *
- * PHP version 5
- *
- * LICENCE: This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Plugin
- * @package StatusNet
- * @author Craig Andrews <candrews@integralblue.com>
- * @author Zach Copley <zach@status.net>
- * @copyright 2009-2011 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-
-if (!defined('STATUSNET')) {
- exit(1);
-}
-
-/**
- * Class for communication with Facebook
- *
- * @category Plugin
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-class Facebookclient
-{
- protected $facebook = null; // Facebook Graph client obj
- protected $flink = null; // Foreign_link StatusNet -> Facebook
- protected $notice = null; // The user's notice
- protected $user = null; // Sender of the notice
-
- /**
- *
- * @param Notice $notice the notice to manipulate
- * @param Profile $profile local user to act as; if left empty, the notice's poster will be used.
- */
- function __construct($notice, $profile=null)
- {
- $this->facebook = self::getFacebook();
-
- if (empty($this->facebook)) {
- throw new FacebookApiException(
- "Could not create Facebook client! Bad application ID or secret?"
- );
- }
-
- $this->notice = $notice;
-
- $profile_id = $profile ? $profile->id : $notice->profile_id;
- try {
- $this->flink = Foreign_link::getByUserID($profile_id, FACEBOOK_SERVICE);
- $this->user = $this->flink->getUser();
- } catch (NoResultException $e) {
- // at least $this->flink could've gotten set to something,
- // but the logic that was here before didn't care, so let's not care either
- }
- }
-
- /*
- * Get an instance of the Facebook Graph SDK object
- *
- * @param string $appId Application
- * @param string $secret Facebook API secret
- *
- * @return Facebook A Facebook SDK obj
- */
- static function getFacebook($appId = null, $secret = null)
- {
- // Check defaults and configuration for application ID and secret
- if (empty($appId)) {
- $appId = common_config('facebook', 'appid');
- }
-
- if (empty($secret)) {
- $secret = common_config('facebook', 'secret');
- }
-
- // If there's no app ID and secret set in the local config, look
- // for a global one
- if (empty($appId) || empty($secret)) {
- $appId = common_config('facebook', 'global_appid');
- $secret = common_config('facebook', 'global_secret');
- }
-
- if (empty($appId)) {
- common_log(
- LOG_WARNING,
- "Couldn't find Facebook application ID!",
- __FILE__
- );
- }
-
- if (empty($secret)) {
- common_log(
- LOG_WARNING,
- "Couldn't find Facebook application ID!",
- __FILE__
- );
- }
-
- return new Facebook(
- array(
- 'appId' => $appId,
- 'secret' => $secret,
- 'cookie' => true
- )
- );
- }
-
- /*
- * Broadcast a notice to Facebook
- *
- * @param Notice $notice the notice to send
- */
- static function facebookBroadcastNotice($notice)
- {
- $client = new Facebookclient($notice);
- return $client->sendNotice();
- }
-
- /*
- * Should the notice go to Facebook?
- */
- function isFacebookBound() {
-
- if (empty($this->flink)) {
- // User hasn't setup bridging
- return false;
- }
-
- // Avoid a loop
- if ($this->notice->source == 'Facebook') {
- common_log(
- LOG_INFO,
- sprintf(
- 'Skipping notice %d because its source is Facebook.',
- $this->notice->id
- ),
- __FILE__
- );
- return false;
- }
-
- // If the user does not want to broadcast to Facebook, move along
- if (!($this->flink->noticesync & FOREIGN_NOTICE_SEND == FOREIGN_NOTICE_SEND)) {
- common_log(
- LOG_INFO,
- sprintf(
- 'Skipping notice %d because user has FOREIGN_NOTICE_SEND bit off.',
- $this->notice->id
- ),
- __FILE__
- );
- return false;
- }
-
- // If it's not a reply, or if the user WANTS to send @-replies,
- // then, yeah, it can go to Facebook.
-
- if (empty($this->notice->reply_to) ||
- ($this->flink->noticesync & FOREIGN_NOTICE_SEND_REPLY)) {
- return true;
- }
-
- return false;
- }
-
- /*
- * Determine whether we should send this notice using the Graph API or the
- * old REST API and then dispatch
- */
- function sendNotice()
- {
- // If there's nothing in the credentials field try to send via
- // the Old Rest API
-
- if ($this->isFacebookBound()) {
- common_debug("notice is facebook bound", __FILE__);
- if (empty($this->flink->credentials)) {
- return $this->sendOldRest();
- } else {
-
- // Otherwise we most likely have an access token
- return $this->sendGraph();
- }
- }
-
- // dequeue
- return true;
- }
-
- /*
- * Send a notice to Facebook using the Graph API
- */
- function sendGraph()
- {
- try {
-
- $fbuid = $this->flink->foreign_id;
-
- common_debug(
- sprintf(
- "Attempting use Graph API to post notice %d as a stream item for %s (%d), fbuid %d",
- $this->notice->id,
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
-
- $params = array(
- 'access_token' => $this->flink->credentials,
- // XXX: Need to worrry about length of the message?
- 'message' => $this->notice->content
- );
-
- $attachments = $this->notice->attachments();
-
- if (!empty($attachments)) {
-
- // We can only send one attachment with the Graph API :(
-
- $first = array_shift($attachments);
-
- if (substr($first->mimetype, 0, 6) == 'image/'
- || in_array(
- $first->mimetype,
- array('application/x-shockwave-flash', 'audio/mpeg' ))) {
-
- $params['picture'] = $first->url;
- $params['caption'] = 'Click for full size';
- $params['source'] = $first->url;
- }
-
- }
-
- $result = $this->facebook->api(
- sprintf('/%s/feed', $fbuid), 'post', $params
- );
-
- // Save a mapping
- Notice_to_item::saveNew($this->notice->id, $result['id']);
-
- common_log(
- LOG_INFO,
- sprintf(
- "Posted notice %d as a stream item for %s (%d), fbuid %d",
- $this->notice->id,
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
-
- } catch (FacebookApiException $e) {
- return $this->handleFacebookError($e);
- }
-
- return true;
- }
-
- /*
- * Send a notice to Facebook using the deprecated Old REST API. We need this
- * for backwards compatibility. Users who signed up for Facebook bridging
- * using the old Facebook Canvas application do not have an OAuth 2.0
- * access token.
- */
- function sendOldRest()
- {
- try {
-
- $canPublish = $this->checkPermission('publish_stream');
- $canUpdate = $this->checkPermission('status_update');
-
- // We prefer to use stream.publish, because it can handle
- // attachments and returns the ID of the published item
-
- if ($canPublish == 1) {
- $this->restPublishStream();
- } else if ($canUpdate == 1) {
- // as a last resort we can just update the user's "status"
- $this->restStatusUpdate();
- } else {
-
- $msg = 'Not sending notice %d to Facebook because user %s '
- . '(%d), fbuid %d, does not have \'status_update\' '
- . 'or \'publish_stream\' permission.';
-
- common_log(
- LOG_WARNING,
- sprintf(
- $msg,
- $this->notice->id,
- $this->user->nickname,
- $this->user->id,
- $this->flink->foreign_id
- ),
- __FILE__
- );
- }
-
- } catch (FacebookApiException $e) {
- return $this->handleFacebookError($e);
- }
-
- return true;
- }
-
- /*
- * Query Facebook to to see if a user has permission
- *
- *
- *
- * @param $permission the permission to check for - must be either
- * public_stream or status_update
- *
- * @return boolean result
- */
- function checkPermission($permission)
- {
- if (!in_array($permission, array('publish_stream', 'status_update'))) {
- // TRANS: Server exception thrown when permission check fails.
- throw new ServerException(_('No such permission!'));
- }
-
- $fbuid = $this->flink->foreign_id;
-
- common_debug(
- sprintf(
- 'Checking for %s permission for user %s (%d), fbuid %d',
- $permission,
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
-
- $hasPermission = $this->facebook->api(
- array(
- 'method' => 'users.hasAppPermission',
- 'ext_perm' => $permission,
- 'uid' => $fbuid
- )
- );
-
- if ($hasPermission == 1) {
-
- common_debug(
- sprintf(
- '%s (%d), fbuid %d has %s permission',
- $permission,
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
-
- return true;
-
- } else {
-
- $logMsg = '%s (%d), fbuid $fbuid does NOT have %s permission.'
- . 'Facebook returned: %s';
-
- common_debug(
- sprintf(
- $logMsg,
- $this->user->nickname,
- $this->user->id,
- $permission,
- $fbuid,
- var_export($result, true)
- ),
- __FILE__
- );
-
- return false;
- }
- }
-
- /*
- * Handle a Facebook API Exception
- *
- * @param FacebookApiException $e the exception
- *
- */
- function handleFacebookError($e)
- {
- $fbuid = $this->flink->foreign_id;
- $errmsg = $e->getMessage();
- $code = $e->getCode();
-
- // The Facebook PHP SDK seems to always set the code attribute
- // of the Exception to 0; they put the real error code in
- // the message. Gar!
- if ($code == 0) {
- preg_match('/^\(#(?<code>\d+)\)/', $errmsg, $matches);
- $code = $matches['code'];
- }
-
- // XXX: Check for any others?
- switch($code) {
- case 100: // Invalid parameter
- $msg = 'Facebook claims notice %d was posted with an invalid '
- . 'parameter (error code 100 - %s) Notice details: '
- . '[nickname=%s, user id=%d, fbuid=%d, content="%s"]. '
- . 'Dequeing.';
- common_log(
- LOG_ERR, sprintf(
- $msg,
- $this->notice->id,
- $errmsg,
- $this->user->nickname,
- $this->user->id,
- $fbuid,
- $this->notice->content
- ),
- __FILE__
- );
- return true;
- break;
- case 200: // Permissions error
- case 250: // Updating status requires the extended permission status_update
- $this->disconnect();
- return true; // dequeue
- break;
- case 341: // Feed action request limit reached
- $msg = '%s (userid=%d, fbuid=%d) has exceeded his/her limit '
- . 'for posting notices to Facebook today. Dequeuing '
- . 'notice %d';
- common_log(
- LOG_INFO, sprintf(
- $msg,
- $user->nickname,
- $user->id,
- $fbuid,
- $this->notice->id
- ),
- __FILE__
- );
- // @todo FIXME: We want to rety at a later time when the throttling has expired
- // instead of just giving up.
- return true;
- break;
- default:
- $msg = 'Facebook returned an error we don\'t know how to deal with '
- . 'when posting notice %d. Error code: %d, error message: "%s"'
- . ' Notice details: [nickname=%s, user id=%d, fbuid=%d, '
- . 'notice content="%s"]. Dequeing.';
- common_log(
- LOG_ERR, sprintf(
- $msg,
- $this->notice->id,
- $code,
- $errmsg,
- $this->user->nickname,
- $this->user->id,
- $fbuid,
- $this->notice->content
- ),
- __FILE__
- );
- return true; // dequeue
- break;
- }
- }
-
- /*
- * Publish a notice to Facebook as a status update
- *
- * This is the least preferable way to send a notice to Facebook because
- * it doesn't support attachments and the API method doesn't return
- * the ID of the post on Facebook.
- *
- */
- function restStatusUpdate()
- {
- $fbuid = $this->flink->foreign_id;
-
- common_debug(
- sprintf(
- "Attempting to post notice %d as a status update for %s (%d), fbuid %d",
- $this->notice->id,
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
-
- $result = $this->facebook->api(
- array(
- 'method' => 'users.setStatus',
- 'status' => $this->formatMessage(),
- 'status_includes_verb' => true,
- 'uid' => $fbuid
- )
- );
-
- if ($result == 1) { // 1 is success
-
- common_log(
- LOG_INFO,
- sprintf(
- "Posted notice %s as a status update for %s (%d), fbuid %d",
- $this->notice->id,
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
-
- // There is no item ID returned for status update so we can't
- // save a Notice_to_item mapping
-
- } else {
-
- $msg = sprintf(
- "Error posting notice %s as a status update for %s (%d), fbuid %d - error code: %s",
- $this->notice->id,
- $this->user->nickname,
- $this->user->id,
- $fbuid,
- $result // will contain 0, or an error
- );
-
- throw new FacebookApiException($msg, $result);
- }
- }
-
- /*
- * Publish a notice to a Facebook user's stream using the old REST API
- */
- function restPublishStream()
- {
- $fbuid = $this->flink->foreign_id;
-
- common_debug(
- sprintf(
- 'Attempting to post notice %d as stream item for %s (%d) fbuid %d',
- $this->notice->id,
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
-
- $fbattachment = $this->formatAttachments();
-
- $result = $this->facebook->api(
- array(
- 'method' => 'stream.publish',
- 'message' => $this->formatMessage(),
- 'attachment' => $fbattachment,
- 'uid' => $fbuid
- )
- );
-
- if (!empty($result)) { // result will contain the item ID
- // Save a mapping
- Notice_to_item::saveNew($this->notice->id, $result);
-
- common_log(
- LOG_INFO,
- sprintf(
- 'Posted notice %d as a %s for %s (%d), fbuid %d',
- $this->notice->id,
- empty($fbattachment) ? 'stream item' : 'stream item with attachment',
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
- } else {
-
- $msg = sprintf(
- 'Could not post notice %d as a %s for %s (%d), fbuid %d - error code: %s',
- $this->notice->id,
- empty($fbattachment) ? 'stream item' : 'stream item with attachment',
- $this->user->nickname,
- $this->user->id,
- $result, // result will contain an error code
- $fbuid
- );
-
- throw new FacebookApiException($msg, $result);
- }
- }
-
- /*
- * Format the text message of a stream item so it's appropriate for
- * sending to Facebook. If the notice is too long, truncate it, and
- * add a linkback to the original notice at the end.
- *
- * @return String $txt the formated message
- */
- function formatMessage()
- {
- // Start with the plaintext source of this notice...
- $txt = $this->notice->content;
-
- // Facebook has a 420-char hardcoded max.
- if (mb_strlen($statustxt) > 420) {
- $noticeUrl = common_shorten_url($this->notice->getUrl());
- $urlLen = mb_strlen($noticeUrl);
- $txt = mb_substr($statustxt, 0, 420 - ($urlLen + 3)) . ' … ' . $noticeUrl;
- }
-
- return $txt;
- }
-
- /*
- * Format attachments for the old REST API stream.publish method
- *
- * Note: Old REST API supports multiple attachments per post
- *
- */
- function formatAttachments()
- {
- $attachments = $this->notice->attachments();
-
- $fbattachment = array();
- $fbattachment['media'] = array();
-
- foreach($attachments as $attachment)
- {
- try {
- $enclosure = $attachment->getEnclosure();
- $fbmedia = $this->getFacebookMedia($enclosure);
- } catch (ServerException $e) {
- $fbmedia = $this->getFacebookMedia($attachment);
- }
- if($fbmedia){
- $fbattachment['media'][]=$fbmedia;
- }else{
- $fbattachment['name'] = ($attachment->title ?
- $attachment->title : $attachment->url);
- $fbattachment['href'] = $attachment->url;
- }
- }
- if(count($fbattachment['media'])>0){
- unset($fbattachment['name']);
- unset($fbattachment['href']);
- }
- return $fbattachment;
- }
-
- /**
- * given a File objects, returns an associative array suitable for Facebook media
- */
- function getFacebookMedia($attachment)
- {
- $fbmedia = array();
-
- if (strncmp($attachment->mimetype, 'image/', strlen('image/')) == 0) {
- $fbmedia['type'] = 'image';
- $fbmedia['src'] = $attachment->url;
- $fbmedia['href'] = $attachment->url;
- } else if ($attachment->mimetype == 'audio/mpeg') {
- $fbmedia['type'] = 'mp3';
- $fbmedia['src'] = $attachment->url;
- }else if ($attachment->mimetype == 'application/x-shockwave-flash') {
- $fbmedia['type'] = 'flash';
-
- // http://wiki.developers.facebook.com/index.php/Attachment_%28Streams%29
- // says that imgsrc is required... but we have no value to put in it
- // $fbmedia['imgsrc']='';
-
- $fbmedia['swfsrc'] = $attachment->url;
- }else{
- return false;
- }
- return $fbmedia;
- }
-
- /*
- * Disconnect a user from Facebook by deleting his Foreign_link.
- * Notifies the user his account has been disconnected by email.
- */
- function disconnect()
- {
- $fbuid = $this->flink->foreign_id;
-
- common_log(
- LOG_INFO,
- sprintf(
- 'Removing Facebook link for %s (%d), fbuid %d',
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
-
- $result = $this->flink->delete();
-
- if (empty($result)) {
- common_log(
- LOG_ERR,
- sprintf(
- 'Could not remove Facebook link for %s (%d), fbuid %d',
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
- common_log_db_error($flink, 'DELETE', __FILE__);
- }
-
- // Notify the user that we are removing their Facebook link
- if (!empty($this->user->email)) {
- $result = $this->mailFacebookDisconnect();
-
- if (!$result) {
- $msg = 'Unable to send email to notify %s (%d), fbuid %d '
- . 'about his/her Facebook link being removed.';
-
- common_log(
- LOG_WARNING,
- sprintf(
- $msg,
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
- }
- } else {
- $msg = 'Unable to send email to notify %s (%d), fbuid %d '
- . 'about his/her Facebook link being removed because the '
- . 'user has not set an email address.';
-
- common_log(
- LOG_WARNING,
- sprintf(
- $msg,
- $this->user->nickname,
- $this->user->id,
- $fbuid
- ),
- __FILE__
- );
- }
- }
-
- /**
- * Send a mail message to notify a user that her Facebook link
- * has been terminated.
- *
- * @return boolean success flag
- */
- function mailFacebookDisconnect()
- {
- $profile = $this->user->getProfile();
-
- $siteName = common_config('site', 'name');
-
- common_switch_locale($this->user->language);
-
- // TRANS: E-mail subject.
- $subject = _m('Your Facebook connection has been removed');
-
- // TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
- $msg = _m("Hi %1\$s,\n\n".
- "We are sorry to inform you we are unable to publish your notice to\n".
- "Facebook, and have removed the connection between your %2\$s account and\n".
- "Facebook.\n\n".
- "This may have happened because you have removed permission for %2\$s\n".
- "to post on your behalf, or perhaps you have deactivated your Facebook\n".
- "account. You can reconnect your %2\$s account to Facebook at any time by\n".
- "logging in with Facebook again.\n\n".
- "Sincerely,\n\n".
- "%2\$s\n");
-
- $body = sprintf(
- $msg,
- $this->user->nickname,
- $siteName
- );
-
- common_switch_locale();
-
- $result = mail_to_user($this->user, $subject, $body);
-
- if (empty($this->user->password)) {
- $result = self::emailWarn($this->user);
- }
-
- return $result;
- }
-
- /*
- * Send the user an email warning that their account has been
- * disconnected and he/she has no way to login and must contact
- * the site administrator for help.
- *
- * @param User $user the deauthorizing user
- *
- */
- static function emailWarn($user)
- {
- $profile = $user->getProfile();
-
- $siteName = common_config('site', 'name');
- $siteEmail = common_config('site', 'email');
-
- if (empty($siteEmail)) {
- common_log(
- LOG_WARNING,
- "No site email address configured. Please set one."
- );
- }
-
- common_switch_locale($user->language);
-
- // TRANS: E-mail subject. %s is the StatusNet sitename.
- $subject = _m('Contact the %s administrator to retrieve your account');
-
- // TRANS: E-mail body. %1$s is a username,
- // TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail address.
- $msg = _m("Hi %1\$s,\n\n".
- "We have noticed you have deauthorized the Facebook connection for your\n".
- "%2\$s account. You have not set a password for your %2\$s account yet, so\n".
- "you will not be able to login. If you wish to continue using your %2\$s\n".
- "account, please contact the site administrator (%3\$s) to set a password.\n\n".
- "Sincerely,\n\n".
- "%2\$s\n");
-
- $body = sprintf(
- $msg,
- $user->nickname,
- $siteName,
- $siteEmail
- );
-
- common_switch_locale();
-
- if (mail_to_user($user, $subject, $body)) {
- common_log(
- LOG_INFO,
- sprintf(
- 'Sent account lockout warning to %s (%d)',
- $user->nickname,
- $user->id
- ),
- __FILE__
- );
- } else {
- common_log(
- LOG_WARNING,
- sprintf(
- 'Unable to send account lockout warning to %s (%d)',
- $user->nickname,
- $user->id
- ),
- __FILE__
- );
- }
- }
-
- /*
- * Check to see if we have a mapping to a copy of this notice
- * on Facebook
- *
- * @param Notice $notice the notice to check
- *
- * @return mixed null if it can't find one, or the id of the Facebook
- * stream item
- */
- static function facebookStatusId($notice)
- {
- $n2i = Notice_to_item::getKV('notice_id', $notice->id);
-
- if (empty($n2i)) {
- return null;
- } else {
- return $n2i->item_id;
- }
- }
-
- /*
- * Save a Foreign_user record of a Facebook user
- *
- * @param object $fbuser a Facebook Graph API user obj
- * See: http://developers.facebook.com/docs/reference/api/user
- * @return mixed $result Id or key
- *
- */
- static function addFacebookUser($fbuser)
- {
- // remove any existing, possibly outdated, record
- try {
- $fuser = Foreign_user::getForeignUser($fbuser->id, FACEBOOK_SERVICE);
- $result = $fuser->delete();
- if ($result != false) {
- common_log(
- LOG_INFO,
- sprintf(
- 'Removed old Facebook user: %s, fbuid %d',
- $fbuid->name,
- $fbuid->id
- ),
- __FILE__
- );
- }
- } catch (NoResultException $e) {
- // no old foreign users exist for this id
- }
-
- $fuser = new Foreign_user();
-
- $fuser->nickname = $fbuser->username;
- $fuser->uri = $fbuser->link;
- $fuser->id = $fbuser->id;
- $fuser->service = FACEBOOK_SERVICE;
- $fuser->created = common_sql_now();
-
- $result = $fuser->insert();
-
- if (empty($result)) {
- common_log(
- LOG_WARNING,
- sprintf(
- 'Failed to add new Facebook user: %s, fbuid %d',
- $fbuser->username,
- $fbuser->id
- ),
- __FILE__
- );
-
- common_log_db_error($fuser, 'INSERT', __FILE__);
- } else {
- common_log(
- LOG_INFO,
- sprintf(
- 'Added new Facebook user: %s, fbuid %d',
- $fbuser->name,
- $fbuser->id
- ),
- __FILE__
- );
- }
-
- return $result;
- }
-
- /*
- * Remove an item from a Facebook user's feed if we have a mapping
- * for it.
- */
- function streamRemove()
- {
- $n2i = Notice_to_item::getKV('notice_id', $this->notice->id);
-
- if (!empty($this->flink) && !empty($n2i)) {
- try {
- $result = $this->facebook->api(
- array(
- 'method' => 'stream.remove',
- 'post_id' => $n2i->item_id,
- 'uid' => $this->flink->foreign_id
- )
- );
-
- if (!empty($result) && result == true) {
- common_log(
- LOG_INFO,
- sprintf(
- 'Deleted Facebook item: %s for %s (%d), fbuid %d',
- $n2i->item_id,
- $this->user->nickname,
- $this->user->id,
- $this->flink->foreign_id
- ),
- __FILE__
- );
-
- $n2i->delete();
-
- } else {
- throw new FaceboookApiException(var_export($result, true));
- }
- } catch (FacebookApiException $e) {
- common_log(
- LOG_WARNING,
- sprintf(
- 'Could not deleted Facebook item: %s for %s (%d), '
- . 'fbuid %d - (API error: %s) item already deleted '
- . 'on Facebook? ',
- $n2i->item_id,
- $this->user->nickname,
- $this->user->id,
- $this->flink->foreign_id,
- $e
- ),
- __FILE__
- );
- }
- }
- }
-
- /*
- * Like an item in a Facebook user's feed if we have a mapping
- * for it.
- */
- function like()
- {
- $n2i = Notice_to_item::getKV('notice_id', $this->notice->id);
-
- if (!empty($this->flink) && !empty($n2i)) {
- try {
- $result = $this->facebook->api(
- array(
- 'method' => 'stream.addlike',
- 'post_id' => $n2i->item_id,
- 'uid' => $this->flink->foreign_id
- )
- );
-
- if (!empty($result) && result == true) {
- common_log(
- LOG_INFO,
- sprintf(
- 'Added like for item: %s for %s (%d), fbuid %d',
- $n2i->item_id,
- $this->user->nickname,
- $this->user->id,
- $this->flink->foreign_id
- ),
- __FILE__
- );
- } else {
- throw new FacebookApiException(var_export($result, true));
- }
- } catch (FacebookApiException $e) {
- common_log(
- LOG_WARNING,
- sprintf(
- 'Could not like Facebook item: %s for %s (%d), '
- . 'fbuid %d (API error: %s)',
- $n2i->item_id,
- $this->user->nickname,
- $this->user->id,
- $this->flink->foreign_id,
- $e
- ),
- __FILE__
- );
- }
- }
- }
-
- /*
- * Unlike an item in a Facebook user's feed if we have a mapping
- * for it.
- */
- function unLike()
- {
- $n2i = Notice_to_item::getKV('notice_id', $this->notice->id);
-
- if (!empty($this->flink) && !empty($n2i)) {
- try {
- $result = $this->facebook->api(
- array(
- 'method' => 'stream.removeLike',
- 'post_id' => $n2i->item_id,
- 'uid' => $this->flink->foreign_id
- )
- );
-
- if (!empty($result) && result == true) {
- common_log(
- LOG_INFO,
- sprintf(
- 'Removed like for item: %s for %s (%d), fbuid %d',
- $n2i->item_id,
- $this->user->nickname,
- $this->user->id,
- $this->flink->foreign_id
- ),
- __FILE__
- );
-
- } else {
- throw new FacebookApiException(var_export($result, true));
- }
- } catch (FacebookApiException $e) {
- common_log(
- LOG_WARNING,
- sprintf(
- 'Could not remove like for Facebook item: %s for %s '
- . '(%d), fbuid %d (API error: %s)',
- $n2i->item_id,
- $this->user->nickname,
- $this->user->id,
- $this->flink->foreign_id,
- $e
- ),
- __FILE__
- );
- }
- }
- }
-}
+++ /dev/null
-<?php
-/**
- * StatusNet, the distributed open-source microblogging tool
- *
- * Queuehandler for Facebook transport
- *
- * PHP version 5
- *
- * LICENCE: This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * @category Plugin
- * @package StatusNet
- * @author Zach Copley <zach@status.net>
- * @copyright 2010 StatusNet, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link http://status.net/
- */
-
-if (!defined('STATUSNET')) {
- exit(1);
-}
-
-class FacebookQueueHandler extends QueueHandler
-{
- function transport()
- {
- return 'facebook';
- }
-
- function handle($notice)
- {
- if ($notice->isLocal()) {
- return Facebookclient::facebookBroadcastNotice($notice);
- }
- return true;
- }
-}
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# 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"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-27 16:31+0100\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"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password, "
-"email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set "
-"a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Afrikaans (http://www.transifex.com/gnu-social/gnu-social/language/af/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: af\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Stoor"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "U is reeds aangeteken."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Wagwoord"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registrasie nie toegelaat nie."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Ongeldige gebruikersnaam of wagwoord."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Arabic (http://www.transifex.com/gnu-social/gnu-social/language/ar/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "إعدادات تكامل فيسبك"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "إعدادات تكامل فيسبك"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "احفظ"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "احفظ إعدادات فيسبك."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "والج بالفعل."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "لُج بحسابك على فيسبك"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "لُج بفيسبك"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "لُج بفيسبك."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "يجب أن تلج إلى فيسبك لتسجل حسابًا محليًا باستخدام فيسبك."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "لا يمكن أن تسجل ما لم توافق على الرخصة."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "حدث خطأ غير معروف."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "ضبط فيسبك"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "خيارات الربط"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "تخضع نصوصي وملفاتي ل%s إلا البيانات الخاصة التالية: كلمة السر وعنوان البريد الإلكتروني وعنوان المراسلة الفورية ورقم الهاتف."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "أنشئ حسابًا جديدًا"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "أنشئ مستخدمًا جديدًا بهذا الاسم المستعار."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "الاسم المستعار الجديد"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 حرفًا إنجليزيًا أو رقمًا، بدون نقاط أو مسافات."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "أنشئ"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "اربط حسابا موجودا"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "الاسم المستعار الموجود"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "كلمة السر"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "اربط"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "لا يُسمح بالتسجيل."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "رمز الدعوة غير صالح."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "خطأ في ربط المستخدم بفيسبك."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "اسم مستخدم أو كلمة سر غير صالحة."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "إعدادات فيسبك"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "إعدادات فيسبك"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "مستخدم فيسبك مربوط"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "انشر إشعاراتي على فيسبك."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "أرسل الردود \"@\" إلى فيسبك."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "اقطع ربط حسابي بفيسبك."
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "قطع ربط حسابك بفيسبك سيجعل دخولك مستحيلا! الرجاء [تعيين كلمة سر](%s) أولا."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "أبقِ حسابك على %1$s واقطع الربط بفيسبك. سوف يتعين عليك استخدام كلمة السر على %1$s للدخول."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "اقطع الربط"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "حُفظت تفضيلات المزامنة."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "تعذر حذف ارتباط فيسبك."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "لقد قطعت الربط بفيسبك."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "فيسبك"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "لُج أو سجّل باستخدام فيسبك."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "ضبط تكامل فيسبك."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "إعدادات فيسبك."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "أزيل ارتباطك بفيسبك"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Arabic (Egypt) (http://www.transifex.com/gnu-social/gnu-social/language/ar_EG/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ar_EG\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "أرسل"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "والج بالفعل."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "كلمه السر"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "لا يُسمح بالتسجيل."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "اسم مستخدم أو كلمه سر غير صالحه."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Asturian (http://www.transifex.com/gnu-social/gnu-social/language/ast/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ast\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Belarusian (Tarask) (http://www.transifex.com/gnu-social/gnu-social/language/be@tarask/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: be@tarask\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Захаваць"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Ужо ўвайшлі ў сыстэму."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Узьнікла праблема з ключом Вашай сэсіі. Калі ласка, паспрабуйце зноў."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Вы ня можаце стварыць рахунак, калі ня згодзіцеся з ліцэнзійным пагадненьнем."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Мой тэкст і файлы даступныя на ўмовах %s за выключэньнем гэтых прыватных зьвестак: паролю, адрасу электроннай пошты, IM-адрасу і нумару тэлефона."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 малых літараў ці лічбаў, без сымбаляў пунктуацыі і прагалаў."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Пароль"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Стварэньне рахунку не дазволенае."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Няслушнае імя карыстальніка ці пароль."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Bulgarian (http://www.transifex.com/gnu-social/gnu-social/language/bg/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: bg\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Запазване"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Вече сте влезли."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Парола"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Записването не е позволено."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Неправилно име или парола."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Bengali (India) (http://www.transifex.com/gnu-social/gnu-social/language/bn_IN/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: bn_IN\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Breton (http://www.transifex.com/gnu-social/gnu-social/language/br/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: br\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Arventennoù enframmañ Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Arventennoù enframmañ Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Arventennoù poellad Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "ID ar poellad"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID ho poellad Facebook."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Kuzh"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Enrollañ"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Enrollañ arventennoù Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Kevreet oc'h dija."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Kevreit gant ho kont Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Kevreañ gant Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Kevreañ gant Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Un implijer lec'hel liammet d'ar gont Facebook-se a zo dija."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "C'hoarvezet ez eus ur gudenn dianav."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Kefluniadur Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Dibarzhioù kevreañ"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Krouiñ ur gont nevez"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Krouiñ un implijer nevez gant al lesanv-se."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Lesanv nevez"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Krouiñ"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Kevreañ d'ur gont a zo dioutañ"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Lesanv a zo dioutañ"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Ger-tremen"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Kevreañ"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "N'eo ket aotreet krouiñ kontoù."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "N'eo ket reizh ar c'hod pedadenn."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Anv implijer pe ger-tremen direizh."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Arventennoù Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Arventennoù Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Implijer Facebook kevreet"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Kas respontoù \"@\" da Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Digevreañ ma c'hont deus Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Digevrañ"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Digevreet ho peus deus Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Catalan (http://www.transifex.com/gnu-social/gnu-social/language/ca/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ca\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Paràmetres d'integració del Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Paràmetres d'integració del Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "El títol de la llicència no és vàlid. La longitud màxima és 255 caràcters."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "La clau secreta del Facebook no és vàlida. La longitud màxima són 255 caràcters."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Paràmetres d'aplicació del Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "ID de l'aplicació"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID de la vostra aplicació de Facebook."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Clau secreta"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Clau secreta de l'aplicació."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Desa"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Desa els paràmetres del Facebook"
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Ja heu iniciat una sessió."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Inicieu una sessió amb el compte del Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Inicia una sessió amb el Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Inicia una sessió amb el Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "No s'ha pogut autenticar-vos amb el Facebook."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Heu d'haver iniciat una sessió al Facebook per registrar un compte local fent servir el Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Ja hi ha un compte local enllaçat amb aquest compte del Facebook."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "S'ha produït un problema amb el testimoni de sessió. Proveu-ho de nou."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "No podeu registrar-vos-hi si no accepteu la llicència."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "S'ha produït un error desconegut."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "És la primera vegada que inicieu una sessió a %s, per tant, hem de connectar el vostre Facebook a un compte local. Podeu crear un compte local nou, o bé connectar-vos amb un compte ja existent."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Configuració del Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Opcions de connexió"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "El meu text i fitxers es troben disponibles sota %s excepte pel que fa a les dades privades: contrasenya, adreça electrònica, adreça de MI i número de telèfon."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Crea un compte nou"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Crea un usuari nou amb aquest sobrenom"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nou sobrenom"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 lletres en minúscules o nombres, sense puntuacions o espais."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Crea"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Connecta el compte ja existent"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Si ja teniu un compte, inicieu una sessió amb el vostre nom d'usuari i contrasenya per connectar-lo al Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "ja existeix el sobrenom"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Contrasenya"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Connecta"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "El registre no està permès"
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "No és un codi d'invitació vàlid"
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "S'ha produït un error en connectar l'usuari al Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nom d'usuari o contrasenya no vàlids"
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Paràmetres del Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Paràmetres del Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Usuari del Facebook connectat"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Publica els meus avisos al Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Envia respostes amb «@» al Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Desconnecta el meu compte del Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "En desconnectar el Facebook serà impossible que inicieu una sessió! [set a password](%s) primer."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Mantingueu el vostre compte %1$s però desconnecteu-vos del Facebook. Fareu servir la vostra contrasenya de %1$s per iniciar una sessió."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Desconnecta"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "S'ha produït un problema en desar les preferències de sincronització."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "S'han desat les preferències de sincronització."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "No s'ha pogut eliminar l'enllaç al Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Us heu desconnectat del Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Inicieu-hi una sessió o registreu-vos-hi des del Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Configuració de la integració del Facebook."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Paràmetres del Facebook."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Un connector per integrar l'StatusNet amb el Facebook"
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "S'ha eliminat la connexió amb el Facebook"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hola %1$s,\n\nlamentem informar-vos que no podem publicar el vostre avís al\nFacebook, i hem eliminat la connexió entre el vostre compte %2$s i el\nFacebook.\n\nAixò pot haver passat perquè heu eliminat els permisos de %2$s\nper a publicar en nom vostre, o potser heu desactivat el vostre compte del\nFacebook. Podeu reconnectar el vostre compte de %2$s al Facebook en tot moment\niniciant de nou una sessió al Facebook.\n\nAtentament,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Contacteu amb l'administrador de %s per recuperar el vostre compte"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hola %1$s,\n\nhem notat que heu desautoritzat la connexió del Facebook del vostre\ncompte %2$s. No heu definit encara una contrasenya per al vostre compte de %2$s, per tant\nno podreu iniciar una sessió. Si voleu continuar fent servir el vostre compte de %2$s,\ncontacteu amb l'administrador del lloc (%3$s) per definir una contrasenya.\n\nAtentament,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Czech (http://www.transifex.com/gnu-social/gnu-social/language/cs/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: cs\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Uložit"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Jste již přihlášen(a)."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Nastal problém s vaším session tokenem. Zkuste to znovu, prosím."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Nemůžete se zaregistrovat, pokud nesouhlasíte s licencí."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Došlo k neznámé chybě."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mé texty a soubory jsou k dispozici pod %s, kromě těchto soukromých údajů: heslo, emailová adresa, Jabberová adresa a telefonní číslo."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Vytvořit nový účet"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Vytvořit nový účet s touto přezdívkou."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nová přezdívka"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 znaků, pouze malá písmena a čísla, bez teček, čárek a mezer."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Vytvořit"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Propojit existující účet"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Existující přezdívka"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Heslo"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Propojit"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registrace není povolena."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Kód pozvánky je neplatný."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Neplatné uživatelské jméno nebo heslo."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Danish (http://www.transifex.com/gnu-social/gnu-social/language/da/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: da\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Gem"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Allerede logget ind"
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Der var et problem med din session token. Venligst prøv igen."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Adgangskode"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: German (http://www.transifex.com/gnu-social/gnu-social/language/de/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Einstellungen der Facebook-Integration"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Einstellungen der Facebook-Integration"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Ungültige Facebook-ID. Die maximale Länge beträgt 255 Zeichen."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Ungültiges Facebook-Geheimnis. Die maximale Länge beträgt 255 Zeichen."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Einstellungen der Facebook-Anwendung"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "Anwendungs-ID"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID deiner Facebook-Anwendung."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Geheimnis"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Geheimer Schlüssel der Anwendung"
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Speichern"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Facebook-Einstellungen speichern."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Bereits angemeldet."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Mit ihrem Facebook-Konto anmelden"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Mit Facebook anmelden"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Über Facebook anmelden."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Konnte dich nicht mit Facebook authentifizieren."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Du musst bei Facebook angemeldet sein, um ein lokales Konto mit Facebook zu registrieren."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Es gibt bereits ein lokales Konto, das mit diesem Facebook-Konto verbunden ist."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Es gab ein Problem mit deinem Sitzungstoken. Versuche es bitte erneut."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Du kannst dich nicht registrieren, falls du die Lizenz nicht akzeptierst."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Ein unbekannter Fehler ist aufgetreten."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Dies ist das erste Mal, dass du dich bei %s angemeldet hast, also müssen wir Facebook mit deinem lokalen Konto verbinden. Du kannst entweder ein neues lokales Konto erstellen, oder mit einem bestehenden verbinden."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Facebook-Einrichtung"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Verbindungsoptionen"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mein Text und meine Dateien sind mit Ausnahme dieser privaten Daten unter %s verfügbar: Passwort, E-Mail-Adresse, IM-Adresse und Telefonnummer."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Neues Konto erstellen"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Einen neuen Benutzer mit diesem Spitznamen erstellen."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Neuer Spitzname"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1–64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Erstellen"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Verbinde vorhandenes Konto"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Falls de bereits ein Konto hast, melde dich mit deinem Benutzernamen und Passwort an, um es mit deinem Facebook zu verbinden."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Vorhandener Spitzname"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Passwort"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Verbinden"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registrierung nicht erlaubt."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Ungültiger Einladungs-Code."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Fehler bei der Verbindung des Benutzers zu Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Benutzername oder Kennwort ungültig."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Facebook-Einstellungen"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Facebook-Einstellungen"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Verbundene Facebook-Benuter"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Meine Nachrichten auf Facebook veröffentlichen."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "\"@\"-Antworten zu Facebook senden."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Mein Konto von Facebook trennen"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Die Trennung von Facebook würde es unmöglich machen, sich anzumelden! Bitte zuerst ein [Passwort setzen](%s)."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Du behältst dein %1$s-Konto, trennst es aber von Facebook. Du wirst dein %1$s-Passwort benutzen, um dich anzumelden."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Trennen"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Es ist ein Problem beim Speichern ihrer Synchronisations-Einstellungen aufgetreten."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Synchronisations-Einstellungen gespeichert."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Konnte die Verbindung zu Facebook nicht löschen."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Du bist nun nicht mehr mit Facebook verbunden."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Über Facebook anmelden oder registrieren."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Konfiguration der Facebook-Integration."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Facebook-Einstellungen."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Ein Plugin zur Integration von StatusNet mit Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Ihre Facebook-Verbindung wurde entfernt"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hallo %1$s,\n\nLeider müssen wir dir mitteilen, dass wir deine Nachricht nicht auf Facebook veröffentlichen können und wir deshalb die Verbindung zwischen deinem Konto auf %2$s und Facebook gelöscht haben.\n\nDies kann passiert sein, weil du die Berechtigung für %2$s entfernt hast, in deinem Namen zu schreiben, oder weil du deinen Facebookzugang deaktiviert hast. Du kannst dein Konto auf %2$s jederzeit wieder mit Facebook verbinden, indem du dich mit Facebook anmeldest.\n\nFreundliche Grüße,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Kontaktiere den %s-Administrator um dein Konto zurück zu bekommen"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hallo %1$s,\n\nwir haben bemerkt, dass du die Facebookverbindung für dein Konto auf %2$s deautorisiert hast. Du hast noch kein Passwort für dein Konto auf %2$s gesetzt, sodass du dich nicht anmelden kannst. Wenn du dein Konto auf %2$s weiterhin verwenden willst, dann kontaktiere bitte den Siteadministrator (%3$s), um ein Passwort zu setzen.\n\nFreundliche Grüße,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Greek (http://www.transifex.com/gnu-social/gnu-social/language/el/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: el\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Αποθήκευση"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Ήδη συνδεδεμένος."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Κωδικός"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# Luke Hollins <luke@farcry.ca>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-03-07 18:21+0000\n"
-"Last-Translator: Luke Hollins <luke@farcry.ca>\n"
-"Language-Team: English (United Kingdom) (http://www.transifex.com/gnu-social/gnu-social/language/en_GB/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: en_GB\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Facebook integration settings"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Facebook integration settings"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Invalid Facebook ID. Maximum length is 255 characters."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Invalid Facebook secret. Maximum length is 255 characters."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Facebook application settings"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "Application ID"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID of your Facebook application."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Secret"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Application secret."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Save"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Save Facebook settings."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Already logged in."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Login with your Facebook Account"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Login with Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Login with Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Unable to authenticate you with Facebook."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "You must be logged into Facebook to register a local account using Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "There is already a local account linked with that Facebook account."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "There was a problem with your session token. Try again, please."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "You cannot register if you do not agree to the license."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "An unknown error has occured."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "This is the first time you have logged into %s so we must connect your Facebook to a local account. You can either create a new local account, or connect with an existing local account."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Facebook Setup"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Connection options"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "My text and files are available under %s except this private data: password, email address, IM address, and phone number."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Create new account"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Create a new user with this nickname."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "New nickname"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 lowercase letters or numbers, no punctuation or spaces."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Create"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Connect existing account"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "If you already have an account, login with your username and password to connect it to your Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Existing nickname"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Password"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Connect"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registration not allowed."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Not a valid invitation code."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Error connecting user to Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Invalid username or password."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Facebook settings"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Facebook settings"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Connected Facebook user"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Publish my notices to Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Send \"@\" replies to Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Disconnect my account from Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Disconnecting your Faceboook would make it impossible to log in! Please [set a password](%s) first."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Keep your %1$s account but disconnect from Facebook. You'll use your %1$s password to log in."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Disconnect"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "There was a problem saving your sync preferences."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Sync preferences saved."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Could not delete link to Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "You have disconnected from Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Login or register using Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Facebook integration configuration."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Facebook settings."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "A plugin for integrating StatusNet with Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Your Facebook connection has been removed"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hi %1$s,\n\nWe are sorry to inform you we are unable to publish your notice to\nFacebook, and have removed the connection between your %2$s account and\nFacebook.\n\nThis may have happened because you have removed permission for %2$s\nto post on your behalf, or perhaps you have deactivated your Facebook\naccount. You can reconnect your %2$s account to Facebook at any time by\nlogging in with Facebook again.\n\nSincerely,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Contact the %s administrator to retrieve your account"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hi %1$s,\n\nWe have noticed you have deauthorized the Facebook connection for your\n%2$s account. You have not set a password for your %2$s account yet, so\nyou will not be able to login. If you wish to continue using your %2$s\naccount, please contact the site administrator (%3$s) to set a password.\n\nSincerely,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Esperanto (http://www.transifex.com/gnu-social/gnu-social/language/eo/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: eo\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Konservi"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Vi jam ensalutis."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Estis problemo pri via seanco. Bonvolu provi refoje."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mia teksto kaj dosiero estas atingebla per %s krom jene: pasvorto, retpoŝtadreso, tujmesaĝilo-adreso, kaj telefonnumero."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Pasvorto"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registriĝo ne permesita."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nevalida uzantnomo aŭ pasvorto."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# Juan Riquelme González <soulchainer@gmail.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-28 20:21+0000\n"
-"Last-Translator: Juan Riquelme González <soulchainer@gmail.com>\n"
-"Language-Team: Spanish (http://www.transifex.com/gnu-social/gnu-social/language/es/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Configuración de la integración con Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Configuración de la integración con Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Identificador de Facebook no válido. No puede superar los 255 caracteres."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Secreto de Facebook no válido. No puede superar los 255 caracteres."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Configuración de la aplicación de Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "Identificador de la aplicación"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "Identificador de tu aplicación de Facebook."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Secreto"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Secreto de la aplicación."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Guardar"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Guardar ajustes de Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Ya estás conectado"
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Inicia sesión con tu cuenta de Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Inicio de sesión con Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Inicio de sesión con Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "No se te pudo autentificar con Facebook."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Debes estar identificado en Facebook para poder registrar una cuenta local usando Facebok."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Ya existe una cuenta local vinculada con esa cuenta de Facebook."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Hubo un problema con tu identificador de sesión. Inténtalo de nuevo, por favor."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "No puedes registrarte si no aceptas la licencia."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Ha ocurrido un error desconocido."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Esta es la primera vez que inicias sesión en %s, así que debemos vincular tu Facebook a una cuenta local. Puedes crear una nueva o conectarte a una ya existente."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Configuración de Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Opciones de conexión"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Todos mis textos y archivos están disponibles bajo licencia %s, con excepción de la siguiente información privada: contraseña, dirección de correo electrónico, dirección de mensajería instantánea y número de teléfono."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Crear nueva cuenta"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Crear un nuevo usuario con este nombre."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nuevo nombre de usuario"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "De 1 a 64 letras en minúscula o números, sin signos de puntuación ni espacios."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Crear"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Conectar a una cuenta ya existente"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Si ya tienes una cuenta, inicia sesión con tu nombre de usuario y contraseña para vincularla a tu Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Nombre de usuario ya registrado"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Contraseña"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Vincular"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registro no permitido."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "No es un código de invitación válido."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Error vinculando la cuenta de Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Usuario o contraseña no válidos."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Configuración de Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Configuración de Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Usuario de Facebook vinculado"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Publicar mis mensajes en Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Enviar mis respuestas a otros a Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Desvincular mi cuenta de Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "¡Si desvinculas tu Faceboook ahora no podrás volver a iniciar sesión! Por favor, [establece una contraseña] (%s) primero."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Mantener tu cuenta %1$s pero desvincularla de Facebook. Iniciarás sesión con tu contraseña de %1$s."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Desvincular"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Hubo un problema guardando tus preferencias de sincronización."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Preferencias de sincronización guardadas."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "No se pudo eliminar el enlace a Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Has desvinculado tu cuenta de Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Inicia sesión o regístrate usando Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Configuración de integración con Facebook."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Configuración de Facebook."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Un complemento para integrar GNU social con Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Tu vínculo con Facebook ha sido eliminado"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hola %1$s,\n\nSentimos informarte de que se ha roto el vínculo de tu cuenta %2$s \ncon Facebook y, por tanto, no podemos publicar tu mensaje allí.\n\nTal vez le retiraste el permiso a %2$s para publicar en tu nombre, o \nbien desactivaste tu Facebook. En cualquier caso, puedes restaurar el \nvínculo de tu cuenta %2$s con la red privativa cuando quieras: \nsólo tienes que iniciar sesión otra vez con ella.\n\nSinceramente,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Contacta con el administrador de %s para recuperar tu cuenta"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hola %1$s,\n\nHemos notado que has desvinculado tu cuenta %2$s de Facebook. \nAún no has definido una contraseña local en %2$s, por lo que no \npodrás iniciar sesión. Si quieres seguir usando tu cuenta %2$s, \nponte en contacto con el administrador del sitio (%3$s) para que te \nayude a establecer una.\n\nSinceramente\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Basque (http://www.transifex.com/gnu-social/gnu-social/language/eu/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: eu\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Integrazio aukerak Facebookekin"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Integrazio aukerak Facebookekin"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Facebook ID baliogabea. Luzera maximoa 255 karakterekoa da."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Facebook sekretu baliogabea. Luzera maximoa 255 karakterekoa da."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Aplikazio aukerak Facebookekin"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "Aplikazio IDa"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "Zure Facebook aplikazioaren IDa."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Sekretua"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Aplikazio sekretua."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Gorde"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Gorde Facebook aukerak."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Dagoeneko saioa hasita."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Saioa hasi zure Facebook kontuarekin"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Saioa hasi Facebookekin"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Saioa hasi Facebookekin."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Ezin izan zara Facebookekin autentikatu."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Facebooken saioa hasi behar duzu kontu lokal bat Facebookeekin erregistratu nahi baduzu."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Dagoeneko kontu lokal bat dago Facebook kontu horrekin loturik."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Zure saio tokenarekin arazo bat egon da. Saiatu berriro, mesedez."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Ezin duzu izenik eman ez bazaude lizentziarekin ados."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Akats ezezaguna."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Hau da lehenbiziko aldia %s(e)n saioa hasten duzuna, zure Facebook kontua kontu lokal batekin batuko dugu. Kontu berri bat sor dezakezu baita ere, edo dagoeneko bat baldin baduzu kontu horrekin konektatu zaitezke."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Facebook Konfigurazioa"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Koneksio aukerak"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Nire testu eta fitxategiak %s lizentziapean daude, datu pribatu hauek izan ezik: pasahitza, helbide elektronikoa, BM helbidea eta telefono zenbakia."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Sortu kontu berria"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Sortu erabiltzaile berri bat goitizen honekin."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Goitizen berria"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 letra xehe edo zenbaki, puntuazio edo espaziorik gabe."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Sortu"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Konektatu sorturiko kontuarekin"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Dagoeneko kontu bat baduzu, hasi saioa zure erabiltzaile eta pasahitzarekin zure Facebookera konektatzeko."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Goitizena existitzen da"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Pasahitza"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Konektatu"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Ezin da izen eman."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Gonbidapen kodea ez da baliozkoa."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Akatsa erabiltzailea Facebookera konektatzean."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Erabiltzaile edo pasahitz baliogabea."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Facebook aukerak."
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Facebook aukerak."
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Konektaturiko Facebook erabiltzailea"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Argitaratu nere oharrak Facebooken."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Bidali \"@\" erantzunak Facebookera."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Deskonektatu nere kontua Facebooketik"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Zure Facebooketik deskonektatzen bazara ezinezkoa izango da saioa hastea! Mesedez aurretik [sartu pasahitza](%s)."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Mantendu zure %1$s kontua baina Facebooketik deskonektatu. Zure %1$s pasahitza erabiliko duzu saioa hasteko."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Deskonektatu"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Arazo bat egon da zure sinkronizazio hobespenak gordetzerakoan."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Sinkronizazio hobespenak gordeta."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Ezin izan da Facebookera esteka ezabatu."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Facebooketik deskonektatu zara."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Saioa hasi edo erregistratu Facebook erabiliz."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Facebook integrazio konfigurazioa."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Facebook aukerak."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "StatusNet Facebookekin lotzeko plugina."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Zure Facebookera lotura ezabatua izan da"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Kaixo %1$s,\n\nSentitzen dugu jakinarazi behar izatea zure oharra Facebooken ezin izan dugula argitaratu \neta zure %2$s(e)ko kontua eta Facebooken arteko koneksioa ezabatu dela.\n\n%2$s(e)ri Facebooken argitaratzeko baimenak kendu dizkiozulako izan daiteke, edo beharbada\nzure Facebook kontua ezgaitu duzu. %2$s(e)ko kontua Facebookekin lotu dezakezu berriro \nFacebookekin saio hasita.\n\nOndo segi,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Kontaktatu %s(e)ko administratzailearekin zure kontua berreskuratzeko"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Kaixo%1$s,\n\nKonturatu gara Facebookekin konektatzeko %2$s(e)ko kontua baliogabetu duzula. Oraindik ez duzu \nzure %2$s(e)ko konturako pasahitzik zehaztu, beraz ezingo duzu saiorik hasi. %2$s(e)ko kontua\nerabiltzen jarraitu nahi baduzu jar zaitez guneko administratzailearekin (%3$s) kontaktuan pasahitz\nbat lortzeko.\n\nOndo segi,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Persian (http://www.transifex.com/gnu-social/gnu-social/language/fa/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fa\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "ذخیرهکردن"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "قبلا وارد شده"
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "مشکلی در دریافت نشست شما وجود دارد. لطفا بعدا سعی کنید."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "تنظیمات اتصال"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "نوشتهها و پروندههای من به جز دادههای خصوصی گذرواژه، نشانی پست الکترونیک، نشانی پیامرسان فوری و شماره تلفن زیر مجوز %s هستند."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "ایجاد حساب کاربری جدید"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "ایجاد یک کاربر جدید با این نام مستعار."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "نام مستعار جدید"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "اتصال به حساب کاربری موجود"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "نام مستعار موجود"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "گذرواژه"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "اجازهٔ ثبتنام داده نشده است."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "کد دعوت نامعتبر است."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "نام کاربری یا گذرواژه نا معتبر است."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Finnish (http://www.transifex.com/gnu-social/gnu-social/language/fi/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Tallenna"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Olet jo kirjautunut sisään."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit uudelleen."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiä."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Tekstini ja tiedostoni ovat saatavilla %s alaisuudessa, paitsi tämä yksityinen tieto: salasana, sähköpostiosoite, pikaviestitunnus ja puhelinnumero."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Salasana"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Rekisteröityminen ei ole sallittu."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Käyttäjätunnus tai salasana ei kelpaa."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-05-09 18:23+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: French (http://www.transifex.com/gnu-social/gnu-social/language/fr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Paramètres d'intégration Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Paramètres d'intégration Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Identifiant Facebook invalide. La longueur maximale est de 255 caractères."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Phrase secrète de Facebook invalide. La longueur maximale est de 255 caractères."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Paramètres de l'application Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "ID de l'application"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID de votre application Facebook."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Phrase secrète"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Phrase secrète de l'application."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Enregistrer"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Enregistrer les paramètres Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Déjà connecté."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Se connecter avec un compte Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Se connecter avec Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Se connecter avec Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Impossible de vous authentifier avec Facebook."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Vous devez être connecté à Facebook pour créer un compte local à l'aide de Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Il existe déjà un compte local lié à ce compte Facebook."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Un problème est survenu avec votre session. Merci d'essayer de nouveau."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Une erreur inconnue s'est produite."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "C'est la première fois que vous vous connectez à %s, c'est pourquoi nous devons connecter votre compte Facebook à un compte local. Vous pouvez soit créer un nouveau compte local, soit vous connecter avec un compte local existant."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Configuration Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Options de connexion"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mes textes et mes fichiers sont disponibles sous %s à l’exception de ces données confidentielles : mot de passe, adresse de courriel, adresse de messagerie instantanée et numéro de téléphone."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Créer un nouveau compte"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Créer un nouvel utilisateur avec ce pseudonyme."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nouveau pseudonyme"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Créer"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Se connecter à un compte existant"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Si vous avez déjà un compte ici, connectez-vous avec votre nom d’utilisateur et mot de passe pour l’associer à votre compte Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Pseudonyme existant"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Mot de passe"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Connexion"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Inscriptions non autorisées."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Code d’invitation invalide."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Erreur de connexion de l’utilisateur à Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nom d’utilisateur ou mot de passe incorrect."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Paramètres Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Paramètres Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Utilisateur Facebook connecté"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Publier mes avis sur Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Envoyer les réponses \"@\" sur Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Déconnecter mon compte de Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "La déconnexion de votre Facebook rendrait impossible votre connexion! Veuillez [entrer un mot de passe] (%s) d'abord."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Conserver votre compte %1$s mais se déconnecter de Facebook. Vous pourrez utiliser votre mot de passe %1$s pour vous connecter."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Se déconnecter"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Un problème est survenu lors de la sauvegarde de vos préférences de synchronisation."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Les préférences de synchronisation ont été sauvegardées."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Impossible de supprimer le lien vers Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Vous avez été déconnecté de Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Se connecter ou s’inscrire via Facebook"
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Configuration de l’intégration Facebook."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Paramètres Facebook"
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Un plugin pour intégrer StatusNet avec Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Votre connexion Facebook a été supprimée"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Bonjour %1$s,\n\nNous sommes désolés de vous informer que nous sommes incapables de publier votre statut sur Facebook, et que nous avons enlevé la connexion entre votre compte %2$s et Facebook.\n\nCela peut se produire si vous avez retiré l'autorisation de %2$s de poster à votre nom, ou peut-être que vous avez désactivé votre compte Facebook. Vous pouvez reconnecter votre compte %2$s à Facebook à tout moment en vous connectant sur Facebook à nouveau.\n\nCordialement,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Contactez l’administrateur de %s pour récupérer votre compte"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Bonjour %1$s,\n\nNous avons remarqué que vous avez déconnecté la liaison entre votre compte %2$s et Facebook. Comme vous n'avez pas défini de mot de passe pour votre compte %2$s pour le moment, vous ne serez pas autorisé à vous connecter. Si vous souhaitez continuer en utilisant votre compte %2$s, veuillez contacter l'administrateur du site (%3$s) pour définir un mot de passe.\n\nCordialement,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Friulian (http://www.transifex.com/gnu-social/gnu-social/language/fur/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fur\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Impuestazions pe integrazion cun Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Impuestazions pe integrazion cun Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Salve"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Salve lis impuestazions di Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Tu sês za jentrât."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Jentre cu la to identitât di Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Jentre cun Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Jentre cun Facebook"
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "No tu puedis regjistrâti se no tu sês dacuardi cu la licence."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Al è capitât un erôr no cognossût."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Opzions di conession"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Cree une gnove identitât"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Cree un gnûf utent cun chest sorenon."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Gnûf sorenon"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 letaris minusculis o numars, cence segns di puntuazion o spazis."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Cree"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Conet une identitât che esist za"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Sorenon esistint"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Password"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Conetiti"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Regjistrazion no permitude."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Il non utent o la password no son valits."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Impuestazions di Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Impuestazions di Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Publiche i miei avîs su Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Mande lis rispuestis cun \"@\" a Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Disconetiti"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Impuestazions di Facebook."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Un plugin par integrâ StatusNet cun Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Galician (http://www.transifex.com/gnu-social/gnu-social/language/gl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: gl\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Configuración da integración do Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Configuración da integración do Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "ID do Facebook incorrecto. A extensión máxima é de 255 caracteres."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Frase secreta do Facebook incorrecta. A extensión máxima é de 255 caracteres."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Configuración da aplicación do Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "ID da aplicación"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID da súa aplicación do Facebook."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Frase secreta"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Frase secreta da aplicación."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Gardar"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Gardar a configuración do Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Xa se identificou."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Acceder coa conta do Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Acceda co Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Acceda co Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Non foi posible facer a autenticación co Facebook."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Cómpre iniciar sesión no Facebook para rexistrar unha conta local a través do Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Xa hai unha conta local ligada con esa conta do Facebook."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Houbo un erro co seu pase. Inténteo de novo."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Non pode rexistrarse se non acepta a licenza."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Houbo un erro descoñecido."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Esta é a primeira vez que accede ao sistema de %s, de modo que debemos conectar o seu Facebook cunha conta local. Pode crear unha nova conta local ou ben conectar con outra conta local existente."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Configuración do Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Opcións de conexión"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Os meus textos e ficheiros están dispoñibles baixo %s, salvo os seguintes datos privados: contrasinais, enderezos de correo electrónico e mensaxería instantánea e números de teléfono."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Crear unha conta nova"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Crear un novo usuario con este alcume."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Novo alcume"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, espazos, tiles ou eñes."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Crear"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Conectar cunha conta existente"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Se xa ten unha conta, acceda ao sistema co seu nome de usuario e contrasinal para conectala coa do Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Alcume existente"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Contrasinal"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Conectar"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Non se permite o rexistro."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "O código da invitación é incorrecto."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Erro ao conectar o usuario co Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "O nome de usuario ou contrasinal non son correctos."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Configuración do Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Configuración do Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Usuario do Facebook conectado"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Publicar as miñas notas no Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Enviar as respostas \"@\" ao Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Desconectar a miña conta do Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Ao desconectar o Facebook será imposible acceder ao sistema! [Defina un contrasinal](%s) primeiro."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Manter a conta de %1$s pero desconectala do Facebook. Agora usará o seu contrasinal de %1$s para acceder ao sistema."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Desconectarse"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Houbo un problema ao gardar as súas preferencias de sincronización."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Gardáronse as preferencias de sincronización."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Non se puido borrar a ligazón co Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Desconectouse do Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Acceda ou rexístrese mediante o Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Configuración da integración do Facebook."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Configuración do Facebook."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Un complemento para integrar StatusNet co Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Eliminouse a súa conexión co Facebook"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Ola, %1$s:\n\nSentimos informar de que somos incapaces de publicar a súa nota no\nFacebook e de que eliminamos a conexión entre a súa conta de %2$s e o\nFacebook.\n\nIsto puido ocorrer porque eliminou os permisos que %2$s tiña\npara publicar no seu nome ou quizais desactivou a súa conta do\nFacebook. Pode volver conectar a súa conta de %2$s coa do Facebook en\ncalquera momento iniciando sesión no Facebook de novo.\n\nAtentamente,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Póñase en contacto co administrador de %s para recuperar a súa conta"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Ola, %1$s:\n\nDecatámonos de que desautorizou a conexión co Facebook para a súa\nconta de %2$s. Aínda non definiu un contrasinal para a conta de %2$s,\nde modo que non poderá iniciar sesión. Se quere seguir usando a súa conta\nde %2$s, póñase en contacto cun administrador (%3$s) para establecer un contrasinal.\n\nAtentamente,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Hebrew (http://www.transifex.com/gnu-social/gnu-social/language/he/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: he\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "שמור"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "כבר מחובר."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "הייתה בעיה עם אסימון השיח שלך. נא לנסות שוב."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "ססמה"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "שם המשתמש או הססמה לא תקינים."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Upper Sorbian (http://www.transifex.com/gnu-social/gnu-social/language/hsb/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: hsb\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Składować"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Hižo přizjewjeny."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Bě problem z twojim posedźenskim tokenom. Spytaj prošu hišće raz."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Njemóžeš so registrować, jeli njezwoliš do licency."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 małopisanych pismikow abo ličbow, žane interpunkciske znamješka abo mjezery."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Hesło"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registracija njedowolena."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Njepłaćiwe wužiwarske mjeno abo hesło."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Hungarian (http://www.transifex.com/gnu-social/gnu-social/language/hu/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: hu\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Mentés"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Már be vagy jelentkezve."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Probléma volt a munkameneted tokenjével. Kérlek, próbáld újra."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Jelszó"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "A regisztráció nem megengedett."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Érvénytelen felhasználónév vagy jelszó."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Armenian (Armenia) (http://www.transifex.com/gnu-social/gnu-social/language/hy_AM/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: hy_AM\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Interlingua (http://www.transifex.com/gnu-social/gnu-social/language/ia/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ia\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Configurationes de integration de Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Configurationes de integration de Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "ID de Facebook invalide. Longitude maxime es 255 characteres."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Secreto de Facebook invalide. Longitude maxime es 255 characteres."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Configurationes del application de Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "ID de application"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "Le ID de tu application Facebook."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Secreto"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Secreto del application."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Salveguardar"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Salveguardar configuration Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Tu es jam authenticate."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Aperir session con tu conto de Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Aperir session con Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Aperir session con Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Impossibile authenticar te con Facebook."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Tu debe aperir session in Facebook pro registrar un conto local usante Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Il ha jam un conto local ligate a iste conto de Facebook."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Tu non pote crear un conto si tu non accepta le licentia."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Un error incognite ha occurrite."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Isto es le prime vice que tu ha aperite un session in %s; dunque, nos debe connecter tu conto de Facebook a un conto local. Tu pote crear un nove conto local, o connecter con un conto local existente."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Configuration de Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Optiones de connexion"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mi texto e files es disponibile sub %s excepte iste datos private: contrasigno, adresse de e-mail, adresse de messageria instantanee, numero de telephono."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Crear nove conto"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Crear un nove usator con iste pseudonymo."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nove pseudonymo"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 minusculas o numeros, sin punctuation o spatios."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Crear"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Connecter conto existente"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Si tu ha jam un conto, aperi session con tu nomine de usator e contrasigno pro connecter lo a tu Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Pseudonymo existente"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Contrasigno"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Connecter"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Creation de conto non permittite."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Le codice de invitation es invalide."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Error durante le connexion del usator a Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nomine de usator o contrasigno invalide."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Configuration de Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Configuration de Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Usator de Facebook connectite"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Publicar mi notas in Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Inviar responsas \"@\" a Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Disconnecter mi conto ab Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Per disconnecter tu Facebook, tu non plus poterea aperir session! Per favor [defini un contrasigno](%s) primo."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Retene tu conto de %1$s ma disconnecte ab Facebook. Tu pote usar tu contrasigno de %1$s pro aperir session."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Disconnecter"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Occurreva un problema durante le salveguarda de tu preferentias de synchronisation."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Preferentias de synchronisation salveguardate."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Non poteva deler le ligamine a Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Tu te ha disconnectite de Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Aperir session o crear conto usante Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Configuration del integration de Facebook."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Configuration de Facebook."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Un plug-in pro integrar StatusNet con Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Tu connexion a Facebook ha essite removite"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Salute %1$s,\n\nNos regretta deber informar te que nos non poteva publicar tu nota in\nFacebook, e que nos ha removite le connexion inter tu conto de %2$s e\nillo de Facebook.\n\nIsto pote haber evenite proque tu ha removite le permission pro %2$s\nde publicar in tu nomine, o forsan tu ha disactivate tu conto de\nFacebook. Tu pote sempre reconnecter tu conto de %2$s a Facebook per\naperir session con Facebook de novo.\n\nCordialmente,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Contacta le administrator de %s pro recuperar tu conto"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Salute %1$s,\n\nNos ha remarcate que tu ha de-autorisate le connexion a Facebook pro tu\nconto de %2$s. TU non ha ancora definite un contrasigno pro tu conto de %2$s,\ndunque tu non potera aperir session. Si tu vole continuar a usar tu conto de\n%2$s, per favor contacta le administrator del sito (%3$s) pro definir un contrasigno.\n\nCordialmente,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# zk <zamani.karmana@gmail.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-06-04 15:50+0000\n"
-"Last-Translator: zk <zamani.karmana@gmail.com>\n"
-"Language-Team: Indonesian (http://www.transifex.com/gnu-social/gnu-social/language/id/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: id\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Pengaturan integrasi facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Pengaturan integrasi facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Simpan"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Sudah masuk."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Ada masalah dengan token sesi anda. Mohon coba lagi."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Sandi"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nama pengguna atau sandi tidak valid."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# Ciencisto Dementa <maliktunga@users.noreply.github.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-06-17 17:21+0000\n"
-"Last-Translator: Ciencisto Dementa <maliktunga@users.noreply.github.com>\n"
-"Language-Team: Ido (http://www.transifex.com/gnu-social/gnu-social/language/io/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: io\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Facebook inserto-ajusti"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Facebook inserto-ajusti"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Nevalida Facebook-identifikilo. La longeso maxima es de 255 signi."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Nevalida Facebook-sekretajo. La longeso maxima es de 255 signi."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Ajusti dil Facebook-aplikilo"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "Identifikilo dil aplikilo"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "Identifikilo dil Facebook-aplikilo."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Sekretajo"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Aplikilo-sekretajo."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Konservar"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Konservar la Facebook-ajusti."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Ja identifikita."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Identifikez vu per vua Facebook-konto"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Identifikar me per Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Identifikez vu per Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Lu ne povis autentikigar vu per Facebook."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Vu mustas esar identifikita aden Facebook por registragar lokala konto per Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Esas ja lokala konto ligita kun ta Facebook-konto."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Esis problemo kun vua kunsido-ficho. Voluntez probar itere."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Vu ne povas registragar vu se vu ne konsentas al permiso."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Nekonocata eroro eventis."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Es l'unesma foyo ke vu identifikis su aden %s, do ni mustas konektar vua Facebook-konto a lokala konto. Vu povas sive krear nova lokala konto, sive konektar vu kun lokala konto existanta."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Facebook-ajusto"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Konekto-selekti"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mea texti e dokumenti es disponebla per %s ecepte ca privata datumi: pasovorto, elektronikal adreso, adreso dil instantala mesajilo, e telefonilo-nombro."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Krear nova konto"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Kreez nova uzanto kun ica uzantonomo."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nova uzantonomo"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 minuskuli o nombri, nula puntizosigno nek spaco."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Krear"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Konektar existanta konto"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Se vu ja havas konto, identifikez vu per vua uzantonomo e pasovorto por konektar ol a vua Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Existanta uzantonomo"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Pasovorto"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Konektar"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "La registrago ne permisesas."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Nevalida invito-kodexo."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Eroro dum la konekto dil uzanto a Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nevalida uzantonomo o pasovorto."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Facebook-ajusti"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Facebook-ajusti"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Konektita Facebook-uzanto"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Publikigar mea avizi en Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Sendar l'\"@\"-respondi en Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Deskonektar mea konto ek Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Deskonektar vua Facebook-konto neposibligus identifikar vu! Volontez [enskribar pasovorto](%s) unesme."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Konservar vua %1$s-konto ma diskonektar vu ek Facebook. Vu uzos vua %1$s-pasovorto por identifikar vu."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Deskonektar"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Esis problemo kun la konservo di vua sinkroneso-preferi."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Sinkroneso-preferi konservata."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Lu ne povis ruptar la ligilo a Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Vu es deskonektita ek Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Identifikez vu o registragez vu per Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Ajusto dil Facebook-inserto."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Facebook-ajusti."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Extensilo por juntar GNU social kun Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Vua Facebook-konekto esas efacita."
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hola %1$s,\nNi regretas informar vu ke ni ne povis publikigar vua avizo en Facebook, e ke ni supresis la konekto inter vua %2$s-konto e Facebook.\n\nCa problemo posible eventis pro ke vu revokis la permiso ek %2$s por sendar mesaji en vua nomo, o forsan vu ekswichis vua Facebook-konto. Vu povas rikonektar vua %2$s-konto a Facebook irgekande per identifikar vu kun Facebook itere.\n\nSincere,\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Kontaktez l'administranto di %s por rekuperar vua konto."
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hola %1$s,\nNi remarkis ke vu despermisis la Facebook-konekto por vua %2$s-konto. Vu ne enskribis pasovorto por vua %2$s-konto ankore, do vu ne povos identifikar vu. Se vu deziras durar uzar vua %2$s-konto, voluntez kontaktar l'administranto dil situo (%3$s) por enskribar pasovorto.\n\nSincere,\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Icelandic (http://www.transifex.com/gnu-social/gnu-social/language/is/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: is\n"
-"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Vista"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Þú hefur nú þegar skráð þig inn."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Það kom upp vandamál með setutókann þinn. Vinsamlegast reyndu aftur."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Lykilorð"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Nýskráning ekki leyfð."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Ótækt notendanafn eða lykilorð."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Italian (http://www.transifex.com/gnu-social/gnu-social/language/it/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Integrazione delle impostazioni di Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Integrazione delle impostazioni di Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "ID di Facebook non valido. La lunghezza massima è di 255 caratteri."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Chiave segreta di Facebook non valida. La lunghezza massima è di 255 caratteri."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Impostazioni dell'applicazione Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "ID applicazione"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID dell'applicazione Facebook."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Chiave segreta"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Chiave segreta dell' applicazione."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Salva"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Salva le impostazioni di Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Accesso già effettuato."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Autenticati tramite il tuo account Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Autenticati tramite Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Autenticati tramite Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Impossibile eseguire l'autenticazione tramite Facebook."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Devi effettuare l'accesso a Facebook per registrare un account locale utilizzando Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Esiste già un account locale collegato a questo account di Facebook."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Si è verificato un problema con il tuo token di sessione. Prova di nuovo."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Non puoi registrarti se non accetti la licenza."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Si è verificato un errore sconosciuto."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Questo è il tuo primo accesso a %s perciò dovremo connettere il tuo account Facebook ad un account locale. Puoi inoltre creare un nuovo account locale, o connetterti tramite un account locale già esistente."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Installazione di Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Opzioni di connessione"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "I miei testi e file sono disponibili nei termini di %s a eccezione di questi dati personali: password, indirizzo email, indirizzo messaggistica istantanea e numero di telefono."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Crea nuovo account"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Crea un nuovo utente con questo nickname."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nuovo nickname"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 lettere minuscole o numeri, senza punteggiatura o spazi."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Crea"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Connettere un account esistente"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Se hai già un account, effettua l'accesso con lo username e la password corrispondenti per collegarlo al tuo Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Nickname esistente"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Password"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Connetti"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registrazione non consentita."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Il codice di invito non è valido."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Errore durante la connessione dell'utente a Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nome utente o password non validi."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Impostazioni di Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Impostazioni di Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Utente Facebook connesso"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Pubblica le mie notizie su Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Invia le \"@\" risposte a Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Disconnetti il mio account da Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Se disconnetti il tuo account da Facebook non puoi effettuare il login! Per favore [imposta una password] (%s) prima."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Mantieni il tuo account %1$s ma disconnettiti da Facebook. Per accedere potrai usare la tua password %1$s."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Disconnetti"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Si è verificato un problema durante il salvataggio delle preferenze di sincronizzazione."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Preferenze di sincronizzazione salvate."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Impossibile eliminare il collegamento a Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Sei stato disconnesso da Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Accedi o registrati tramite Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Integrazione della configurazione di Facebook."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Impostazioni di Facebook."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Un plugin per integrare StatusNet con Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "La tua connessione Facebook è stata rimossa"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Ciao %1$s,\n\nSiamo spiacenti di informarti che ci è impossibile pubblicare la tua notizia su\nFacebook, e di conseguenza abbiamo dovuto rimuovere il collegamento tra l'account %2$s e\nFacebook.\n\nCiò può essere accaduto perché hai rimosso i permessi che consentivano a %2$s \ndi postare a tuo nome, o forse perché hai disattivato il tuo account di Facebook. \nPuoi ricollegare il tuo account %2$s a Facebook, in qualsiasi momento, \neffettuando nuovamente l'accesso tramite Facebook.\n\nCordiali saluti,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Contatta l'amministratore di %s per recuperare il tuo account"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Ciao %1$s,\n\nAbbiamo notato che hai revocato l'autorizzazione a Facebook ad accedere al tuo account %2$s. \nNon avendo ancora impostato la password per il tuo account %2$s, non potrai più accedervi. \nSe desideri continuare ad utilizzare il tuo account %2$s, ti invitiamo a contattare l'amministratore \ndel sito (%3$s) per impostare una password.\n\nCordiali saluti,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Japanese (http://www.transifex.com/gnu-social/gnu-social/language/ja/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "保存"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "既にログインしています。"
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "セッション トークンに問題がありました。もう一度試してください。"
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "ライセンスに同意しない場合、登録することはできません。"
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "テキストとファイルは以下の個人情報以外は %s の下で利用できるようにする:パスワード、メールメールアドレス、IMアドレス、電話番号。"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1~64 文字の、小文字アルファベットまたは数字、スペースや句読点は除く。"
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "パスワード"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "登録は許可されていません。"
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "無効なユーザー名またはパスワード。"
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Georgian (http://www.transifex.com/gnu-social/gnu-social/language/ka/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ka\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "შენახვა"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "უკვე ავტორიზირებული ხართ."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "ჩემი ტექსტი და ფაილები ხელმისაწვდომია %s–ით, გარდა ამ პირადი ინფორმაციისა: პაროლი, ელ. ფოსტის მისამართი, IM მისამართი და ტელეფონის ნომერი."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "პაროლი"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "რეგისტრაცია არ არის დაშვებული."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "არასწორი მომხმარებლის სახელი ან პაროლი."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Korean (http://www.transifex.com/gnu-social/gnu-social/language/ko/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ko\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "저장"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "이미 로그인했습니다."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "세션 토큰에 문제가 있습니다. 다시 시도하십시오."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "약관에 동의하지 않으면 가입할 수 없습니다."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "알 수 없는 오류가 발생했습니다."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "연결 옵션"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "내 글과 파일은 %s 조건에 따릅니다. 다음 개인 데이터는 제외합니다: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "새 계정 만들기"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "이 이름으로 새 사용자 만들기"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "새 이름"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 사이의 영소문자 또는 숫자, 기호나 공백을 쓰면 안 됩니다."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "만들기"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "기존 계정에 연결"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "기존 이름"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "비밀 번호"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "연결"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "가입이 허용되지 않습니다."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "초대 코드가 잘못되었습니다."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "사용자 이름이나 비밀 번호가 틀렸습니다."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Colognian (http://www.transifex.com/gnu-social/gnu-social/language/ksh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ksh\n"
-"Plural-Forms: nplurals=3; plural=(n==0) ? 0 : (n==1) ? 1 : 2;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Luxembourgish (http://www.transifex.com/gnu-social/gnu-social/language/lb/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: lb\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Späicheren"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Lithuanian (http://www.transifex.com/gnu-social/gnu-social/language/lt/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: lt\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Išsaugoti"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 09:39+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Latvian (http://www.transifex.com/gnu-social/gnu-social/language/lv/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: lv\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Malagasy (http://www.transifex.com/gnu-social/gnu-social/language/mg/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: mg\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Parametatra fampiaraha-mandeha amin'i Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Parametatra fampiarah-mandeha amin'i Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Hadisoana amin'ny isa mamantatra Facebook. 255 soratra ny halavan'ny ID farafahabetsany."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Hadisoana tamin'ny fehezanteny miafina Facebook. 255 soratra ny halavan'ilay fehezanteny farafahabetsany."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Parametatry ny application Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "ID ny application"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "Isa mamantatra ny application Facebook anao."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Fehezanteny miafina"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Fehezanteny miafin'ilay application."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Tehirizina"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Hitahiry ny parametatra Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Efa tafiditra."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Hiditra amin'ny kaontinao Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Hiditra amin'i Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Hiditra amin'i Facebook"
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Mila tafiditra eo amin'i Facebook ianao mba hahafahanao manokatra kaonty eto antoerana amin'ny alalan'ny Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Efa misy kaonty antoerana ho an'io kaonty Facebook io eto."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Nisy olana nitranga tamin'ny fidiranao. Andramo fanindroany azafady."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Tsy afaka misoratra anarana ianao raha tsy ekenao ny lisansa."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Nisy hadisoana tsy fantatra nitranga."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Voalohany indrindra ianao no miditra eto amin'i %s, izay ny antony idiranao eo amin'ny eto amin'ny alalan'ny kaonty Facebook anao. Na ianao manokatra kaonty eto antoerana, na ianao miditra amin'ny alalana kaonty efa misy."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Configuration Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Safidim-pidirana"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mitondra ny lisansa %s ny lahatsoratro ary ny rakitro afatsy ireo fampahalalana tsy sarababembahoaka : tenimiafina, adiresy imailaka, adiresim-pifandraisana antsoratra mivantana ary ny niomerao telefaona."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Hanokatra kaonty vaovao"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Hamorona mpikambana vaovao miaraka amin'ilay solonanarana."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Solonanarana vaovao"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "litera zanatsoratra 1 hatramin'ny 63, tsy misy teboteboka na fotsy."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Foronona"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Hiditra amin'ny kaonty efa misy"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Efa manana kaonty ianao eto, midira miaraka amin'ny anaram-pikambanao ary ny tenimiafina mba hampikambana azy amin'ny kaonty Facebook anao."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Solonanarana efa misy"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Tenimiafina"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Hiditra"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Fidirana tsy nahazo alalana"
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Kaodim-panasaina diso."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Hadisoana teo am-pidirana ilay mpikambana teo amin'i Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Solonanarana na tenimiafina diso."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Parametatra Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Parametatra Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Mpikambana Facebook efa tafiditra"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Avoaka eo amin'i Facebook ny hevitro."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Alefa eo amin'i Facebook ny valinkafatra \"@\"."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Hivoaka amin'i Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Tsy hahatafitra anao ny fivoahanao amin'i Facebook ! Atsofohy aloha ny [hampiditra tenimiafina] (%s)"
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Hitazona ny kaontinao fa hivoaka amin'i Facebook. Azonao ampiasaina ny tenimafina %1$s rehefa hiditra ianao."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Hivoaka"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Niolana nitranga teo ampitahirizana ny safidy sync anao."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Voatahiry ny safidy sync."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Tsy afaka mamafa ilay rohy mankany amin'i Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Efa nivoaka tamin'i Facebook ianao"
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Hisoratra anarana na hiditra amin'ny alalan'i Facebook"
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Parametatra Facebook"
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Plugin iray hampifanaraka an'i StatusNet amin'i Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Nalàna ny fidiranao teo amin'i Facebook"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Miarahaba anao %1$s,\n\nMiala tsiny aminao izahay fa tsy nahavao ny satanao teo amin'i Facebook, ary nesorinao ny fidirana amin'ny kaontinao %2$s ary ny fidiranao amin'ny alalan'i Facebook.\n\nMety mitranga izany raha nesorinao ny fanomezandalan'i %2$s mametraka hafatra amin'ny anaranao, na mety notapahanao ny kaontinao Facebook. Afaka miverina miditra amin'ny kaontinao %2$s amin'i Facebook ianao na ohaviana na ohaviana amin'ny alalan'ny fidiranao eo amin'ny tranonkala Facebook.\n\nMisaotra indrindra,\n\n%2$s \n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Mifandraisa amin'ny mpandrindran'i %s raha hiverina haka ny kaontinao"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Miarahaba %1$s,\n\nHitanay fa nanala ny fifandraisana amin'ny kaontinao %2$s sy Facebook ianao. Noho ianao tsy nampiditra tenimiafina ho an'ny kaontinao %2$s hatramin'izao, tsy havela hiditra ianao. Raha mbola te-hampiasa ny kaontinao ianao, dia mifandraisa amin'ny mpandrindran'ny tranonkala %3$s mba hampiditra tenimiafina iray.\n\nMisaotra indrindra,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Macedonian (http://www.transifex.com/gnu-social/gnu-social/language/mk/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: mk\n"
-"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Зачувај"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Веќе сте најавени."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Не можете да се регистрирате ако не се согласувате со лиценцата."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Се појави непозната грешка."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Нагодувања за врска"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Мојот текст и податотеки се достапни под %s, освен следниве приватни податоци: лозинка, е-пошта, НП-адреса и телефонски број."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Создај нова сметка"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Создај нов корисник со овој прекар."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Нов прекар"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 мали букви или бројки, без интерпункциски знаци и празни места."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Создај"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Поврзи постоечка сметка"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Постоечки прекар"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Лозинка"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Поврзи се"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Регистрацијата не е дозволена."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Ова не е важечки код за покана."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Неважечко корисничко име или лозинка."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Прекрати"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Malayalam (http://www.transifex.com/gnu-social/gnu-social/language/ml/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ml\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "സേവ് ചെയ്യുക"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "മുമ്പേ തന്നെ ലോഗിൻ ചെയ്തിട്ടുണ്ട്."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "താങ്കളുടെ സെഷൻ ചീട്ടിൽ ഒരു ചെറിയ പ്രശ്നം. ദയവായി വീണ്ടും ശ്രമിക്കുക."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "താങ്കൾ അനുവാദ പത്രം അംഗീകരിക്കുകയില്ലെങ്കിൽ ഭാഗമാകാനാകില്ല."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "രഹസ്യവാക്ക്"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "അംഗത്വമെടുക്കൽ അനുവദിച്ചിട്ടില്ല."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "ഉപയോക്തൃനാമമോ രഹസ്യവാക്കോ അസാധുവാണ്."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Malay (http://www.transifex.com/gnu-social/gnu-social/language/ms/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ms\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Simpan"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Sudah log masuk."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Opsyen sambungan"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Buka akaun baru"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Sambungkan akaun yang sedia ada"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Burmese (http://www.transifex.com/gnu-social/gnu-social/language/my/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: my\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "သိမ်းရန်"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Norwegian Bokmål (http://www.transifex.com/gnu-social/gnu-social/language/nb/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: nb\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Lagre"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Allerede innlogget."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mine tekster og filer er tilgjengelig under %s med unntak av disse private dataene: passord, e-postadresse, direktemeldingsadresse og telefonnummer."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Opprett ny konto"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Opprett en ny bruker med dette kallenavnet."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nytt kallenavn"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1‒64 små bokstaver eller tall, ingen tegnsetting eller mellomrom."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Opprett"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Passord"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Koble til"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registrering ikke tillatt."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Ugyldig brukernavn eller passord."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 09:30+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Nepali (http://www.transifex.com/gnu-social/gnu-social/language/ne/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ne\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Dutch (http://www.transifex.com/gnu-social/gnu-social/language/nl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: nl\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "nstellingen voor Facebookkoppeling"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Instellingen voor Facebookkoppeling"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Ongeldig Facebook-ID. De maximale lengte is 255 tekens."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Ongeldig Facebookgeheim. De maximale lengte is 255 tekens."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Applicatieinstellingen voor Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "Applicatie-ID"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID van uw Facebookapplicatie."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Geheim"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Applicatiegeheim."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Opslaan"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Facebookinstellingen opslaan."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "U bent al aangemeld."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Aanmelden met uw Facebookgebruiker"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Aanmelden met Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Aanmelden met Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Het was niet mogelijk u via Facebook aan te melden."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "U moet aangemeld zijn bij Facebook om een lokale gebruiker via Facebook te kunnen registreren."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Er is al een lokale gebruiker verbonden met deze Facebookgebruiker."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, alstublieft."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Er is een onbekende fout opgetreden."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Dit is de eerste keer dat u aanmeldt bij %s en dan moeten we uw Facebookgebruiker koppelen met uw lokale gebruiker. U kunt een nieuwe lokale gebruiker aanmaken of koppelen met een bestaande gebruiker als u die al hebt."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Facebookinstellingen"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Koppelingsinstellingen"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mijn teksten en bestanden zijn beschikbaar onder %s, behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Nieuwe gebruiker aanmaken"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nieuwe gebruikersnaam"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Aanmaken"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Verbinden met een bestaande gebruiker"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en wachtwoord om deze daarna te koppelen met uw Facebookgebruiker."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Bestaande gebruikersnaam"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Wachtwoord"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Koppelen"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registratie is niet toegestaan."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "De uitnodigingscode is ongeldig."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Fout bij het verbinden van de gebruiker met Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Ongeldige gebruikersnaam of wachtwoord."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Facebookinstellingen"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Facebookinstellingen"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Gekoppelde Facebookgebruiker"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Mijn mededelingen publiceren op Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Antwoorden met \"@\" naar Facebook verzenden."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Mijn gebruiker loskoppelen van Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Door los te koppelen van Faceboook zou u niet meer kunnen aanmelden! [Stel eerst een wachtwoord in](%s)."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Uw gebruiker bij %1$s behouden maar deze loskoppelen van Facebook. U kunt uw wachtwoord van %1$s gebruiken om aan te melden."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Loskoppelen"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Er is een fout opgetreden tijdens het opslaan van uw synchronisatievoorkeuren."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Uw synchronisatievoorkeuren zijn opgeslagen."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Het was niet mogelijk de verwijzing naar Facebook te verwijderen."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "U bent losgekoppeld van Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Aanmelden of registreren via Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Instellingen voor Facebookintegratie."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Facebookinstellingen."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Een plug-in voor het integreren van StatusNet met Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Uw koppeling met Facebook is verwijderd"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hallo %1$s,\n\nHet spijt ons dat we u moeten meedelen dat het niet mogelijk is uw mededelingen\nbij Facebook te publiceren. De koppeling tussen uw gebruiker op %1$s en\nFacebook is verbroken.\n\nDit is mogelijk gebeurd doordat u de rechten om namens u berichten te plaatsen\nvoor %2$s hebt verwijderd of wellicht hebt u uw gebruiker bij Facebook\nverwijderd. U kunt op ieder moment opnieuw met Facebook koppelen door bij\nFacebook aan te melden.\n\nMet vriendelijke groet,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Neem contact op met de beheerder van %s om uw gebruikersgegevens te verkrijgen"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Hallo %1$s,\n\nWe hebben geconstateerd dat u de koppeling met Facebook voor uw gebruiker bij\n%2$s hebt verbroken. U hebt nog geen wachtwoord ingesteld voor uw gebruiker\nbij %2$s, dus u kunt niet aanmelden. Als u uw gebruiker by %2$s nog langer wilt\ngebruiken, neem dan contact op met de sitebeheerder via %3$s\nom een wachtwoord in te stellen.\n\nMet vriendelijke groet,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Norwegian Nynorsk (http://www.transifex.com/gnu-social/gnu-social/language/nn/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: nn\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Lagra"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Allereie logga inn."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Passord"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registrering ikkje tillatt."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Ugyldig brukarnamn eller passord."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Polish (http://www.transifex.com/gnu-social/gnu-social/language/pl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pl\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Zapisz"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Jesteś już zalogowany."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Tekst i pliki są dostępne na warunkach licencji %s, poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora i numer telefonu."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Hasło"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Rejestracja nie jest dozwolona."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nieprawidłowa nazwa użytkownika lub hasło."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Portuguese (http://www.transifex.com/gnu-social/gnu-social/language/pt/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pt\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Gravar"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Sessão já foi iniciada."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Ocorreu um problema com a sua sessão. Por favor, tente novamente."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Os meus textos e ficheiros são disponibilizados nos termos da %s excepto estes dados privados: senha, endereço de correio electrónico, endereço de mensageiro instantâneo, número de telefone."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Senha"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registo não é permitido."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nome de utilizador ou senha inválidos."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/gnu-social/gnu-social/language/pt_BR/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pt_BR\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Salvar"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Já está autenticado."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Você não pode se registrar se não aceitar a licença."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Ocorreu um erro desconhecido."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Meus textos e arquivos estão disponíveis sob a %s, exceto estes dados particulares: senha, endereço de e-mail, endereço do mensageiro instantâneo e número de telefone."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Criar nova conta"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Novo nome"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Criar"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Senha"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Conectar"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Não é permitido o registro."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "O código de convite é inválido."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Nome de usuário e/ou senha inválido(s)."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Romanian (Romania) (http://www.transifex.com/gnu-social/gnu-social/language/ro_RO/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ro_RO\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Russian (http://www.transifex.com/gnu-social/gnu-social/language/ru/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ru\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Сохранить"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Вы уже вошли."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Проблема с вашим ключом сессии. Пожалуйста, попробуйте ещё раз."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Вы не можете зарегистрироваться без подтверждения лицензионного соглашения."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Мои тексты и файлы доступны на условиях %s, за исключением следующей личной информации: пароля, почтового адреса, номера мессенджера и номера телефона."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 латинских строчных буквы или цифры, без знаков препинания и пробелов"
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Пароль"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Регистрация недопустима."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Неверное имя или пароль."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Slovenian (http://www.transifex.com/gnu-social/gnu-social/language/sl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Serbian (http://www.transifex.com/gnu-social/gnu-social/language/sr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: sr\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Сачувај"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Дошло је до грешке са сесијом. Покушајте поново."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Лозинка"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# Kristoffer Grundström <kristoffer.grundstrom1983@gmail.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-09-16 02:18+0000\n"
-"Last-Translator: Kristoffer Grundström <kristoffer.grundstrom1983@gmail.com>\n"
-"Language-Team: Swedish (http://www.transifex.com/gnu-social/gnu-social/language/sv/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: sv\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Integrationsinställningar för Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Integrationsinställningar för Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Ogiligt Facebook-ID. Maximal längd är 255 tecken."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Ogiltig Facebook-hemlighet. Maximal längd är 255 tecken."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Inställningar för Facebook-applikationen"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "Applikation-ID"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID't för din Facebook-applikation."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Hemlighet"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Spara"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Redan inloggad."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Det var ett problem med din sessions-token. Var vänlig försök igen."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Du kan inte registrera dig om du inte accepterar licensen."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Ett okänt fel uppstod."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Mina texter och filer är tillgängliga under %s med undantag av den här privata datan: lösenord, e-postadress, IM-adress, telefonnummer."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Skapa nytt konto"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Skapa en ny användare med detta smeknamn."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Nytt smeknamn"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 gemener eller siffror, inga skiljetecken eller mellanslag."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Skapa"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Anslut befintligt konto"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Befintligt smeknamn"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Lösenord"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Anslut"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Registrering inte tillåten."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Inte en giltig inbjudningskod."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Ogiltigt användarnamn eller lösenord."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 08:48+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Tamil (http://www.transifex.com/gnu-social/gnu-social/language/ta/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ta\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Telugu (http://www.transifex.com/gnu-social/gnu-social/language/te/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: te\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "భద్రపరచు"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "ఇప్పటికే లోనికి ప్రవేశించారు."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "నా పాఠ్యం మరియు దస్త్రాలు %s క్రింద లభ్యం, ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, మరియు ఫోన్ నంబర్."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "సంకేతపదం"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "నమోదు అనుమతించబడదు."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Tagalog (http://www.transifex.com/gnu-social/gnu-social/language/tl/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: tl\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Mga katakdaan sa pagsasama ng Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Mga katakdaan ng pagsasama ng Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Hindi katanggap-tanggap na ID ng Facebook. Ang pinakamataas na haba ay 255 mga panitik."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Hindi katanggap-tanggap na lihim ng Facebook. Ang pinakamataas na haba ay 255 mga panitik."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Mga katakdaan ng aplikasyon ng Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "ID ng aplikasyon"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "ID ng iyong aplikasyon ng Facebook."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Lihim"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Lihim ng aplikasyon."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Sagipin"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Sagipin ang mga katakdaan ng Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Nakalagda na."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Lumagda sa pamamagitan ng Akawnt mo sa Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Lumagdang may Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Lumagda sa pamamagitan ng Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr "Hindi ka napatunayan sa Facebook."
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Dapat na nakalagda ka sa Facebook upang makapagpatala ng isang katutubong akawnt na ginagamit ang Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Mayroon nang isang katutubong akawnt na nakakawing sa ganyang akawnt ng Facebook."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Nagkaroon ng isang suliranin sa kahalip ng sesyon mo. Pakisubukan uli."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Hindi ka makakapagpatala kung hindi ka sumasang-ayon sa lisensiya."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Naganap ang isang hindi nalalamang kamalian."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Ito ang iyong unang pagkakataon ng paglagda sa %s kaya't kailangan naming iugnay ang iyong Facebook papunta sa isang katutubong akawnt. Maaari kang lumikha ng isang bagong katutubong akawnt, o umugnay sa pamamagitan ng umiiral na katutubong akawnt."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Pagkakahanda ng Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Mga mapagpipilian ng ugnay"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Makukuha ang teksto at mga talaksan ko sa ilalim ng %s maliban na lamang ang pribadong datong ito: hudyat, tirahan ng e-liham, tirahan ng IM, at numero ng telepono."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Lumikha ng bagong akawnt"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Lumikha ng isang bagong tagagamit na may ganitong palayaw."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Bagong palayaw"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1 hanggang 64 maliliit na mga titik o mga bilang, walang bantas o mga patlang."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Likhain"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Iugnay ang umiiral na akawnt"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Kung mayroon ka nang akawnt, lumagda sa pamamagitan ng iyong pangalan ng tagagamit at hudyat upang iugnay ito sa iyong Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Umiiral na palayaw"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Hudyat"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Umugnay"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Hindi pinayagan ang pagpapatala."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Hindi isang tanggap na kodigo ng paanyaya."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Kamalian sa pag-uugnay ng tagagamit sa Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Hindi katanggap-tanggap na pangalan ng tagagamit o hudyat."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Mga katakdaan sa Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Mga katakdaan ng Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Nakaugnay na tagagamit ng Facebook"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Ilathala ang mga pabatid ko sa Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Ipadala ang mga tugong \"@\" papunta sa Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Huwag iugnay ang akawnt ko mula sa Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Ang pagtanggal ng ugnay ng Facebook mo ay makapagdurulot ng hindi makalagda! Mangyaring [magtakda muna ng isang hudyat](%s)."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Panatilihin ang akawnt mong %1$s subalit kumalas mula sa Facebook. Maaari mong gamitin ang hudyat mo sa %1$s upang lumagdang papasok."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Huwag umugnay"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Nagkaroon ng isang suliranin sa pagsagip ng mga nais mo sa pagsasabay."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Nasagip ang mga nais sa pagsabay."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Hindi mabura ang kawing sa Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Kumalas ka na mula sa Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Lumagda o magpatala sa pamamagitan ng Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Pagsasaayos ng pagsasama sa Facebook."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Mga katakdaan sa Facebook."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Isang pampasak para sa pagsasama ng StatusNet na may Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Natanggal na ang iyong ugnay sa Facebook"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Kumusta %1$s,\n\nIkinalulungkot namin na ipabatid sa iyo na hindi namin nagawang mailathala ang patabid mo sa Facebook, at tinanggal ang ugnayan sa pagitan ng iyong akawnt sa %2$s at Facebook.\n\nMaaaring nangyari ito dahil inalis mo ang pahintulot para sa %2$s na makapagpaskil para sa iyo, o kaya hindi mo na binubuhay ang akawnt mo sa Facebook. Maaari kang iugnay na muli ang iyong akawnt na %2$s sa Facebook sa anumang oras sa pamamagitan ng muling paglagdang papasok sa Facebook.\n\nMay katapatan,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Makipag-ugnayan sa tagapangasiwa ng %s upang makuhang muli ang akawnt mo"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Kumusta %1$s,\n\nNapansin naming hindi mo na pinapahintulutan ang pag-ugnay sa Facebook para sa iyong akawnt sa %2$s. Hindi ka pa nagtatakda ng isang hudyat para sa iyong akawnt sa %2$s, kaya’t hindi mo magagawang lumagdang papasok. Kung nais mong magpatuloy sa paggamit ng iyong akawnt sa %2$s, mangyaring makipag-ugnayan sa tagapangasiwa ng sityo (%3$s) upang makapagtaka ng isang hudyat.\n\nMay kataimtiman,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Turkish (http://www.transifex.com/gnu-social/gnu-social/language/tr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Kaydet"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Zaten giriş yapılmış."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Oturum belirtecinizde bir sorun var. Lütfen, tekrar deneyin."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Bağlantı seçenekleri"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Parola, e-posta adresi, anlık mesajlaşma adresi ve telefon numarası gibi özel verilerim dışındaki tüm yazı ve dosyalarım %s dahilinde kullanılabilir."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Yeni hesap oluştur"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Bu kullanıcı adıyla yeni bir kullanıcı oluştur."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Yeni kullanıcı adı"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Oluştur"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Varolan hesaba bağlan"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Varolan kullanıcı adı"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Parola"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Bağlan"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Kayıt yapılmasına izin verilmiyor."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Geçerli bir davet kodu değil."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Geçersiz kullanıcı adı veya parola."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Ukrainian (http://www.transifex.com/gnu-social/gnu-social/language/uk/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: uk\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Налаштування інтеграції з Facebook"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Налаштування інтеграції з Facebook"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr "Неприпустимий ідентифікатор Facebook. Максимальна довжина — 255 символів."
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr "Помилковий секретний код Facebook. Максимальна довжина — 255 символів."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Налаштування додатку для Facebook"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "Ідентифікатор додатку"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr "Ідентифікатор вашого додатку Facebook."
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "Секретний код"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr "Секретний код додатку."
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Зберегти"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr "Зберегти налаштування Facebook."
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Ви вже увійшли."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "Увійти з акаунтом Facebook"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "Увійти з Facebook"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr "Увійти з Facebook."
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "Спочатку ви маєте увійти до Facebook, аби мати змогу зареєструвати акаунт на цьому сервісі за допомогою Facebook."
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "Один з тутешніх акаунтів вже прив’язаний до цього профілю у Facebook."
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Виникла проблема з вашим токеном сесії. Спробуйте пізніше, будь ласка."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "Ви не можете зареєструватись, якщо не погодитесь з умовами ліцензії."
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "Сталася невідома помилка."
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr "Ви вперше увійшли до сайту %s, отже ми мусимо приєднати ваш акаунт Facebook до акаунту на даному сайті. Ви маєте можливість створити новий локальний акаунт або використати такий, що вже існує."
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Установки Facebook"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "Опції з’єднання"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "Мої дописи і файли доступні на умовах %s, окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний номер."
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "Створити новий акаунт"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "Створити нового користувача з цим нікнеймом."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "Новий псевдонім"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1-64 рядкові літери і цифри, ніякої пунктуації або інтервалів."
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "Створити"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "Приєднати акаунт, який вже існує"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "Якщо ви вже маєте акаунт, увійдіть з вашим ім’ям користувача та паролем, аби приєднати їх до Facebook."
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "Нікнейм, який вже існує"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Пароль"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "Під’єднати"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Реєстрацію не дозволено."
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "Це не дійсний код запрошення."
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Помилка при підключенні до Facebook."
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Недійсне ім’я або пароль."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Налаштування Facebook"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Налаштування Facebook"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "Під’єднаний користувач Facebook"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "Публікувати мої дописи у Facebook."
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "Надсилати «@» відповіді до Facebook."
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "Від’єднати мій акаунт від Facebook"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr "Якщо від’єднати ваш акаунт від Faceboook зараз, то це унеможливить вхід до сервісу у майбутньому! Будь ласка, спочатку [встановіть пароль](%s)."
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr "Зберегти ваш акаунт %1$s, але від’єднати його від Facebook. Ви можете використовувати пароль від %1$s для входу на сайт."
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr "Від’єднати"
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr "Виникла проблема при збереженні параметрів синхронізації."
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr "Параметри синхронізації збережено."
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr "Не можу видалити посилання на Facebook."
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr "Ви від’єдналися від Facebook."
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr "Увійти або зареєструватися з Facebook."
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr "Налаштування інтеграції з Facebook."
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr "Налаштування Facebook."
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "Додаток для інтеграції StatusNet з Facebook."
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "З’єднання з Facebook було видалено"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Вітаємо, %1$s\n\nНам прикро вас про це повідомляти, але ми не в змозі опублікувати ваш допис на Facebook, також ми скасували з’єднання між вашим акаунтом на %2$s і Facebook.\n\nТаке могло трапитися тому, що ви видалили дозвіл %2$s на публікацію дописів від вашого імені, або ж, можливо, ви вимкнули свій акаунт на Facebook. Ви можете під’єднати свій акаунт на %2$s до Facebook у будь-який час знову, просто зайшовши на наш сайт через вхід для Facebook.\n\nЩиро ваші,\n\n%2$s\n"
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "Зверніться до адміністратора %s, аби відновити свій обліковий запис"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr "Привіт, %1$s\n\nМи зауважили, що ви скасували дозвіл на з’єднання між Facebook та вашим акаунтом на %2$s. Перед цим ви не встановили пароль для свого акаунту на %2$s, тож тепер не зможете увійти на наш сайт знову. Якщо ви все ж таки бажаєте користуватися своїм акаунтом на %2$s далі, то зв’яжіться, будь ласка, з адміністратором сайту (%3$s), аби встановити пароль для входу.\n\nЩиро ваші,\n\n%2$s\n"
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Urdu (Pakistan) (http://www.transifex.com/gnu-social/gnu-social/language/ur_PK/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: ur_PK\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "تبدیلیاں محفوظ کریں"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Vietnamese (http://www.transifex.com/gnu-social/gnu-social/language/vi/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: vi\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "Lưu"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "Đã đăng nhập."
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa."
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "Mật khẩu"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "Đăng ký"
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "Tên đăng nhập hoặc mật khẩu không hợp lệ."
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-06 16:16+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: Chinese (http://www.transifex.com/gnu-social/gnu-social/language/zh/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr ""
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-02-07 14:33+0000\n"
-"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
-"Language-Team: Chinese (China) (http://www.transifex.com/gnu-social/gnu-social/language/zh_CN/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr "Facebook 集成设置"
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr "Facebook 集成设置"
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr "Facebook 应用程序设置"
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr "应用程序 ID"
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr "秘密"
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr "保存"
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "已登录。"
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr "与您的 Facebook 帐户登录"
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr "使用 Facebook 登录"
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr "您必须登录到 Facebook 注册使用 Facebook 的本地帐户。"
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr "已存在与该 Facebook 帐户相关的本地帐户。"
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr "有一个与您的会话令牌的问题。请再次尝试。"
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr "你必须同意许可协议才能注册。"
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr "出现了一个未知的错误。"
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr "Facebook 安装程序"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr "连接选项"
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr "我的文字和文件在%s下提供,除了如下隐私内容:密码、电子邮件地址、IM 地址和电话号码。"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr "创建新的帐户"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr "此别名与创建新用户。"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr "新的昵称"
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr "1 到 64 个小写字母或数字,不包含标点或空格。"
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr "创建"
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr "连接现有的帐户"
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr "如果您已经有一个的帐户使用您的用户名和密码以连接到在 Facebook 的登录。"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr "现有的昵称"
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr "密码"
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr "连接"
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr "不允许注册。"
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr "不是一个有效的邀请代码。"
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr "Facebook 中连接用户时出错。"
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "无效的用户名或密码。"
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr "Facebook 的设置"
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr "Facebook 的设置"
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr "已连接的 Facebook 用户"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr "将我的通知发布到 Facebook。"
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr "发送 \"@\" Facebook 的答复。"
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr "从 Facebook 拔下我的账户"
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr "Facebook"
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr "StatusNet 与结合 Facebook 的插件。"
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr "Facebook 的连接已被删除"
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr "与 %s 管理员联系,以检索您的帐户"
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
+++ /dev/null
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# Po-Chun Huang <aphroteus@gmail.com>, 2015
-msgid ""
-msgstr ""
-"Project-Id-Version: GNU social\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-02 17:47+0100\n"
-"PO-Revision-Date: 2015-03-26 09:54+0000\n"
-"Last-Translator: Po-Chun Huang <aphroteus@gmail.com>\n"
-"Language-Team: Chinese (Taiwan) (http://www.transifex.com/gnu-social/gnu-social/language/zh_TW/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_TW\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-
-#. TRANS: Title for Facebook administration panel.
-#: actions/facebookadminpanel.php:53
-msgctxt "TITLE"
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Instruction for Facebook administration panel.
-#: actions/facebookadminpanel.php:64
-msgid "Facebook integration settings"
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook
-#. application ID.
-#: actions/facebookadminpanel.php:126
-msgid "Invalid Facebook ID. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Client error displayed when providing too long a Facebook secret
-#. key.
-#: actions/facebookadminpanel.php:133
-msgid "Invalid Facebook secret. Maximum length is 255 characters."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookadminpanel.php:183
-msgid "Facebook application settings"
-msgstr ""
-
-#. TRANS: Field label for Facebook application ID.
-#: actions/facebookadminpanel.php:190
-msgid "Application ID"
-msgstr ""
-
-#. TRANS: Field title for Facebook application ID.
-#: actions/facebookadminpanel.php:192
-msgid "ID of your Facebook application."
-msgstr ""
-
-#. TRANS: Field label for Facebook secret key.
-#: actions/facebookadminpanel.php:201
-msgid "Secret"
-msgstr ""
-
-#. TRANS: Field title for Facebook secret key.
-#: actions/facebookadminpanel.php:203
-msgid "Application secret."
-msgstr ""
-
-#. TRANS: Button text to save Facebook integration settings.
-#. TRANS: Submit button to save synchronisation settings.
-#: actions/facebookadminpanel.php:220 actions/facebooksettings.php:188
-msgctxt "BUTTON"
-msgid "Save"
-msgstr ""
-
-#. TRANS: Button title to save Facebook integration settings.
-#: actions/facebookadminpanel.php:222
-msgid "Save Facebook settings."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to login while already logged in.
-#: actions/facebooklogin.php:43
-msgid "Already logged in."
-msgstr "已登入"
-
-#. TRANS: Form instructions.
-#: actions/facebooklogin.php:52
-msgid "Login with your Facebook Account"
-msgstr ""
-
-#. TRANS: Page title.
-#. TRANS: Alt text for "Login with Facebook" image.
-#: actions/facebooklogin.php:67 actions/facebooklogin.php:92
-msgid "Login with Facebook"
-msgstr ""
-
-#. TRANS: Title for "Login with Facebook" image.
-#: actions/facebooklogin.php:94
-msgid "Login with Facebook."
-msgstr ""
-
-#: actions/facebookfinishlogin.php:50
-msgid "Unable to authenticate you with Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to Facebook while not
-#. logged in.
-#: actions/facebookfinishlogin.php:73
-msgid ""
-"You must be logged into Facebook to register a local account using Facebook."
-msgstr ""
-
-#. TRANS: Client error displayed when trying to connect to a Facebook account
-#. that is already linked
-#. TRANS: in the same StatusNet site.
-#: actions/facebookfinishlogin.php:117 actions/facebookfinishlogin.php:131
-msgid "There is already a local account linked with that Facebook account."
-msgstr ""
-
-#. TRANS: Client error displayed when the session token does not match or is
-#. not given.
-#: actions/facebookfinishlogin.php:144 actions/facebooksettings.php:87
-msgid "There was a problem with your session token. Try again, please."
-msgstr ""
-
-#. TRANS: Form validation error displayed when user has not agreed to the
-#. license.
-#: actions/facebookfinishlogin.php:154
-msgid "You cannot register if you do not agree to the license."
-msgstr ""
-
-#. TRANS: Form validation error displayed when an unhandled error occurs.
-#: actions/facebookfinishlogin.php:172
-msgid "An unknown error has occured."
-msgstr ""
-
-#. TRANS: Form instructions for connecting to Facebook.
-#. TRANS: %s is the site name.
-#: actions/facebookfinishlogin.php:191
-#, php-format
-msgid ""
-"This is the first time you have logged into %s so we must connect your "
-"Facebook to a local account. You can either create a new local account, or "
-"connect with an existing local account."
-msgstr ""
-
-#. TRANS: Page title.
-#: actions/facebookfinishlogin.php:201
-msgid "Facebook Setup"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:235
-msgid "Connection options"
-msgstr ""
-
-#. TRANS: %s is the name of the license used by the user for their status
-#. updates.
-#: actions/facebookfinishlogin.php:245
-#, php-format
-msgid ""
-"My text and files are available under %s except this private data: password,"
-" email address, IM address, and phone number."
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:262
-msgid "Create new account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:265
-msgid "Create a new user with this nickname."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:273
-msgid "New nickname"
-msgstr ""
-
-#. TRANS: Field title.
-#: actions/facebookfinishlogin.php:276
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
-msgstr ""
-
-#. TRANS: Submit button to create a new account.
-#: actions/facebookfinishlogin.php:284
-msgctxt "BUTTON"
-msgid "Create"
-msgstr ""
-
-#. TRANS: Fieldset legend.
-#: actions/facebookfinishlogin.php:290
-msgid "Connect existing account"
-msgstr ""
-
-#. TRANS: Form instructions.
-#: actions/facebookfinishlogin.php:293
-msgid ""
-"If you already have an account, login with your username and password to "
-"connect it to your Facebook."
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:297
-msgid "Existing nickname"
-msgstr ""
-
-#. TRANS: Field label.
-#: actions/facebookfinishlogin.php:301
-msgid "Password"
-msgstr ""
-
-#. TRANS: Submit button to connect a Facebook account to an existing StatusNet
-#. account.
-#: actions/facebookfinishlogin.php:305
-msgctxt "BUTTON"
-msgid "Connect"
-msgstr ""
-
-#. TRANS: Client error trying to register with registrations not allowed.
-#. TRANS: Client error trying to register with registrations 'invite only'.
-#: actions/facebookfinishlogin.php:326 actions/facebookfinishlogin.php:335
-msgid "Registration not allowed."
-msgstr ""
-
-#. TRANS: Client error trying to register with an invalid invitation code.
-#: actions/facebookfinishlogin.php:342
-msgid "Not a valid invitation code."
-msgstr ""
-
-#. TRANS: Server error displayed when connecting to Facebook fails.
-#: actions/facebookfinishlogin.php:378 actions/facebookfinishlogin.php:511
-msgid "Error connecting user to Facebook."
-msgstr ""
-
-#. TRANS: Form validation error displayed when username/password combination
-#. is incorrect.
-#: actions/facebookfinishlogin.php:478
-msgid "Invalid username or password."
-msgstr "使用者名稱或密碼無效。"
-
-#. TRANS: Page title for Facebook settings.
-#: actions/facebooksettings.php:106
-msgctxt "TITLE"
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Instructions for Facebook settings.
-#: actions/facebooksettings.php:116
-msgid "Facebook settings"
-msgstr ""
-
-#. TRANS: Form note. User is connected to facebook.
-#: actions/facebooksettings.php:140
-msgid "Connected Facebook user"
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:168
-msgid "Publish my notices to Facebook."
-msgstr ""
-
-#. TRANS: Checkbox label in Facebook settings.
-#: actions/facebooksettings.php:179
-msgid "Send \"@\" replies to Facebook."
-msgstr ""
-
-#. TRANS: Fieldset legend for form to disconnect from Facebook.
-#: actions/facebooksettings.php:197
-msgid "Disconnect my account from Facebook"
-msgstr ""
-
-#. TRANS: Notice in disconnect from Facebook form if user has no local
-#. StatusNet password.
-#: actions/facebooksettings.php:204
-#, php-format
-msgid ""
-"Disconnecting your Faceboook would make it impossible to log in! Please [set"
-" a password](%s) first."
-msgstr ""
-
-#. TRANS: Message displayed when initiating disconnect of a StatusNet user
-#. TRANS: from a Facebook account. %1$s is the StatusNet site name.
-#: actions/facebooksettings.php:215
-#, php-format
-msgid ""
-"Keep your %1$s account but disconnect from Facebook. You'll use your %1$s "
-"password to log in."
-msgstr ""
-
-#. TRANS: Submit button.
-#: actions/facebooksettings.php:221
-msgctxt "BUTTON"
-msgid "Disconnect"
-msgstr ""
-
-#. TRANS: Notice in case saving of synchronisation preferences fail.
-#: actions/facebooksettings.php:245
-msgid "There was a problem saving your sync preferences."
-msgstr ""
-
-#. TRANS: Confirmation that synchronisation settings have been saved into the
-#. system.
-#: actions/facebooksettings.php:248
-msgid "Sync preferences saved."
-msgstr ""
-
-#. TRANS: Server error displayed when deleting the link to a Facebook account
-#. fails.
-#: actions/facebooksettings.php:263
-msgid "Could not delete link to Facebook."
-msgstr ""
-
-#. TRANS: Confirmation message. StatusNet account was unlinked from Facebook.
-#: actions/facebooksettings.php:267
-msgid "You have disconnected from Facebook."
-msgstr ""
-
-#. TRANS: Menu item for "Facebook" in administration panel.
-#. TRANS: Menu item for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:202 FacebookBridgePlugin.php:241
-#: FacebookBridgePlugin.php:281
-msgctxt "MENU"
-msgid "Facebook"
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" login.
-#: FacebookBridgePlugin.php:204
-msgid "Login or register using Facebook."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in administration panel.
-#: FacebookBridgePlugin.php:243
-msgid "Facebook integration configuration."
-msgstr ""
-
-#. TRANS: Menu title for "Facebook" in user settings.
-#: FacebookBridgePlugin.php:283
-msgid "Facebook settings."
-msgstr ""
-
-#. TRANS: Plugin description.
-#: FacebookBridgePlugin.php:624
-msgid "A plugin for integrating StatusNet with Facebook."
-msgstr ""
-
-#. TRANS: E-mail subject.
-#: lib/facebookclient.php:790
-msgid "Your Facebook connection has been removed"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username, %2$s is the StatusNet sitename.
-#: lib/facebookclient.php:793
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We are sorry to inform you we are unable to publish your notice to\n"
-"Facebook, and have removed the connection between your %2$s account and\n"
-"Facebook.\n"
-"\n"
-"This may have happened because you have removed permission for %2$s\n"
-"to post on your behalf, or perhaps you have deactivated your Facebook\n"
-"account. You can reconnect your %2$s account to Facebook at any time by\n"
-"logging in with Facebook again.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""
-
-#. TRANS: E-mail subject. %s is the StatusNet sitename.
-#: lib/facebookclient.php:846
-#, php-format
-msgid "Contact the %s administrator to retrieve your account"
-msgstr ""
-
-#. TRANS: E-mail body. %1$s is a username,
-#. TRANS: %2$s is the StatusNet sitename, %3$s is the site contact e-mail
-#. address.
-#: lib/facebookclient.php:850
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"We have noticed you have deauthorized the Facebook connection for your\n"
-"%2$s account. You have not set a password for your %2$s account yet, so\n"
-"you will not be able to login. If you wish to continue using your %2$s\n"
-"account, please contact the site administrator (%3$s) to set a password.\n"
-"\n"
-"Sincerely,\n"
-"\n"
-"%2$s\n"
-msgstr ""