Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
This commit is contained in:
commit
7ebd13fa69
15
EVENTS.txt
15
EVENTS.txt
|
@ -699,3 +699,18 @@ StartShowContentLicense: Showing the default license for content
|
|||
|
||||
EndShowContentLicense: Showing the default license for content
|
||||
- $action: the current action
|
||||
|
||||
StartUserRegister: When a new user is being registered
|
||||
- &$profile: new profile data (no ID)
|
||||
- &$user: new user account (no ID or URI)
|
||||
|
||||
EndUserRegister: When a new user has been registered
|
||||
- &$profile: new profile data
|
||||
- &$user: new user account
|
||||
|
||||
StartRobotsTxt: Before outputting the robots.txt page
|
||||
- &$action: RobotstxtAction being shown
|
||||
|
||||
EndRobotsTxt: After the default robots.txt page (good place for customization)
|
||||
- &$action: RobotstxtAction being shown
|
||||
|
||||
|
|
127
README
127
README
|
@ -2,8 +2,8 @@
|
|||
README
|
||||
------
|
||||
|
||||
StatusNet 0.9.0 ("Stand") Beta 3
|
||||
20 Jan 2010
|
||||
StatusNet 0.9.0 ("Stand") Beta 5
|
||||
1 Feb 2010
|
||||
|
||||
This is the README file for StatusNet (formerly Laconica), the Open
|
||||
Source microblogging platform. It includes installation instructions,
|
||||
|
@ -78,6 +78,11 @@ New this version
|
|||
================
|
||||
|
||||
This is a major feature release since version 0.8.2, released Nov 1 2009.
|
||||
It is also a security release since 0.9.0beta4 January 27 2010. Beta
|
||||
users are strongly encouraged to upgrade to deal with a security alert.
|
||||
|
||||
http://status.net/wiki/Security_alert_0000002
|
||||
|
||||
Notable changes this version:
|
||||
|
||||
- Records of deleted notices are stored without the notice content.
|
||||
|
@ -198,6 +203,77 @@ Notable changes this version:
|
|||
- Major refactoring of queue handlers to manage very
|
||||
large hosting site (like status.net)
|
||||
- SubscriptionThrottle plugin to prevent subscription spamming
|
||||
- Don't enqueue into plugin or SMS queues when disabled (breaks unqueuehandler if SMS queue isn't attached)
|
||||
- Improve name validation checks on local File references
|
||||
- fix local file include vulnerability in doc.php
|
||||
- Reusing fixed selector name for 'processing' in util.js
|
||||
- Removed hAtom pattern from registration page.
|
||||
- restructuring of User::registerNew() lost password munging
|
||||
- Add a script to clear the cache for a given key
|
||||
- buggy fetch for site owner
|
||||
- Added missing concat of </li> in Realtime response
|
||||
- Updated XHR binded events to work better in jQuery 1.4.1. Using .live() for event delegation instead of jQuery.data() and checking to see if an element was previously binded.
|
||||
- Updated jQuery Form Plugin from v2.17 to v2.36
|
||||
- Updated jQuery JavaScript Library from v1.3.2 to v1.4.1
|
||||
- move schema.type.php to typeschema.php like other files
|
||||
- Add Really Simple Discovery (RSD) support
|
||||
- Add a robots.txt URL to the site root
|
||||
- error clearing tags for profiles from memcached
|
||||
- on exceptions, stomp logs the error and reenqueues
|
||||
- add lat, lon, location and remove closing tag from geocode.php
|
||||
- Use passed-in lat long in geocode.php
|
||||
- better handling of null responses from geonames.org
|
||||
- Globalized form notice data geo values
|
||||
- Using jQuery chaining in FormNoticeXHR
|
||||
- Using form object instead of form_id and find(). Slightly faster and easier to read.
|
||||
- removed describeTable from base class, and fixed it up in pgsql
|
||||
- getTableDef() mostly working in postgres
|
||||
- move the schema DDL sql off into seperate files for each db we support
|
||||
- plugin to limit number of registered users
|
||||
- add hooks for user registration
|
||||
- live fast, die young in bash scripts
|
||||
- for single-user mode, retrieve either site owner or defined nickname
|
||||
- method to get the site owner
|
||||
- define a constant for the 'owner' role of a site
|
||||
- add simple cache getter/setter static functions to Memcached_DataObject
|
||||
- Adds notice author's name to @title in Realtime response
|
||||
- Hides .author from XHR response in showstream
|
||||
- Hides .author from XHR response in showstream
|
||||
- Fix more fatal errors in queue edge cases
|
||||
- Don't attempt to resend XMPP messages that can't be broadcast due to the profile being deleted.
|
||||
- Wrap each bit of distrib queue handler's saving operation in a try/catch; log exceptions but let everything else continue.
|
||||
- Log exceptions from queuedaemon.php if they're not already caught
|
||||
- Move sessions settings to its own panel
|
||||
- Fixes for status_network db object .ini and tag setter script
|
||||
- Add a script to set tags for sites
|
||||
- Adjust API authentication to also check for OAuth protocol params in the HTTP Authorization header, as defined in OAuth HTTP Authorization Scheme.
|
||||
- Last-chance distribution if enqueueing fails
|
||||
- Manual failover for stomp queues.
|
||||
- lost config in index.php made all traffic go to master
|
||||
- "Revert "move RW setup above user get in index.php so remember_me works""
|
||||
- Revert "move RW setup above user get in index.php so remember_me works"
|
||||
- move RW setup above user get in index.php so remember_me works
|
||||
- hide most DB_DataObject errors
|
||||
- always set up database_rw, regardless, so cached sessions work
|
||||
- update mysqltimestamps on insert and update
|
||||
- additional debugging data for Sessions
|
||||
- 'Sign in with Twitter' button img
|
||||
- Update to biz theme
|
||||
- Remove redundant session token field from form (was already being added by base class).
|
||||
- 'Sign in with Twitter' button img
|
||||
- Can now set $config['queue']['stomp_persistent'] = false; to explicitly disable persistence when we queue items
|
||||
- Showing processing indicator for form_repeat on submit instead of form
|
||||
- Removed avatar from repeat of username (matches noticelist)
|
||||
- Removed unused variable assignment for avatar URL and added missing fn
|
||||
- Don't preemptively close existing DB connections for web views (needed to keep # of conns from going insane on multi-site queue daemons, so just doing for CLI) May, or may not, help with mystery session problems
|
||||
- dropping the setcookie() call from common_ensure_session() since we're pretty sure it's unnecessary
|
||||
- append '/' on cookie path for now (may still need some refactoring)
|
||||
- set session cookie correctly
|
||||
- Fix for Mapstraction plugin's zoomed map links
|
||||
- debug log line for control channel sub
|
||||
- Move faceboookapp.js to the Facebook plugin
|
||||
- fix for fix for bad realtime JS load
|
||||
- default 24-hour expiry on Memcached objects where not specified.
|
||||
|
||||
Prerequisites
|
||||
=============
|
||||
|
@ -597,26 +673,19 @@ server is probably a good idea for high-volume sites.
|
|||
needs as a parameter the install path; if you run it from the
|
||||
StatusNet dir, "." should suffice.
|
||||
|
||||
This will run eight (for now) queue handlers:
|
||||
This will run the queue handlers:
|
||||
|
||||
* queuedaemon.php - polls for queued items for inbox processing and
|
||||
pushing out to OMB, SMS, XMPP, etc.
|
||||
* xmppdaemon.php - listens for new XMPP messages from users and stores
|
||||
them as notices in the database.
|
||||
* jabberqueuehandler.php - sends queued notices in the database to
|
||||
registered users who should receive them.
|
||||
* publicqueuehandler.php - sends queued notices in the database to
|
||||
public feed listeners.
|
||||
* ombqueuehandler.php - sends queued notices to OpenMicroBlogging
|
||||
recipients on foreign servers.
|
||||
* smsqueuehandler.php - sends queued notices to SMS-over-email addresses
|
||||
of registered users.
|
||||
* xmppconfirmhandler.php - sends confirmation messages to registered
|
||||
users.
|
||||
them as notices in the database; also pulls queued XMPP output from
|
||||
queuedaemon.php to push out to clients.
|
||||
|
||||
Note that these queue daemons are pretty raw, and need your care. In
|
||||
particular, they leak memory, and you may want to restart them on a
|
||||
regular (daily or so) basis with a cron job. Also, if they lose
|
||||
the connection to the XMPP server for too long, they'll simply die. It
|
||||
may be a good idea to use a daemon-monitoring service, like 'monit',
|
||||
These two daemons will automatically restart in most cases of failure
|
||||
including memory leaks (if a memory_limit is set), but may still die
|
||||
or behave oddly if they lose connections to the XMPP or queue servers.
|
||||
|
||||
It may be a good idea to use a daemon-monitoring service, like 'monit',
|
||||
to check their status and keep them running.
|
||||
|
||||
All the daemons write their process IDs (pids) to /var/run/ by
|
||||
|
@ -626,7 +695,7 @@ daemons.
|
|||
Since version 0.8.0, it's now possible to use a STOMP server instead of
|
||||
our kind of hacky home-grown DB-based queue solution. See the "queues"
|
||||
config section below for how to configure to use STOMP. As of this
|
||||
writing, the software has been tested with ActiveMQ (
|
||||
writing, the software has been tested with ActiveMQ.
|
||||
|
||||
Sitemaps
|
||||
--------
|
||||
|
@ -712,10 +781,12 @@ subdirectory to add a new language to your system. You'll need to
|
|||
compile the ".po" files into ".mo" files, however.
|
||||
|
||||
Contributions of translation information to StatusNet are very easy:
|
||||
you can use the Web interface at http://status.net/pootle/ to add one
|
||||
you can use the Web interface at TranslateWiki.net to add one
|
||||
or a few or lots of new translations -- or even new languages. You can
|
||||
also download more up-to-date .po files there, if you so desire.
|
||||
|
||||
For info on helping with translations, see http://status.net/wiki/Translations
|
||||
|
||||
Backups
|
||||
-------
|
||||
|
||||
|
@ -1501,6 +1572,20 @@ interface. It also makes the user's profile the root URL.
|
|||
enabled: Whether to run in "single user mode". Default false.
|
||||
nickname: nickname of the single user.
|
||||
|
||||
robotstxt
|
||||
---------
|
||||
|
||||
We put out a default robots.txt file to guide the processing of
|
||||
Web crawlers. See http://www.robotstxt.org/ for more information
|
||||
on the format of this file.
|
||||
|
||||
crawldelay: if non-empty, this value is provided as the Crawl-Delay:
|
||||
for the robots.txt file. see http://ur1.ca/l5a0
|
||||
for more information. Default is zero, no explicit delay.
|
||||
disallow: Array of (virtual) directories to disallow. Default is 'main',
|
||||
'search', 'message', 'settings', 'admin'. Ignored when site
|
||||
is private, in which case the entire site ('/') is disallowed.
|
||||
|
||||
Plugins
|
||||
=======
|
||||
|
||||
|
|
|
@ -67,8 +67,6 @@ class ApiOauthAuthorizeAction extends ApiOauthAction
|
|||
{
|
||||
parent::prepare($args);
|
||||
|
||||
common_debug("apioauthauthorize");
|
||||
|
||||
$this->nickname = $this->trimmed('nickname');
|
||||
$this->password = $this->arg('password');
|
||||
$this->oauth_token = $this->arg('oauth_token');
|
||||
|
@ -99,24 +97,17 @@ class ApiOauthAuthorizeAction extends ApiOauthAction
|
|||
|
||||
} else {
|
||||
|
||||
// XXX: make better error messages
|
||||
|
||||
if (empty($this->oauth_token)) {
|
||||
|
||||
common_debug("No request token found.");
|
||||
|
||||
$this->clientError(_('Bad request.'));
|
||||
$this->clientError(_('No oauth_token parameter provided.'));
|
||||
return;
|
||||
}
|
||||
|
||||
if (empty($this->app)) {
|
||||
common_debug('No app for that token.');
|
||||
$this->clientError(_('Bad request.'));
|
||||
$this->clientError(_('Invalid token.'));
|
||||
return;
|
||||
}
|
||||
|
||||
$name = $this->app->name;
|
||||
common_debug("Requesting auth for app: " . $name);
|
||||
|
||||
$this->showForm();
|
||||
}
|
||||
|
@ -124,8 +115,6 @@ class ApiOauthAuthorizeAction extends ApiOauthAction
|
|||
|
||||
function handlePost()
|
||||
{
|
||||
common_debug("handlePost()");
|
||||
|
||||
// check session token for CSRF protection.
|
||||
|
||||
$token = $this->trimmed('token');
|
||||
|
@ -202,21 +191,15 @@ class ApiOauthAuthorizeAction extends ApiOauthAction
|
|||
// A callback specified in the app setup overrides whatever
|
||||
// is passed in with the request.
|
||||
|
||||
common_debug("Req token is authorized - doing callback");
|
||||
|
||||
if (!empty($this->app->callback_url)) {
|
||||
$this->callback = $this->app->callback_url;
|
||||
}
|
||||
|
||||
if (!empty($this->callback)) {
|
||||
|
||||
// XXX: Need better way to build this redirect url.
|
||||
|
||||
$target_url = $this->getCallback($this->callback,
|
||||
array('oauth_token' => $this->oauth_token));
|
||||
|
||||
common_debug("Doing callback to $target_url");
|
||||
|
||||
common_redirect($target_url, 303);
|
||||
} else {
|
||||
common_debug("callback was empty!");
|
||||
|
@ -236,9 +219,12 @@ class ApiOauthAuthorizeAction extends ApiOauthAction
|
|||
|
||||
} else if ($this->arg('deny')) {
|
||||
|
||||
$datastore = new ApiStatusNetOAuthDataStore();
|
||||
$datastore->revoke_token($this->oauth_token, 0);
|
||||
|
||||
$this->elementStart('p');
|
||||
|
||||
$this->raw(sprintf(_("The request token %s has been denied."),
|
||||
$this->raw(sprintf(_("The request token %s has been denied and revoked."),
|
||||
$this->oauth_token));
|
||||
|
||||
$this->elementEnd('p');
|
||||
|
@ -303,13 +289,17 @@ class ApiOauthAuthorizeAction extends ApiOauthAction
|
|||
$access = ($this->app->access_type & Oauth_application::$writeAccess) ?
|
||||
'access and update' : 'access';
|
||||
|
||||
$msg = _("The application <strong>%1$s</strong> by <strong>%2$s</strong> would like " .
|
||||
"the ability to <strong>%3$s</strong> your account data.");
|
||||
$msg = _('The application <strong>%1$s</strong> by ' .
|
||||
'<strong>%2$s</strong> would like the ability ' .
|
||||
'to <strong>%3$s</strong> your %4$s account data. ' .
|
||||
'You should only give access to your %4$s account ' .
|
||||
'to third parties you trust.');
|
||||
|
||||
$this->raw(sprintf($msg,
|
||||
$this->app->name,
|
||||
$this->app->organization,
|
||||
$access));
|
||||
$access,
|
||||
common_config('site', 'name')));
|
||||
$this->elementEnd('p');
|
||||
$this->elementEnd('li');
|
||||
$this->elementEnd('ul');
|
||||
|
@ -371,6 +361,31 @@ class ApiOauthAuthorizeAction extends ApiOauthAction
|
|||
|
||||
function showLocalNav()
|
||||
{
|
||||
// NOP
|
||||
}
|
||||
|
||||
/**
|
||||
* Show site notice.
|
||||
*
|
||||
* @return nothing
|
||||
*/
|
||||
|
||||
function showSiteNotice()
|
||||
{
|
||||
// NOP
|
||||
}
|
||||
|
||||
/**
|
||||
* Show notice form.
|
||||
*
|
||||
* Show the form for posting a new notice
|
||||
*
|
||||
* @return nothing
|
||||
*/
|
||||
|
||||
function showNoticeForm()
|
||||
{
|
||||
// NOP
|
||||
}
|
||||
|
||||
}
|
||||
|
|
176
actions/deleteapplication.php
Normal file
176
actions/deleteapplication.php
Normal file
|
@ -0,0 +1,176 @@
|
|||
<?php
|
||||
/**
|
||||
* StatusNet, the distributed open-source microblogging tool
|
||||
*
|
||||
* Action class to delete an OAuth application
|
||||
*
|
||||
* 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 Action
|
||||
* @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') && !defined('LACONICA')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete an OAuth appliction
|
||||
*
|
||||
* @category Action
|
||||
* @package StatusNet
|
||||
* @author Zach Copley <zach@status.net>
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class DeleteapplicationAction extends Action
|
||||
{
|
||||
var $app = null;
|
||||
|
||||
/**
|
||||
* Take arguments for running
|
||||
*
|
||||
* @param array $args $_REQUEST args
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
function prepare($args)
|
||||
{
|
||||
if (!parent::prepare($args)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!common_logged_in()) {
|
||||
$this->clientError(_('You must be logged in to delete an application.'));
|
||||
return false;
|
||||
}
|
||||
|
||||
$id = (int)$this->arg('id');
|
||||
$this->app = Oauth_application::staticGet('id', $id);
|
||||
|
||||
if (empty($this->app)) {
|
||||
$this->clientError(_('Application not found.'));
|
||||
return false;
|
||||
}
|
||||
|
||||
$cur = common_current_user();
|
||||
|
||||
if ($cur->id != $this->app->owner) {
|
||||
$this->clientError(_('You are not the owner of this application.'), 401);
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handle request
|
||||
*
|
||||
* Shows a page with list of favorite notices
|
||||
*
|
||||
* @param array $args $_REQUEST args; handled in prepare()
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function handle($args)
|
||||
{
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
|
||||
// CSRF protection
|
||||
$token = $this->trimmed('token');
|
||||
if (!$token || $token != common_session_token()) {
|
||||
$this->clientError(_('There was a problem with your session token.'));
|
||||
return;
|
||||
}
|
||||
|
||||
if ($this->arg('no')) {
|
||||
common_redirect(common_local_url('showapplication',
|
||||
array('id' => $this->app->id)), 303);
|
||||
} elseif ($this->arg('yes')) {
|
||||
$this->handlePost();
|
||||
common_redirect(common_local_url('oauthappssettings'), 303);
|
||||
} else {
|
||||
$this->showPage();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function showContent() {
|
||||
$this->areYouSureForm();
|
||||
}
|
||||
|
||||
function title() {
|
||||
return _('Delete application');
|
||||
}
|
||||
|
||||
function showNoticeForm() {
|
||||
// nop
|
||||
}
|
||||
|
||||
/**
|
||||
* Confirm with user.
|
||||
*
|
||||
* Shows a confirmation form.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function areYouSureForm()
|
||||
{
|
||||
$id = $this->app->id;
|
||||
$this->elementStart('form', array('id' => 'deleteapplication-' . $id,
|
||||
'method' => 'post',
|
||||
'class' => 'form_settings form_entity_block',
|
||||
'action' => common_local_url('deleteapplication',
|
||||
array('id' => $this->app->id))));
|
||||
$this->elementStart('fieldset');
|
||||
$this->hidden('token', common_session_token());
|
||||
$this->element('legend', _('Delete application'));
|
||||
$this->element('p', null,
|
||||
_('Are you sure you want to delete this application? '.
|
||||
'This will clear all data about the application from the '.
|
||||
'database, including all existing user connections.'));
|
||||
$this->submit('form_action-no',
|
||||
_('No'),
|
||||
'submit form_action-primary',
|
||||
'no',
|
||||
_("Do not delete this application"));
|
||||
$this->submit('form_action-yes',
|
||||
_('Yes'),
|
||||
'submit form_action-secondary',
|
||||
'yes', _('Delete this application'));
|
||||
$this->elementEnd('fieldset');
|
||||
$this->elementEnd('form');
|
||||
}
|
||||
|
||||
/**
|
||||
* Actually delete the app
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function handlePost()
|
||||
{
|
||||
$this->app->delete();
|
||||
}
|
||||
}
|
||||
|
|
@ -54,6 +54,9 @@ class DocAction extends Action
|
|||
parent::prepare($args);
|
||||
|
||||
$this->title = $this->trimmed('title');
|
||||
if (!preg_match('/^[a-zA-Z0-9_-]*$/', $this->title)) {
|
||||
$this->title = 'help';
|
||||
}
|
||||
$this->output = null;
|
||||
|
||||
$this->loadDoc();
|
||||
|
|
|
@ -179,6 +179,9 @@ class EditApplicationAction extends OwnerDesignAction
|
|||
} elseif (mb_strlen($name) > 255) {
|
||||
$this->showForm(_('Name is too long (max 255 chars).'));
|
||||
return;
|
||||
} else if ($this->nameExists($name)) {
|
||||
$this->showForm(_('Name already in use. Try another one.'));
|
||||
return;
|
||||
} elseif (empty($description)) {
|
||||
$this->showForm(_('Description is required.'));
|
||||
return;
|
||||
|
@ -260,5 +263,26 @@ class EditApplicationAction extends OwnerDesignAction
|
|||
common_redirect(common_local_url('oauthappssettings'), 303);
|
||||
}
|
||||
|
||||
/**
|
||||
* Does the app name already exist?
|
||||
*
|
||||
* Checks the DB to see someone has already registered an app
|
||||
* with the same name.
|
||||
*
|
||||
* @param string $name app name to check
|
||||
*
|
||||
* @return boolean true if the name already exists
|
||||
*/
|
||||
|
||||
function nameExists($name)
|
||||
{
|
||||
$newapp = Oauth_application::staticGet('name', $name);
|
||||
if (!$newapp) {
|
||||
return false;
|
||||
} else {
|
||||
return $newapp->id != $this->app->id;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -42,6 +42,10 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
*/
|
||||
class GeocodeAction extends Action
|
||||
{
|
||||
var $lat = null;
|
||||
var $lon = null;
|
||||
var $location = null;
|
||||
|
||||
function prepare($args)
|
||||
{
|
||||
parent::prepare($args);
|
||||
|
@ -52,12 +56,7 @@ class GeocodeAction extends Action
|
|||
}
|
||||
$this->lat = $this->trimmed('lat');
|
||||
$this->lon = $this->trimmed('lon');
|
||||
$location = Location::fromLatLon($this->lat, $this->lon);
|
||||
if ($location) {
|
||||
$this->location = Location::fromId($location->location_id, $location->location_ns);
|
||||
$this->lat = $this->location->lat;
|
||||
$this->lon = $this->location->lon;
|
||||
}
|
||||
$this->location = Location::fromLatLon($this->lat, $this->lon);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -95,4 +94,3 @@ class GeocodeAction extends Action
|
|||
return true;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
|
@ -71,7 +71,7 @@ class GetfileAction extends Action
|
|||
$filename = $this->trimmed('filename');
|
||||
$path = null;
|
||||
|
||||
if ($filename) {
|
||||
if ($filename && File::validFilename($filename)) {
|
||||
$path = File::path($filename);
|
||||
}
|
||||
|
||||
|
|
|
@ -158,6 +158,9 @@ class NewApplicationAction extends OwnerDesignAction
|
|||
if (empty($name)) {
|
||||
$this->showForm(_('Name is required.'));
|
||||
return;
|
||||
} else if ($this->nameExists($name)) {
|
||||
$this->showForm(_('Name already in use. Try another one.'));
|
||||
return;
|
||||
} elseif (mb_strlen($name) > 255) {
|
||||
$this->showForm(_('Name is too long (max 255 chars).'));
|
||||
return;
|
||||
|
@ -273,5 +276,22 @@ class NewApplicationAction extends OwnerDesignAction
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
* Does the app name already exist?
|
||||
*
|
||||
* Checks the DB to see someone has already registered an app
|
||||
* with the same name.
|
||||
*
|
||||
* @param string $name app name to check
|
||||
*
|
||||
* @return boolean true if the name already exists
|
||||
*/
|
||||
|
||||
function nameExists($name)
|
||||
{
|
||||
$app = Oauth_application::staticGet('name', $name);
|
||||
return ($app !== false);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
|||
|
||||
require_once INSTALLDIR . '/lib/connectsettingsaction.php';
|
||||
require_once INSTALLDIR . '/lib/applicationlist.php';
|
||||
require_once INSTALLDIR . '/lib/apioauthstore.php';
|
||||
|
||||
/**
|
||||
* Show connected OAuth applications
|
||||
|
@ -71,11 +72,6 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction
|
|||
return _('Connected applications');
|
||||
}
|
||||
|
||||
function isReadOnly($args)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Instructions for use
|
||||
*
|
||||
|
@ -153,6 +149,13 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Revoke access to an authorized OAuth application
|
||||
*
|
||||
* @param int $appId the ID of the application
|
||||
*
|
||||
*/
|
||||
|
||||
function revokeAccess($appId)
|
||||
{
|
||||
$cur = common_current_user();
|
||||
|
@ -164,6 +167,8 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction
|
|||
return false;
|
||||
}
|
||||
|
||||
// XXX: Transaction here?
|
||||
|
||||
$appUser = Oauth_application_user::getByKeys($cur, $app);
|
||||
|
||||
if (empty($appUser)) {
|
||||
|
@ -171,12 +176,13 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction
|
|||
return false;
|
||||
}
|
||||
|
||||
$orig = clone($appUser);
|
||||
$appUser->access_type = 0; // No access
|
||||
$result = $appUser->update();
|
||||
$datastore = new ApiStatusNetOAuthDataStore();
|
||||
$datastore->revoke_token($appUser->token, 1);
|
||||
|
||||
$result = $appUser->delete();
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($orig, 'UPDATE', __FILE__);
|
||||
common_log_db_error($orig, 'DELETE', __FILE__);
|
||||
$this->clientError(_('Unable to revoke access for app: ' . $app->id));
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -131,12 +131,20 @@ class PublicAction extends Action
|
|||
return _('Public timeline');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function extraHead()
|
||||
{
|
||||
parent::extraHead();
|
||||
$this->element('meta', array('http-equiv' => 'X-XRDS-Location',
|
||||
'content' => common_local_url('publicxrds')));
|
||||
|
||||
$rsd = common_local_url('rsd');
|
||||
|
||||
// RSD, http://tales.phrasewise.com/rfc/rsd
|
||||
|
||||
$this->element('link', array('rel' => 'EditURI',
|
||||
'type' => 'application/rsd+xml',
|
||||
'href' => $rsd));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
100
actions/robotstxt.php
Normal file
100
actions/robotstxt.php
Normal file
|
@ -0,0 +1,100 @@
|
|||
<?php
|
||||
/**
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2010, StatusNet, Inc.
|
||||
*
|
||||
* robots.txt generator
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* @category Action
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@status.net>
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
||||
* @link http://status.net/
|
||||
*
|
||||
* 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);
|
||||
}
|
||||
|
||||
/**
|
||||
* Prints out a static robots.txt
|
||||
*
|
||||
* @category Action
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@status.net>
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class RobotstxtAction extends Action
|
||||
{
|
||||
/**
|
||||
* Handles requests
|
||||
*
|
||||
* Since this is a relatively static document, we
|
||||
* don't do a prepare()
|
||||
*
|
||||
* @param array $args GET, POST, and URL params; unused.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function handle($args)
|
||||
{
|
||||
if (Event::handle('StartRobotsTxt', array($this))) {
|
||||
|
||||
header('Content-Type: text/plain');
|
||||
|
||||
print "User-Agent: *\n";
|
||||
|
||||
if (common_config('site', 'private')) {
|
||||
|
||||
print "Disallow: /\n";
|
||||
|
||||
} else {
|
||||
|
||||
$disallow = common_config('robotstxt', 'disallow');
|
||||
|
||||
foreach ($disallow as $dir) {
|
||||
print "Disallow: /$dir/\n";
|
||||
}
|
||||
|
||||
$crawldelay = common_config('robotstxt', 'crawldelay');
|
||||
|
||||
if (!empty($crawldelay)) {
|
||||
print "Crawl-delay: " . $crawldelay . "\n";
|
||||
}
|
||||
}
|
||||
|
||||
Event::handle('EndRobotsTxt', array($this));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Return true; this page doesn't touch the DB.
|
||||
*
|
||||
* @param array $args other arguments
|
||||
*
|
||||
* @return boolean is read only action?
|
||||
*/
|
||||
|
||||
function isReadOnly($args)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
226
actions/rsd.php
Normal file
226
actions/rsd.php
Normal file
|
@ -0,0 +1,226 @@
|
|||
<?php
|
||||
/**
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2008-2010, StatusNet, Inc.
|
||||
*
|
||||
* Really Simple Discovery (RSD) for API access
|
||||
*
|
||||
* 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 API
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@status.net>
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
||||
* @link http://status.net/
|
||||
*
|
||||
*/
|
||||
|
||||
if (!defined('STATUSNET')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* RSD action class
|
||||
*
|
||||
* Really Simple Discovery (RSD) is a simple (to a fault, maybe)
|
||||
* discovery tool for blog APIs.
|
||||
*
|
||||
* http://tales.phrasewise.com/rfc/rsd
|
||||
*
|
||||
* Anil Dash suggested that RSD be used for services that implement
|
||||
* the Twitter API:
|
||||
*
|
||||
* http://dashes.com/anil/2009/12/the-twitter-api-is-finished.html
|
||||
*
|
||||
* It's in use now for WordPress.com blogs:
|
||||
*
|
||||
* http://matt.wordpress.com/xmlrpc.php?rsd
|
||||
*
|
||||
* I (evan@status.net) have tried to stay faithful to the premise of
|
||||
* RSD, while adding information useful to StatusNet client developers.
|
||||
* In particular:
|
||||
*
|
||||
* - There is a link from each user's profile page to their personal
|
||||
* RSD feed. A personal rsd.xml includes a 'blogID' element that is
|
||||
* their username.
|
||||
* - There is a link from the public root to '/rsd.xml', a public RSD
|
||||
* feed. It's identical to the personal rsd except it doesn't include
|
||||
* a blogId.
|
||||
* - I've added a setting to the API to indicate that OAuth support is
|
||||
* available.
|
||||
*
|
||||
* @category API
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@status.net>
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
class RsdAction extends Action
|
||||
{
|
||||
/**
|
||||
* Optional attribute for the personal rsd.xml file.
|
||||
*/
|
||||
|
||||
var $user = null;
|
||||
|
||||
/**
|
||||
* Prepare the action for use.
|
||||
*
|
||||
* Check for a nickname; redirect if non-canonical; if
|
||||
* not provided, assume public rsd.xml.
|
||||
*
|
||||
* @param array $args GET, POST, and URI arguments.
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
function prepare($args)
|
||||
{
|
||||
parent::prepare($args);
|
||||
|
||||
// optional argument
|
||||
|
||||
$nickname_arg = $this->arg('nickname');
|
||||
|
||||
if (empty($nickname_arg)) {
|
||||
$this->user = null;
|
||||
} else {
|
||||
$nickname = common_canonical_nickname($nickname_arg);
|
||||
|
||||
// Permanent redirect on non-canonical nickname
|
||||
|
||||
if ($nickname_arg != $nickname) {
|
||||
common_redirect(common_local_url('rsd',
|
||||
array('nickname' => $nickname)),
|
||||
301);
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->user = User::staticGet('nickname', $nickname);
|
||||
|
||||
if (empty($this->user)) {
|
||||
$this->clientError(_('No such user.'), 404);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Action handler.
|
||||
*
|
||||
* Outputs the XML format for an RSD file. May include
|
||||
* personal information if this is a personal file
|
||||
* (based on whether $user attribute is set).
|
||||
*
|
||||
* @param array $args array of arguments
|
||||
*
|
||||
* @return nothing
|
||||
*/
|
||||
|
||||
function handle($args)
|
||||
{
|
||||
header('Content-Type: application/rsd+xml');
|
||||
|
||||
$this->startXML();
|
||||
|
||||
$rsdNS = 'http://archipelago.phrasewise.com/rsd';
|
||||
$this->elementStart('rsd', array('version' => '1.0',
|
||||
'xmlns' => $rsdNS));
|
||||
$this->elementStart('service');
|
||||
$this->element('engineName', null, _('StatusNet'));
|
||||
$this->element('engineLink', null, 'http://status.net/');
|
||||
$this->elementStart('apis');
|
||||
if (Event::handle('StartRsdListApis', array($this, $this->user))) {
|
||||
|
||||
$blogID = (empty($this->user)) ? '' : $this->user->nickname;
|
||||
$apiAttrs = array('name' => 'Twitter',
|
||||
'preferred' => 'true',
|
||||
'apiLink' => $this->_apiRoot(),
|
||||
'blogID' => $blogID);
|
||||
|
||||
$this->elementStart('api', $apiAttrs);
|
||||
$this->elementStart('settings');
|
||||
$this->element('docs', null,
|
||||
'http://status.net/wiki/TwitterCompatibleAPI');
|
||||
$this->element('setting', array('name' => 'OAuth'),
|
||||
'true');
|
||||
$this->elementEnd('settings');
|
||||
$this->elementEnd('api');
|
||||
Event::handle('EndRsdListApis', array($this, $this->user));
|
||||
}
|
||||
$this->elementEnd('apis');
|
||||
$this->elementEnd('service');
|
||||
$this->elementEnd('rsd');
|
||||
|
||||
$this->endXML();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns last-modified date for use in caching
|
||||
*
|
||||
* Per-user rsd.xml is dated to last change of user
|
||||
* (in case of nickname change); public has no date.
|
||||
*
|
||||
* @return string date of last change of this page
|
||||
*/
|
||||
|
||||
function lastModified()
|
||||
{
|
||||
if (!empty($this->user)) {
|
||||
return $this->user->modified;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Flag to indicate if this action is read-only
|
||||
*
|
||||
* It is; it doesn't change the DB.
|
||||
*
|
||||
* @param array $args ignored
|
||||
*
|
||||
* @return boolean true
|
||||
*/
|
||||
|
||||
function isReadOnly($args)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return current site's API root
|
||||
*
|
||||
* Varies based on URL parameters, like if fancy URLs are
|
||||
* turned on.
|
||||
*
|
||||
* @return string API root URI for this site
|
||||
*/
|
||||
|
||||
private function _apiRoot()
|
||||
{
|
||||
if (common_config('site', 'fancy')) {
|
||||
return common_path('api/', true);
|
||||
} else {
|
||||
return common_path('index.php/api/', true);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -149,7 +149,6 @@ class ShowApplicationAction extends OwnerDesignAction
|
|||
|
||||
function showContent()
|
||||
{
|
||||
|
||||
$cur = common_current_user();
|
||||
|
||||
$consumer = $this->application->getConsumer();
|
||||
|
@ -201,7 +200,7 @@ class ShowApplicationAction extends OwnerDesignAction
|
|||
$userCnt = $appUsers->count();
|
||||
|
||||
$this->raw(sprintf(
|
||||
_('created by %1$s - %2$s access by default - %3$d users'),
|
||||
_('Created by %1$s - %2$s access by default - %3$d users'),
|
||||
$profile->getBestName(),
|
||||
$defaultAccess,
|
||||
$userCnt
|
||||
|
@ -222,18 +221,39 @@ class ShowApplicationAction extends OwnerDesignAction
|
|||
|
||||
$this->elementStart('li', 'entity_reset_keysecret');
|
||||
$this->elementStart('form', array(
|
||||
'id' => 'forma_reset_key',
|
||||
'id' => 'form_reset_key',
|
||||
'class' => 'form_reset_key',
|
||||
'method' => 'POST',
|
||||
'action' => common_local_url('showapplication',
|
||||
array('id' => $this->application->id))));
|
||||
|
||||
$this->elementStart('fieldset');
|
||||
$this->hidden('token', common_session_token());
|
||||
$this->submit('reset', _('Reset key & secret'));
|
||||
|
||||
$this->element('input', array('type' => 'submit',
|
||||
'id' => 'reset',
|
||||
'name' => 'reset',
|
||||
'class' => 'submit',
|
||||
'value' => _('Reset key & secret'),
|
||||
'onClick' => 'return confirmReset()'));
|
||||
$this->elementEnd('fieldset');
|
||||
$this->elementEnd('form');
|
||||
$this->elementEnd('li');
|
||||
|
||||
$this->elementStart('li', 'entity_delete');
|
||||
$this->elementStart('form', array(
|
||||
'id' => 'form_delete_application',
|
||||
'class' => 'form_delete_application',
|
||||
'method' => 'POST',
|
||||
'action' => common_local_url('deleteapplication',
|
||||
array('id' => $this->application->id))));
|
||||
|
||||
$this->elementStart('fieldset');
|
||||
$this->hidden('token', common_session_token());
|
||||
$this->submit('delete', _('Delete'));
|
||||
$this->elementEnd('fieldset');
|
||||
$this->elementEnd('form');
|
||||
$this->elementEnd('li');
|
||||
|
||||
$this->elementEnd('ul');
|
||||
$this->elementEnd('div');
|
||||
|
||||
|
@ -276,14 +296,53 @@ class ShowApplicationAction extends OwnerDesignAction
|
|||
$this->elementEnd('p');
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a confirm script for Consumer key/secret reset
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function showScripts()
|
||||
{
|
||||
parent::showScripts();
|
||||
|
||||
$msg = _('Are you sure you want to reset your consumer key and secret?');
|
||||
|
||||
$js = 'function confirmReset() { ';
|
||||
$js .= ' var agree = confirm("' . $msg . '"); ';
|
||||
$js .= ' return agree;';
|
||||
$js .= '}';
|
||||
|
||||
$this->inlineScript($js);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reset an application's Consumer key and secret
|
||||
*
|
||||
* XXX: Should this be moved to its own page with a confirm?
|
||||
*
|
||||
*/
|
||||
|
||||
function resetKey()
|
||||
{
|
||||
$this->application->query('BEGIN');
|
||||
|
||||
$oauser = new Oauth_application_user();
|
||||
$oauser->application_id = $this->application->id;
|
||||
$result = $oauser->delete();
|
||||
|
||||
if ($result === false) {
|
||||
common_log_db_error($oauser, 'DELETE', __FILE__);
|
||||
$this->success = false;
|
||||
$this->msg = ('Unable to reset consumer key and secret.');
|
||||
$this->showPage();
|
||||
return;
|
||||
}
|
||||
|
||||
$consumer = $this->application->getConsumer();
|
||||
$result = $consumer->delete();
|
||||
|
||||
if (!$result) {
|
||||
if ($result === false) {
|
||||
common_log_db_error($consumer, 'DELETE', __FILE__);
|
||||
$this->success = false;
|
||||
$this->msg = ('Unable to reset consumer key and secret.');
|
||||
|
@ -295,7 +354,7 @@ class ShowApplicationAction extends OwnerDesignAction
|
|||
|
||||
$result = $consumer->insert();
|
||||
|
||||
if (!$result) {
|
||||
if (empty($result)) {
|
||||
common_log_db_error($consumer, 'INSERT', __FILE__);
|
||||
$this->application->query('ROLLBACK');
|
||||
$this->success = false;
|
||||
|
@ -308,7 +367,7 @@ class ShowApplicationAction extends OwnerDesignAction
|
|||
$this->application->consumer_key = $consumer->consumer_key;
|
||||
$result = $this->application->update($orig);
|
||||
|
||||
if (!$result) {
|
||||
if ($result === false) {
|
||||
common_log_db_error($application, 'UPDATE', __FILE__);
|
||||
$this->application->query('ROLLBACK');
|
||||
$this->success = false;
|
||||
|
|
|
@ -178,6 +178,15 @@ class ShowstreamAction extends ProfileAction
|
|||
$this->element('link', array('rel' => 'microsummary',
|
||||
'href' => common_local_url('microsummary',
|
||||
array('nickname' => $this->profile->nickname))));
|
||||
|
||||
$rsd = common_local_url('rsd',
|
||||
array('nickname' => $this->profile->nickname));
|
||||
|
||||
// RSD, http://tales.phrasewise.com/rfc/rsd
|
||||
$this->element('link', array('rel' => 'EditURI',
|
||||
'type' => 'application/rsd+xml',
|
||||
'href' => $rsd));
|
||||
|
||||
}
|
||||
|
||||
function showProfile()
|
||||
|
|
|
@ -127,10 +127,10 @@ class UserauthorizationAction extends Action
|
|||
$location = $params->getLocation();
|
||||
$avatar = $params->getAvatarURL();
|
||||
|
||||
$this->elementStart('div', array('class' => 'profile'));
|
||||
$this->elementStart('div', 'entity_profile vcard');
|
||||
$this->elementStart('a', array('href' => $profile,
|
||||
'class' => 'url'));
|
||||
$this->elementStart('dl', 'entity_depiction');
|
||||
$this->element('dt', null, _('Photo'));
|
||||
$this->elementStart('dd');
|
||||
if ($avatar) {
|
||||
$this->element('img', array('src' => $avatar,
|
||||
'class' => 'photo avatar',
|
||||
|
@ -138,11 +138,19 @@ class UserauthorizationAction extends Action
|
|||
'height' => AVATAR_PROFILE_SIZE,
|
||||
'alt' => $nickname));
|
||||
}
|
||||
$this->elementEnd('dd');
|
||||
$this->elementEnd('dl');
|
||||
|
||||
$this->elementStart('dl', 'entity_nickname');
|
||||
$this->element('dt', null, _('Nickname'));
|
||||
$this->elementStart('dd');
|
||||
$hasFN = ($fullname !== '') ? 'nickname' : 'fn nickname';
|
||||
$this->elementStart('span', $hasFN);
|
||||
$this->elementStart('a', array('href' => $profile,
|
||||
'class' => 'url '.$hasFN));
|
||||
$this->raw($nickname);
|
||||
$this->elementEnd('span');
|
||||
$this->elementEnd('a');
|
||||
$this->elementEnd('dd');
|
||||
$this->elementEnd('dl');
|
||||
|
||||
if (!is_null($fullname)) {
|
||||
$this->elementStart('dl', 'entity_fn');
|
||||
|
@ -214,7 +222,6 @@ class UserauthorizationAction extends Action
|
|||
$this->elementEnd('li');
|
||||
$this->elementEnd('ul');
|
||||
$this->elementEnd('div');
|
||||
$this->elementEnd('div');
|
||||
}
|
||||
|
||||
function sendAuthorization()
|
||||
|
@ -350,4 +357,4 @@ class UserauthorizationAction extends Action
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,4 +36,34 @@ class Consumer extends Memcached_DataObject
|
|||
return $cons;
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete a Consumer and related tokens and nonces
|
||||
*
|
||||
* XXX: Should this happen in an OAuthDataStore instead?
|
||||
*
|
||||
*/
|
||||
function delete()
|
||||
{
|
||||
// XXX: Is there any reason NOT to do this kind of cleanup?
|
||||
|
||||
$this->_deleteTokens();
|
||||
$this->_deleteNonces();
|
||||
|
||||
parent::delete();
|
||||
}
|
||||
|
||||
function _deleteTokens()
|
||||
{
|
||||
$token = new Token();
|
||||
$token->consumer_key = $this->consumer_key;
|
||||
$token->delete();
|
||||
}
|
||||
|
||||
function _deleteNonces()
|
||||
{
|
||||
$nonce = new Nonce();
|
||||
$nonce->consumer_key = $this->consumer_key;
|
||||
$nonce->delete();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -176,8 +176,22 @@ class File extends Memcached_DataObject
|
|||
return "$nickname-$datestamp-$random.$ext";
|
||||
}
|
||||
|
||||
/**
|
||||
* Validation for as-saved base filenames
|
||||
*/
|
||||
static function validFilename($filename)
|
||||
{
|
||||
return preg_match('/^[A-Za-z0-9._-]+$/', $filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws ClientException on invalid filename
|
||||
*/
|
||||
static function path($filename)
|
||||
{
|
||||
if (!self::validFilename($filename)) {
|
||||
throw new ClientException("Invalid filename");
|
||||
}
|
||||
$dir = common_config('attachments', 'dir');
|
||||
|
||||
if ($dir[strlen($dir)-1] != '/') {
|
||||
|
@ -189,6 +203,9 @@ class File extends Memcached_DataObject
|
|||
|
||||
static function url($filename)
|
||||
{
|
||||
if (!self::validFilename($filename)) {
|
||||
throw new ClientException("Invalid filename");
|
||||
}
|
||||
if(common_config('site','private')) {
|
||||
|
||||
return common_local_url('getfile',
|
||||
|
|
|
@ -147,6 +147,7 @@ class Memcached_DataObject extends DB_DataObject
|
|||
{
|
||||
$result = parent::insert();
|
||||
if ($result) {
|
||||
$this->fixupTimestamps();
|
||||
$this->encache(); // in case of cached negative lookups
|
||||
}
|
||||
return $result;
|
||||
|
@ -159,6 +160,7 @@ class Memcached_DataObject extends DB_DataObject
|
|||
}
|
||||
$result = parent::update($orig);
|
||||
if ($result) {
|
||||
$this->fixupTimestamps();
|
||||
$this->encache();
|
||||
}
|
||||
return $result;
|
||||
|
@ -366,7 +368,7 @@ class Memcached_DataObject extends DB_DataObject
|
|||
}
|
||||
|
||||
/**
|
||||
* sends query to database - this is the private one that must work
|
||||
* sends query to database - this is the private one that must work
|
||||
* - internal functions use this rather than $this->query()
|
||||
*
|
||||
* Overridden to do logging.
|
||||
|
@ -428,7 +430,7 @@ class Memcached_DataObject extends DB_DataObject
|
|||
//
|
||||
// WARNING WARNING if we end up actually using multiple DBs at a time
|
||||
// we'll need some fancier logic here.
|
||||
if (!$exists && !empty($_DB_DATAOBJECT['CONNECTIONS'])) {
|
||||
if (!$exists && !empty($_DB_DATAOBJECT['CONNECTIONS']) && php_sapi_name() == 'cli') {
|
||||
foreach ($_DB_DATAOBJECT['CONNECTIONS'] as $index => $conn) {
|
||||
if (!empty($conn)) {
|
||||
$conn->disconnect();
|
||||
|
@ -529,4 +531,51 @@ class Memcached_DataObject extends DB_DataObject
|
|||
|
||||
return $c->delete($cacheKey);
|
||||
}
|
||||
|
||||
function fixupTimestamps()
|
||||
{
|
||||
// Fake up timestamp columns
|
||||
$columns = $this->table();
|
||||
foreach ($columns as $name => $type) {
|
||||
if ($type & DB_DATAOBJECT_MYSQLTIMESTAMP) {
|
||||
$this->$name = common_sql_now();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function debugDump()
|
||||
{
|
||||
common_debug("debugDump: " . common_log_objstring($this));
|
||||
}
|
||||
|
||||
function raiseError($message, $type = null, $behaviour = null)
|
||||
{
|
||||
throw new ServerException("DB_DataObject error [$type]: $message");
|
||||
}
|
||||
|
||||
static function cacheGet($keyPart)
|
||||
{
|
||||
$c = self::memcache();
|
||||
|
||||
if (empty($c)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$cacheKey = common_cache_key($keyPart);
|
||||
|
||||
return $c->get($cacheKey);
|
||||
}
|
||||
|
||||
static function cacheSet($keyPart, $value)
|
||||
{
|
||||
$c = self::memcache();
|
||||
|
||||
if (empty($c)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$cacheKey = common_cache_key($keyPart);
|
||||
|
||||
return $c->set($cacheKey, $value);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -140,7 +140,7 @@ class Notice extends Memcached_DataObject
|
|||
foreach(array_unique($hashtags) as $hashtag) {
|
||||
/* elide characters we don't want in the tag */
|
||||
$this->saveTag($hashtag);
|
||||
self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $tag->tag);
|
||||
self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $hashtag);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
@ -326,9 +326,7 @@ class Notice extends Memcached_DataObject
|
|||
# XXX: someone clever could prepend instead of clearing the cache
|
||||
$notice->blowOnInsert();
|
||||
|
||||
$qm = QueueManager::get();
|
||||
|
||||
$qm->enqueue($notice, 'distrib');
|
||||
$notice->distribute();
|
||||
|
||||
return $notice;
|
||||
}
|
||||
|
@ -1374,8 +1372,6 @@ class Notice extends Memcached_DataObject
|
|||
}
|
||||
|
||||
$reply->free();
|
||||
|
||||
return $ids;
|
||||
}
|
||||
|
||||
function clearRepeats()
|
||||
|
@ -1445,4 +1441,31 @@ class Notice extends Memcached_DataObject
|
|||
|
||||
$gi->free();
|
||||
}
|
||||
|
||||
function distribute()
|
||||
{
|
||||
if (common_config('queue', 'inboxes')) {
|
||||
// If there's a failure, we want to _force_
|
||||
// distribution at this point.
|
||||
try {
|
||||
$qm = QueueManager::get();
|
||||
$qm->enqueue($this, 'distrib');
|
||||
} catch (Exception $e) {
|
||||
// If the exception isn't transient, this
|
||||
// may throw more exceptions as DQH does
|
||||
// its own enqueueing. So, we ignore them!
|
||||
try {
|
||||
$handler = new DistribQueueHandler();
|
||||
$handler->handle($this);
|
||||
} catch (Exception $e) {
|
||||
common_log(LOG_ERR, "emergency redistribution resulted in " . $e->getMessage());
|
||||
}
|
||||
// Re-throw so somebody smarter can handle it.
|
||||
throw $e;
|
||||
}
|
||||
} else {
|
||||
$handler = new DistribQueueHandler();
|
||||
$handler->handle($this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -137,4 +137,21 @@ class Oauth_application extends Memcached_DataObject
|
|||
}
|
||||
}
|
||||
|
||||
function delete()
|
||||
{
|
||||
$this->_deleteAppUsers();
|
||||
|
||||
$consumer = $this->getConsumer();
|
||||
$consumer->delete();
|
||||
|
||||
parent::delete();
|
||||
}
|
||||
|
||||
function _deleteAppUsers()
|
||||
{
|
||||
$oauser = new Oauth_application_user();
|
||||
$oauser->application_id = $this->id;
|
||||
$oauser->delete();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -48,6 +48,7 @@ class Profile_role extends Memcached_DataObject
|
|||
return Memcached_DataObject::pkeyGet('Profile_role', $kv);
|
||||
}
|
||||
|
||||
const OWNER = 'owner';
|
||||
const MODERATOR = 'moderator';
|
||||
const ADMINISTRATOR = 'administrator';
|
||||
const SANDBOXED = 'sandboxed';
|
||||
|
|
|
@ -64,8 +64,12 @@ class Session extends Memcached_DataObject
|
|||
$session = Session::staticGet('id', $id);
|
||||
|
||||
if (empty($session)) {
|
||||
self::logdeb("Couldn't find '$id'");
|
||||
return '';
|
||||
} else {
|
||||
self::logdeb("Found '$id', returning " .
|
||||
strlen($session->session_data) .
|
||||
" chars of data");
|
||||
return (string)$session->session_data;
|
||||
}
|
||||
}
|
||||
|
@ -77,14 +81,24 @@ class Session extends Memcached_DataObject
|
|||
$session = Session::staticGet('id', $id);
|
||||
|
||||
if (empty($session)) {
|
||||
self::logdeb("'$id' doesn't yet exist; inserting.");
|
||||
$session = new Session();
|
||||
|
||||
$session->id = $id;
|
||||
$session->session_data = $session_data;
|
||||
$session->created = common_sql_now();
|
||||
|
||||
return $session->insert();
|
||||
$result = $session->insert();
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($session, 'INSERT', __FILE__);
|
||||
self::logdeb("Failed to insert '$id'.");
|
||||
} else {
|
||||
self::logdeb("Successfully inserted '$id' (result = $result).");
|
||||
}
|
||||
return $result;
|
||||
} else {
|
||||
self::logdeb("'$id' already exists; updating.");
|
||||
if (strcmp($session->session_data, $session_data) == 0) {
|
||||
self::logdeb("Not writing session '$id'; unchanged");
|
||||
return true;
|
||||
|
@ -95,7 +109,16 @@ class Session extends Memcached_DataObject
|
|||
|
||||
$session->session_data = $session_data;
|
||||
|
||||
return $session->update($orig);
|
||||
$result = $session->update($orig);
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($session, 'UPDATE', __FILE__);
|
||||
self::logdeb("Failed to update '$id'.");
|
||||
} else {
|
||||
self::logdeb("Successfully updated '$id' (result = $result).");
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -106,8 +129,17 @@ class Session extends Memcached_DataObject
|
|||
|
||||
$session = Session::staticGet('id', $id);
|
||||
|
||||
if (!empty($session)) {
|
||||
return $session->delete();
|
||||
if (empty($session)) {
|
||||
self::logdeb("Can't find '$id' to delete.");
|
||||
} else {
|
||||
$result = $session->delete();
|
||||
if (!$result) {
|
||||
common_log_db_error($session, 'DELETE', __FILE__);
|
||||
self::logdeb("Failed to delete '$id'.");
|
||||
} else {
|
||||
self::logdeb("Successfully deleted '$id' (result = $result).");
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -132,7 +164,10 @@ class Session extends Memcached_DataObject
|
|||
|
||||
$session->free();
|
||||
|
||||
self::logdeb("Found " . count($ids) . " ids to delete.");
|
||||
|
||||
foreach ($ids as $id) {
|
||||
self::logdeb("Destroying session '$id'.");
|
||||
self::destroy($id);
|
||||
}
|
||||
}
|
||||
|
|
232
classes/User.php
232
classes/User.php
|
@ -209,8 +209,6 @@ class User extends Memcached_DataObject
|
|||
|
||||
$profile = new Profile();
|
||||
|
||||
$profile->query('BEGIN');
|
||||
|
||||
if(!empty($email))
|
||||
{
|
||||
$email = common_canonical_email($email);
|
||||
|
@ -220,7 +218,7 @@ class User extends Memcached_DataObject
|
|||
$profile->nickname = $nickname;
|
||||
if(! User::allowed_nickname($nickname)){
|
||||
common_log(LOG_WARNING, sprintf("Attempted to register a nickname that is not allowed: %s", $profile->nickname),
|
||||
__FILE__);
|
||||
__FILE__);
|
||||
}
|
||||
$profile->profileurl = common_profile_url($nickname);
|
||||
|
||||
|
@ -248,22 +246,10 @@ class User extends Memcached_DataObject
|
|||
|
||||
$profile->created = common_sql_now();
|
||||
|
||||
$id = $profile->insert();
|
||||
|
||||
if (empty($id)) {
|
||||
common_log_db_error($profile, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
|
||||
$user = new User();
|
||||
|
||||
$user->id = $id;
|
||||
$user->nickname = $nickname;
|
||||
|
||||
if (!empty($password)) { // may not have a password for OpenID users
|
||||
$user->password = common_munge_password($password, $id);
|
||||
}
|
||||
|
||||
// Users who respond to invite email have proven their ownership of that address
|
||||
|
||||
if (!empty($code)) {
|
||||
|
@ -282,109 +268,129 @@ class User extends Memcached_DataObject
|
|||
$user->inboxed = 1;
|
||||
|
||||
$user->created = common_sql_now();
|
||||
$user->uri = common_user_uri($user);
|
||||
|
||||
$result = $user->insert();
|
||||
if (Event::handle('StartUserRegister', array(&$user, &$profile))) {
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($user, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
$profile->query('BEGIN');
|
||||
|
||||
// Everyone gets an inbox
|
||||
$id = $profile->insert();
|
||||
|
||||
$inbox = new Inbox();
|
||||
|
||||
$inbox->user_id = $user->id;
|
||||
$inbox->notice_ids = '';
|
||||
|
||||
$result = $inbox->insert();
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($inbox, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Everyone is subscribed to themself
|
||||
|
||||
$subscription = new Subscription();
|
||||
$subscription->subscriber = $user->id;
|
||||
$subscription->subscribed = $user->id;
|
||||
$subscription->created = $user->created;
|
||||
|
||||
$result = $subscription->insert();
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($subscription, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!empty($email) && !$user->email) {
|
||||
|
||||
$confirm = new Confirm_address();
|
||||
$confirm->code = common_confirmation_code(128);
|
||||
$confirm->user_id = $user->id;
|
||||
$confirm->address = $email;
|
||||
$confirm->address_type = 'email';
|
||||
|
||||
$result = $confirm->insert();
|
||||
if (!$result) {
|
||||
common_log_db_error($confirm, 'INSERT', __FILE__);
|
||||
if (empty($id)) {
|
||||
common_log_db_error($profile, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($code) && $user->email) {
|
||||
$user->emailChanged();
|
||||
}
|
||||
$user->id = $id;
|
||||
$user->uri = common_user_uri($user);
|
||||
if (!empty($password)) { // may not have a password for OpenID users
|
||||
$user->password = common_munge_password($password, $id);
|
||||
}
|
||||
|
||||
// Default system subscription
|
||||
$result = $user->insert();
|
||||
|
||||
$defnick = common_config('newuser', 'default');
|
||||
if (!$result) {
|
||||
common_log_db_error($user, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!empty($defnick)) {
|
||||
$defuser = User::staticGet('nickname', $defnick);
|
||||
if (empty($defuser)) {
|
||||
common_log(LOG_WARNING, sprintf("Default user %s does not exist.", $defnick),
|
||||
__FILE__);
|
||||
} else {
|
||||
$defsub = new Subscription();
|
||||
$defsub->subscriber = $user->id;
|
||||
$defsub->subscribed = $defuser->id;
|
||||
$defsub->created = $user->created;
|
||||
// Everyone gets an inbox
|
||||
|
||||
$result = $defsub->insert();
|
||||
$inbox = new Inbox();
|
||||
|
||||
$inbox->user_id = $user->id;
|
||||
$inbox->notice_ids = '';
|
||||
|
||||
$result = $inbox->insert();
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($inbox, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Everyone is subscribed to themself
|
||||
|
||||
$subscription = new Subscription();
|
||||
$subscription->subscriber = $user->id;
|
||||
$subscription->subscribed = $user->id;
|
||||
$subscription->created = $user->created;
|
||||
|
||||
$result = $subscription->insert();
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($subscription, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!empty($email) && !$user->email) {
|
||||
|
||||
$confirm = new Confirm_address();
|
||||
$confirm->code = common_confirmation_code(128);
|
||||
$confirm->user_id = $user->id;
|
||||
$confirm->address = $email;
|
||||
$confirm->address_type = 'email';
|
||||
|
||||
$result = $confirm->insert();
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($defsub, 'INSERT', __FILE__);
|
||||
common_log_db_error($confirm, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$profile->query('COMMIT');
|
||||
|
||||
if (!empty($email) && !$user->email) {
|
||||
mail_confirm_address($user, $confirm->code, $profile->nickname, $email);
|
||||
}
|
||||
|
||||
// Welcome message
|
||||
|
||||
$welcome = common_config('newuser', 'welcome');
|
||||
|
||||
if (!empty($welcome)) {
|
||||
$welcomeuser = User::staticGet('nickname', $welcome);
|
||||
if (empty($welcomeuser)) {
|
||||
common_log(LOG_WARNING, sprintf("Welcome user %s does not exist.", $defnick),
|
||||
__FILE__);
|
||||
} else {
|
||||
$notice = Notice::saveNew($welcomeuser->id,
|
||||
sprintf(_('Welcome to %1$s, @%2$s!'),
|
||||
common_config('site', 'name'),
|
||||
$user->nickname),
|
||||
'system');
|
||||
|
||||
if (!empty($code) && $user->email) {
|
||||
$user->emailChanged();
|
||||
}
|
||||
|
||||
// Default system subscription
|
||||
|
||||
$defnick = common_config('newuser', 'default');
|
||||
|
||||
if (!empty($defnick)) {
|
||||
$defuser = User::staticGet('nickname', $defnick);
|
||||
if (empty($defuser)) {
|
||||
common_log(LOG_WARNING, sprintf("Default user %s does not exist.", $defnick),
|
||||
__FILE__);
|
||||
} else {
|
||||
$defsub = new Subscription();
|
||||
$defsub->subscriber = $user->id;
|
||||
$defsub->subscribed = $defuser->id;
|
||||
$defsub->created = $user->created;
|
||||
|
||||
$result = $defsub->insert();
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($defsub, 'INSERT', __FILE__);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$profile->query('COMMIT');
|
||||
|
||||
if (!empty($email) && !$user->email) {
|
||||
mail_confirm_address($user, $confirm->code, $profile->nickname, $email);
|
||||
}
|
||||
|
||||
// Welcome message
|
||||
|
||||
$welcome = common_config('newuser', 'welcome');
|
||||
|
||||
if (!empty($welcome)) {
|
||||
$welcomeuser = User::staticGet('nickname', $welcome);
|
||||
if (empty($welcomeuser)) {
|
||||
common_log(LOG_WARNING, sprintf("Welcome user %s does not exist.", $defnick),
|
||||
__FILE__);
|
||||
} else {
|
||||
$notice = Notice::saveNew($welcomeuser->id,
|
||||
sprintf(_('Welcome to %1$s, @%2$s!'),
|
||||
common_config('site', 'name'),
|
||||
$user->nickname),
|
||||
'system');
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Event::handle('EndUserRegister', array(&$profile, &$user));
|
||||
}
|
||||
|
||||
return $user;
|
||||
|
@ -925,4 +931,30 @@ class User extends Memcached_DataObject
|
|||
return $share;
|
||||
}
|
||||
}
|
||||
|
||||
static function siteOwner()
|
||||
{
|
||||
$owner = self::cacheGet('user:site_owner');
|
||||
|
||||
if ($owner === false) { // cache miss
|
||||
|
||||
$pr = new Profile_role();
|
||||
|
||||
$pr->role = Profile_role::OWNER;
|
||||
|
||||
$pr->orderBy('created');
|
||||
|
||||
$pr->limit(1);
|
||||
|
||||
if ($pr->find(true)) {
|
||||
$owner = User::staticGet('id', $pr->profile_id);
|
||||
} else {
|
||||
$owner = null;
|
||||
}
|
||||
|
||||
self::cacheSet('user:site_owner', $owner);
|
||||
}
|
||||
|
||||
return $owner;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@ theme = 2
|
|||
logo = 2
|
||||
created = 142
|
||||
modified = 384
|
||||
tags = 34
|
||||
|
||||
[status_network__keys]
|
||||
nickname = K
|
||||
|
|
|
@ -353,7 +353,7 @@ notice_id = K
|
|||
id = 129
|
||||
owner = 129
|
||||
consumer_key = 130
|
||||
name = 130
|
||||
name = 2
|
||||
description = 2
|
||||
icon = 130
|
||||
source_url = 2
|
||||
|
@ -367,6 +367,7 @@ modified = 384
|
|||
|
||||
[oauth_application__keys]
|
||||
id = N
|
||||
name = U
|
||||
|
||||
[oauth_application_user]
|
||||
profile_id = 129
|
||||
|
|
|
@ -110,3 +110,34 @@ insert into queue_item_new (frame,transport,created,claimed)
|
|||
alter table queue_item rename to queue_item_old;
|
||||
alter table queue_item_new rename to queue_item;
|
||||
|
||||
alter table consumer
|
||||
add column consumer_secret varchar(255) not null comment 'secret value';
|
||||
|
||||
create table oauth_application (
|
||||
id integer auto_increment primary key comment 'unique identifier',
|
||||
owner integer not null comment 'owner of the application' references profile (id),
|
||||
consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key),
|
||||
name varchar(255) not null comment 'name of the application',
|
||||
description varchar(255) comment 'description of the application',
|
||||
icon varchar(255) not null comment 'application icon',
|
||||
source_url varchar(255) comment 'application homepage - used for source link',
|
||||
organization varchar(255) comment 'name of the organization running the application',
|
||||
homepage varchar(255) comment 'homepage for the organization',
|
||||
callback_url varchar(255) comment 'url to redirect to after authentication',
|
||||
type tinyint default 0 comment 'type of app, 1 = browser, 2 = desktop',
|
||||
access_type tinyint default 0 comment 'default access type, bit 1 = read, bit 2 = write',
|
||||
created datetime not null comment 'date this record was created',
|
||||
modified timestamp comment 'date this record was modified'
|
||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
create table oauth_application_user (
|
||||
profile_id integer not null comment 'user of the application' references profile (id),
|
||||
application_id integer not null comment 'id of the application' references oauth_application (id),
|
||||
access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write, bit 3 = revoked',
|
||||
token varchar(255) comment 'request or access token',
|
||||
created datetime not null comment 'date this record was created',
|
||||
modified timestamp comment 'date this record was modified',
|
||||
constraint primary key (profile_id, application_id)
|
||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
|
||||
|
|
|
@ -15,7 +15,9 @@ alter table queue_item rename to queue_item_old;
|
|||
alter table queue_item_new rename to queue_item;
|
||||
|
||||
alter table consumer
|
||||
add consumer_secret varchar(255) not null comment 'secret value',
|
||||
add consumer_secret varchar(255) not null comment 'secret value';
|
||||
|
||||
alter table token
|
||||
add verifier varchar(255) comment 'verifier string for OAuth 1.0a',
|
||||
add verified_callback varchar(255) comment 'verified callback URL for OAuth 1.0a';
|
||||
|
||||
|
|
|
@ -214,7 +214,7 @@ create table oauth_application (
|
|||
id integer auto_increment primary key comment 'unique identifier',
|
||||
owner integer not null comment 'owner of the application' references profile (id),
|
||||
consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key),
|
||||
name varchar(255) not null comment 'name of the application',
|
||||
name varchar(255) unique key comment 'name of the application',
|
||||
description varchar(255) comment 'description of the application',
|
||||
icon varchar(255) not null comment 'application icon',
|
||||
source_url varchar(255) comment 'application homepage - used for source link',
|
||||
|
@ -230,7 +230,7 @@ create table oauth_application (
|
|||
create table oauth_application_user (
|
||||
profile_id integer not null comment 'user of the application' references profile (id),
|
||||
application_id integer not null comment 'id of the application' references oauth_application (id),
|
||||
access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write, bit 3 = revoked',
|
||||
access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write',
|
||||
token varchar(255) comment 'request or access token',
|
||||
created datetime not null comment 'date this record was created',
|
||||
modified timestamp comment 'date this record was modified',
|
||||
|
|
38
index.php
38
index.php
|
@ -146,12 +146,27 @@ function formatBacktraceLine($n, $line)
|
|||
return $out;
|
||||
}
|
||||
|
||||
function checkMirror($action_obj, $args)
|
||||
function setupRW()
|
||||
{
|
||||
global $config;
|
||||
|
||||
static $alwaysRW = array('session', 'remember_me');
|
||||
|
||||
// We ensure that these tables always are used
|
||||
// on the master DB
|
||||
|
||||
$config['db']['database_rw'] = $config['db']['database'];
|
||||
$config['db']['ini_rw'] = INSTALLDIR.'/classes/statusnet.ini';
|
||||
|
||||
foreach ($alwaysRW as $table) {
|
||||
$config['db']['table_'.$table] = 'rw';
|
||||
}
|
||||
}
|
||||
|
||||
function checkMirror($action_obj, $args)
|
||||
{
|
||||
global $config;
|
||||
|
||||
if (common_config('db', 'mirror') && $action_obj->isReadOnly($args)) {
|
||||
if (is_array(common_config('db', 'mirror'))) {
|
||||
// "load balancing", ha ha
|
||||
|
@ -162,16 +177,6 @@ function checkMirror($action_obj, $args)
|
|||
$mirror = common_config('db', 'mirror');
|
||||
}
|
||||
|
||||
// We ensure that these tables always are used
|
||||
// on the master DB
|
||||
|
||||
$config['db']['database_rw'] = $config['db']['database'];
|
||||
$config['db']['ini_rw'] = INSTALLDIR.'/classes/statusnet.ini';
|
||||
|
||||
foreach ($alwaysRW as $table) {
|
||||
$config['db']['table_'.$table] = 'rw';
|
||||
}
|
||||
|
||||
// everyone else uses the mirror
|
||||
|
||||
$config['db']['database'] = $mirror;
|
||||
|
@ -237,9 +242,13 @@ function main()
|
|||
|
||||
PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError');
|
||||
|
||||
// Make sure RW database is setup
|
||||
|
||||
setupRW();
|
||||
|
||||
// XXX: we need a little more structure in this script
|
||||
|
||||
// get and cache current user
|
||||
// get and cache current user (may hit RW!)
|
||||
|
||||
$user = common_current_user();
|
||||
|
||||
|
@ -276,8 +285,9 @@ function main()
|
|||
if (!$user && common_config('site', 'private')
|
||||
&& !isLoginAction($action)
|
||||
&& !preg_match('/rss$/', $action)
|
||||
&& !preg_match('/^Api/', $action)
|
||||
) {
|
||||
&& $action != 'robotstxt'
|
||||
&& !preg_match('/^Api/', $action)) {
|
||||
|
||||
// set returnto
|
||||
$rargs =& common_copy_args($args);
|
||||
unset($rargs['action']);
|
||||
|
|
1292
js/jquery.form.js
1292
js/jquery.form.js
File diff suppressed because it is too large
Load Diff
6711
js/jquery.js
vendored
6711
js/jquery.js
vendored
File diff suppressed because it is too large
Load Diff
164
js/jquery.min.js
vendored
164
js/jquery.min.js
vendored
File diff suppressed because one or more lines are too long
164
js/util.js
164
js/util.js
|
@ -143,87 +143,85 @@ var SN = { // StatusNet
|
|||
SN.U.Counter(form);
|
||||
},
|
||||
|
||||
FormXHR: function(f) {
|
||||
if (jQuery.data(f[0], "ElementData") === undefined) {
|
||||
jQuery.data(f[0], "ElementData", {Bind:'submit'});
|
||||
f.bind('submit', function(e) {
|
||||
form_id = $(this)[0].id;
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
dataType: 'xml',
|
||||
url: $(this)[0].action,
|
||||
data: $(this).serialize() + '&ajax=1',
|
||||
beforeSend: function(xhr) {
|
||||
$('#'+form_id).addClass(SN.C.S.Processing);
|
||||
$('#'+form_id+' .submit').addClass(SN.C.S.Disabled);
|
||||
$('#'+form_id+' .submit').attr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||
},
|
||||
error: function (xhr, textStatus, errorThrown) {
|
||||
alert(errorThrown || textStatus);
|
||||
},
|
||||
success: function(data, textStatus) {
|
||||
if (typeof($('form', data)[0]) != 'undefined') {
|
||||
form_new = document._importNode($('form', data)[0], true);
|
||||
$('#'+form_id).replaceWith(form_new);
|
||||
$('#'+form_new.id).each(function() { SN.U.FormXHR($(this)); });
|
||||
}
|
||||
else {
|
||||
$('#'+form_id).replaceWith(document._importNode($('p', data)[0], true));
|
||||
}
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
}
|
||||
FormXHR: function(form) {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
dataType: 'xml',
|
||||
url: form.attr('action'),
|
||||
data: form.serialize() + '&ajax=1',
|
||||
beforeSend: function(xhr) {
|
||||
form
|
||||
.addClass(SN.C.S.Processing)
|
||||
.find('.submit')
|
||||
.addClass(SN.C.S.Disabled)
|
||||
.attr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||
},
|
||||
error: function (xhr, textStatus, errorThrown) {
|
||||
alert(errorThrown || textStatus);
|
||||
},
|
||||
success: function(data, textStatus) {
|
||||
if (typeof($('form', data)[0]) != 'undefined') {
|
||||
form_new = document._importNode($('form', data)[0], true);
|
||||
form.replaceWith(form_new);
|
||||
}
|
||||
else {
|
||||
form.replaceWith(document._importNode($('p', data)[0], true));
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
FormNoticeXHR: function(form) {
|
||||
var NDG, NLat, NLon, NLNS, NLID;
|
||||
SN.C.I.NoticeDataGeo = {};
|
||||
form_id = form.attr('id');
|
||||
form.append('<input type="hidden" name="ajax" value="1"/>');
|
||||
form.ajaxForm({
|
||||
dataType: 'xml',
|
||||
timeout: '60000',
|
||||
beforeSend: function(formData) {
|
||||
if ($('#'+form_id+' #'+SN.C.S.NoticeDataText)[0].value.length === 0) {
|
||||
if (form.find('#'+SN.C.S.NoticeDataText)[0].value.length === 0) {
|
||||
form.addClass(SN.C.S.Warning);
|
||||
return false;
|
||||
}
|
||||
form.addClass(SN.C.S.Processing);
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).addClass(SN.C.S.Disabled);
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).attr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||
form
|
||||
.addClass(SN.C.S.Processing)
|
||||
.find('#'+SN.C.S.NoticeActionSubmit)
|
||||
.addClass(SN.C.S.Disabled)
|
||||
.attr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||
|
||||
NLat = $('#'+SN.C.S.NoticeLat).val();
|
||||
NLon = $('#'+SN.C.S.NoticeLon).val();
|
||||
NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
|
||||
NLID = $('#'+SN.C.S.NoticeLocationId).val();
|
||||
NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked');
|
||||
SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val();
|
||||
SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val();
|
||||
SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
|
||||
SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val();
|
||||
SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked');
|
||||
|
||||
cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
|
||||
|
||||
if (cookieValue !== null && cookieValue != 'disabled') {
|
||||
cookieValue = JSON.parse(cookieValue);
|
||||
NLat = $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat).val();
|
||||
NLon = $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon).val();
|
||||
SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat).val();
|
||||
SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon).val();
|
||||
if ($('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS)) {
|
||||
NLNS = $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS).val();
|
||||
NLID = $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID).val();
|
||||
SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS).val();
|
||||
SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID).val();
|
||||
}
|
||||
}
|
||||
if (cookieValue == 'disabled') {
|
||||
NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', false).attr('checked');
|
||||
SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', false).attr('checked');
|
||||
}
|
||||
else {
|
||||
NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', true).attr('checked');
|
||||
SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', true).attr('checked');
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
error: function (xhr, textStatus, errorThrown) {
|
||||
form.removeClass(SN.C.S.Processing);
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeClass(SN.C.S.Disabled);
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||
$('#'+form_id+' .form_response').remove();
|
||||
form
|
||||
.removeClass(SN.C.S.Processing)
|
||||
.find('#'+SN.C.S.NoticeActionSubmit)
|
||||
.removeClass(SN.C.S.Disabled)
|
||||
.removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||
form.find('.form_response').remove();
|
||||
if (textStatus == 'timeout') {
|
||||
form.append('<p class="form_response error">Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.</p>');
|
||||
}
|
||||
|
@ -233,9 +231,10 @@ var SN = { // StatusNet
|
|||
}
|
||||
else {
|
||||
if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
|
||||
$('#'+form_id).resetForm();
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||
SN.U.FormNoticeEnhancements($('#'+form_id));
|
||||
form
|
||||
.resetForm()
|
||||
.find('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||
SN.U.FormNoticeEnhancements(form);
|
||||
}
|
||||
else {
|
||||
form.append('<p class="form_response error">(Sorry! We had trouble sending your notice ('+xhr.status+' '+xhr.statusText+'). Please report the problem to the site administrator if this happens again.</p>');
|
||||
|
@ -244,7 +243,7 @@ var SN = { // StatusNet
|
|||
}
|
||||
},
|
||||
success: function(data, textStatus) {
|
||||
$('#'+form_id+' .form_response').remove();
|
||||
form.find('.form_response').remove();
|
||||
var result;
|
||||
if ($('#'+SN.C.S.Error, data).length > 0) {
|
||||
result = document._importNode($('p', data)[0], true);
|
||||
|
@ -277,11 +276,11 @@ var SN = { // StatusNet
|
|||
else {
|
||||
notices.prepend(notice);
|
||||
}
|
||||
$('#'+notice.id).css({display:'none'});
|
||||
$('#'+notice.id).fadeIn(2500);
|
||||
$('#'+notice.id)
|
||||
.css({display:'none'})
|
||||
.fadeIn(2500);
|
||||
SN.U.NoticeWithAttachment($('#'+notice.id));
|
||||
SN.U.NoticeReplyTo($('#'+notice.id));
|
||||
SN.U.FormXHR($('#'+notice.id+' .form_favor'));
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
@ -290,24 +289,26 @@ var SN = { // StatusNet
|
|||
form.append('<p class="form_response success">'+result_title+'</p>');
|
||||
}
|
||||
}
|
||||
$('#'+form_id).resetForm();
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeInReplyTo).val('');
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||
SN.U.FormNoticeEnhancements($('#'+form_id));
|
||||
form.resetForm();
|
||||
form.find('#'+SN.C.S.NoticeInReplyTo).val('');
|
||||
form.find('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||
SN.U.FormNoticeEnhancements(form);
|
||||
}
|
||||
},
|
||||
complete: function(xhr, textStatus) {
|
||||
form.removeClass(SN.C.S.Processing);
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeAttr(SN.C.S.Disabled);
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeClass(SN.C.S.Disabled);
|
||||
form
|
||||
.removeClass(SN.C.S.Processing)
|
||||
.find('#'+SN.C.S.NoticeActionSubmit)
|
||||
.removeAttr(SN.C.S.Disabled)
|
||||
.removeClass(SN.C.S.Disabled);
|
||||
|
||||
$('#'+SN.C.S.NoticeLat).val(NLat);
|
||||
$('#'+SN.C.S.NoticeLon).val(NLon);
|
||||
$('#'+SN.C.S.NoticeLat).val(SN.C.I.NoticeDataGeo.NLat);
|
||||
$('#'+SN.C.S.NoticeLon).val(SN.C.I.NoticeDataGeo.NLon);
|
||||
if ($('#'+SN.C.S.NoticeLocationNs)) {
|
||||
$('#'+SN.C.S.NoticeLocationNs).val(NLNS);
|
||||
$('#'+SN.C.S.NoticeLocationId).val(NLID);
|
||||
$('#'+SN.C.S.NoticeLocationNs).val(SN.C.I.NoticeDataGeo.NLNS);
|
||||
$('#'+SN.C.S.NoticeLocationId).val(SN.C.I.NoticeDataGeo.NLID);
|
||||
}
|
||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', NDG);
|
||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', SN.C.I.NoticeDataGeo.NDG);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
@ -350,14 +351,15 @@ var SN = { // StatusNet
|
|||
},
|
||||
|
||||
NoticeFavor: function() {
|
||||
$('.form_favor').each(function() { SN.U.FormXHR($(this)); });
|
||||
$('.form_disfavor').each(function() { SN.U.FormXHR($(this)); });
|
||||
$('.form_favor').live('click', function() { SN.U.FormXHR($(this)); return false; });
|
||||
$('.form_disfavor').live('click', function() { SN.U.FormXHR($(this)); return false; });
|
||||
},
|
||||
|
||||
NoticeRepeat: function() {
|
||||
$('.form_repeat').each(function() {
|
||||
$('.form_repeat').live('click', function() {
|
||||
SN.U.FormXHR($(this));
|
||||
SN.U.NoticeRepeatConfirmation($(this));
|
||||
return false;
|
||||
});
|
||||
},
|
||||
|
||||
|
@ -639,7 +641,7 @@ var SN = { // StatusNet
|
|||
NDM.bind('click', function() {
|
||||
var NDMF = $('.entity_send-a-message form');
|
||||
if (NDMF.length === 0) {
|
||||
$(this).addClass('processing');
|
||||
$(this).addClass(SN.C.S.Processing);
|
||||
$.get(NDM.attr('href'), null, function(data) {
|
||||
$('.entity_send-a-message').append(document._importNode($('form', data)[0], true));
|
||||
NDMF = $('.entity_send-a-message .form_notice');
|
||||
|
@ -650,7 +652,7 @@ var SN = { // StatusNet
|
|||
NDMF.hide();
|
||||
return false;
|
||||
});
|
||||
NDM.removeClass('processing');
|
||||
NDM.removeClass(SN.C.S.Processing);
|
||||
});
|
||||
}
|
||||
else {
|
||||
|
@ -695,11 +697,11 @@ var SN = { // StatusNet
|
|||
|
||||
EntityActions: function() {
|
||||
if ($('body.user_in').length > 0) {
|
||||
$('.form_user_subscribe').each(function() { SN.U.FormXHR($(this)); });
|
||||
$('.form_user_unsubscribe').each(function() { SN.U.FormXHR($(this)); });
|
||||
$('.form_group_join').each(function() { SN.U.FormXHR($(this)); });
|
||||
$('.form_group_leave').each(function() { SN.U.FormXHR($(this)); });
|
||||
$('.form_user_nudge').each(function() { SN.U.FormXHR($(this)); });
|
||||
$('.form_user_subscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
|
||||
$('.form_user_unsubscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
|
||||
$('.form_group_join').live('click', function() { SN.U.FormXHR($(this)); return false; });
|
||||
$('.form_group_leave').live('click', function() { SN.U.FormXHR($(this)); return false; });
|
||||
$('.form_user_nudge').live('click', function() { SN.U.FormXHR($(this)); return false; });
|
||||
|
||||
SN.U.NewDirectMessage();
|
||||
}
|
||||
|
|
21
lib/api.php
21
lib/api.php
|
@ -299,7 +299,7 @@ class ApiAction extends Action
|
|||
}
|
||||
}
|
||||
|
||||
if ($include_user) {
|
||||
if ($include_user && $profile) {
|
||||
# Don't get notice (recursive!)
|
||||
$twitter_user = $this->twitterUserArray($profile, false);
|
||||
$twitter_status['user'] = $twitter_user;
|
||||
|
@ -1250,10 +1250,27 @@ class ApiAction extends Action
|
|||
case 'api':
|
||||
break;
|
||||
default:
|
||||
|
||||
$name = null;
|
||||
$url = null;
|
||||
|
||||
$ns = Notice_source::staticGet($source);
|
||||
|
||||
if ($ns) {
|
||||
$source_name = '<a href="' . $ns->url . '">' . $ns->name . '</a>';
|
||||
$name = $ns->name;
|
||||
$url = $ns->url;
|
||||
} else {
|
||||
$app = Oauth_application::staticGet('name', $source);
|
||||
if ($app) {
|
||||
$name = $app->name;
|
||||
$url = $app->source_url;
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($name) && !empty($url)) {
|
||||
$source_name = '<a href="' . $url . '">' . $name . '</a>';
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
return $source_name;
|
||||
|
|
|
@ -55,6 +55,7 @@ class ApiAuthAction extends ApiAction
|
|||
{
|
||||
var $auth_user_nickname = null;
|
||||
var $auth_user_password = null;
|
||||
var $oauth_source = null;
|
||||
|
||||
/**
|
||||
* Take arguments for running, looks for an OAuth request,
|
||||
|
@ -73,28 +74,23 @@ class ApiAuthAction extends ApiAction
|
|||
// NOTE: $this->auth_user has to get set in prepare(), not handle(),
|
||||
// because subclasses do stuff with it in their prepares.
|
||||
|
||||
if ($this->requiresAuth()) {
|
||||
$oauthReq = $this->getOAuthRequest();
|
||||
|
||||
$oauthReq = $this->getOAuthRequest();
|
||||
|
||||
if (!$oauthReq) {
|
||||
if (!$oauthReq) {
|
||||
if ($this->requiresAuth()) {
|
||||
$this->checkBasicAuthUser(true);
|
||||
} else {
|
||||
$this->checkOAuthRequest($oauthReq);
|
||||
// Check to see if a basic auth user is there even
|
||||
// if one's not required
|
||||
$this->checkBasicAuthUser(false);
|
||||
}
|
||||
} else {
|
||||
|
||||
// Check to see if a basic auth user is there even
|
||||
// if one's not required
|
||||
$this->checkBasicAuthUser(false);
|
||||
$this->checkOAuthRequest($oauthReq);
|
||||
}
|
||||
|
||||
// Reject API calls with the wrong access level
|
||||
|
||||
if ($this->isReadOnly($args) == false) {
|
||||
|
||||
common_debug(get_class($this) . ' is not read-only!');
|
||||
|
||||
if ($this->access != self::READ_WRITE) {
|
||||
$msg = _('API resource requires read-write access, ' .
|
||||
'but you only have read access.');
|
||||
|
@ -111,7 +107,6 @@ class ApiAuthAction extends ApiAction
|
|||
* This is to avoid doign any unnecessary DB lookups.
|
||||
*
|
||||
* @return mixed the OAuthRequest or false
|
||||
*
|
||||
*/
|
||||
|
||||
function getOAuthRequest()
|
||||
|
@ -140,7 +135,6 @@ class ApiAuthAction extends ApiAction
|
|||
* @param OAuthRequest $request the OAuth Request
|
||||
*
|
||||
* @return nothing
|
||||
*
|
||||
*/
|
||||
|
||||
function checkOAuthRequest($request)
|
||||
|
|
|
@ -159,5 +159,32 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Revoke specified access token
|
||||
*
|
||||
* Revokes the token specified by $token_key.
|
||||
* Throws exceptions in case of error.
|
||||
*
|
||||
* @param string $token_key the token to be revoked
|
||||
* @param int $type type of token (0 = req, 1 = access)
|
||||
*
|
||||
* @access public
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
public function revoke_token($token_key, $type = 0) {
|
||||
$rt = new Token();
|
||||
$rt->tok = $token_key;
|
||||
$rt->type = $type;
|
||||
$rt->state = 0;
|
||||
if (!$rt->find(true)) {
|
||||
throw new Exception('Tried to revoke unknown token');
|
||||
}
|
||||
if (!$rt->delete()) {
|
||||
throw new Exception('Failed to delete revoked token');
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
|||
//exit with 200 response, if this is checking fancy from the installer
|
||||
if (isset($_REQUEST['p']) && $_REQUEST['p'] == 'check-fancy') { exit; }
|
||||
|
||||
define('STATUSNET_VERSION', '0.9.0beta3');
|
||||
define('STATUSNET_VERSION', '0.9.0beta5');
|
||||
define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility
|
||||
|
||||
define('STATUSNET_CODENAME', 'Stand');
|
||||
|
@ -115,6 +115,10 @@ function __autoload($cls)
|
|||
require_once 'Validate.php';
|
||||
require_once 'markdown.php';
|
||||
|
||||
// XXX: other formats here
|
||||
|
||||
define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
|
||||
|
||||
require_once INSTALLDIR.'/lib/util.php';
|
||||
require_once INSTALLDIR.'/lib/action.php';
|
||||
require_once INSTALLDIR.'/lib/mail.php';
|
||||
|
@ -136,6 +140,3 @@ try {
|
|||
exit;
|
||||
}
|
||||
|
||||
// XXX: other formats here
|
||||
|
||||
define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
|
||||
|
|
|
@ -84,9 +84,12 @@ $default =
|
|||
'control_channel' => '/topic/statusnet-control', // broadcasts to all queue daemons
|
||||
'stomp_username' => null,
|
||||
'stomp_password' => null,
|
||||
'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled
|
||||
'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
|
||||
'monitor' => null, // URL to monitor ping endpoint (work in progress)
|
||||
'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
|
||||
'debug_memory' => false, // true to spit memory usage to log
|
||||
'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue
|
||||
),
|
||||
'license' =>
|
||||
array('type' => 'cc', # can be 'cc', 'allrightsreserved', 'private'
|
||||
|
@ -269,4 +272,8 @@ $default =
|
|||
'singleuser' =>
|
||||
array('enabled' => false,
|
||||
'nickname' => null),
|
||||
'robotstxt' =>
|
||||
array('crawldelay' => 0,
|
||||
'disallow' => array('main', 'settings', 'admin', 'search', 'message')
|
||||
),
|
||||
);
|
||||
|
|
|
@ -62,23 +62,60 @@ class DistribQueueHandler
|
|||
{
|
||||
// XXX: do we need to change this for remote users?
|
||||
|
||||
$notice->saveTags();
|
||||
try {
|
||||
$notice->saveTags();
|
||||
} catch (Exception $e) {
|
||||
$this->logit($notice, $e);
|
||||
}
|
||||
|
||||
$groups = $notice->saveGroups();
|
||||
try {
|
||||
$groups = $notice->saveGroups();
|
||||
} catch (Exception $e) {
|
||||
$this->logit($notice, $e);
|
||||
}
|
||||
|
||||
$recipients = $notice->saveReplies();
|
||||
try {
|
||||
$recipients = $notice->saveReplies();
|
||||
} catch (Exception $e) {
|
||||
$this->logit($notice, $e);
|
||||
}
|
||||
|
||||
$notice->addToInboxes($groups, $recipients);
|
||||
try {
|
||||
$notice->addToInboxes($groups, $recipients);
|
||||
} catch (Exception $e) {
|
||||
$this->logit($notice, $e);
|
||||
}
|
||||
|
||||
$notice->saveUrls();
|
||||
try {
|
||||
$notice->saveUrls();
|
||||
} catch (Exception $e) {
|
||||
$this->logit($notice, $e);
|
||||
}
|
||||
|
||||
Event::handle('EndNoticeSave', array($notice));
|
||||
try {
|
||||
Event::handle('EndNoticeSave', array($notice));
|
||||
// Enqueue for other handlers
|
||||
} catch (Exception $e) {
|
||||
$this->logit($notice, $e);
|
||||
}
|
||||
|
||||
// Enqueue for other handlers
|
||||
|
||||
common_enqueue_notice($notice);
|
||||
try {
|
||||
common_enqueue_notice($notice);
|
||||
} catch (Exception $e) {
|
||||
$this->logit($notice, $e);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
protected function logit($notice, $e)
|
||||
{
|
||||
common_log(LOG_ERR, "Distrib queue exception saving notice $notice->id: " .
|
||||
$e->getMessage() . ' ' .
|
||||
str_replace("\n", " ", $e->getTraceAsString()));
|
||||
|
||||
// We'll still return true so we don't get stuck in a loop
|
||||
// trying to run a bad insert over and over...
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -358,7 +358,7 @@ function jabber_broadcast_notice($notice)
|
|||
common_log(LOG_WARNING, 'Refusing to broadcast notice with ' .
|
||||
'unknown profile ' . common_log_objstring($notice),
|
||||
__FILE__);
|
||||
return false;
|
||||
return true; // not recoverable; discard.
|
||||
}
|
||||
|
||||
$msg = jabber_format_notice($profile, $notice);
|
||||
|
@ -437,7 +437,7 @@ function jabber_public_notice($notice)
|
|||
common_log(LOG_WARNING, 'Refusing to broadcast notice with ' .
|
||||
'unknown profile ' . common_log_objstring($notice),
|
||||
__FILE__);
|
||||
return false;
|
||||
return true; // not recoverable; discard.
|
||||
}
|
||||
|
||||
$msg = jabber_format_notice($profile, $notice);
|
||||
|
|
|
@ -40,7 +40,7 @@ class JabberQueueHandler extends QueueHandler
|
|||
try {
|
||||
return jabber_broadcast_notice($notice);
|
||||
} catch (XMPPHP_Exception $e) {
|
||||
$this->log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
|
||||
common_log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,6 +33,22 @@ class LiberalStomp extends Stomp
|
|||
return $this->_socket;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the host we're currently connected to.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
function getServer()
|
||||
{
|
||||
$idx = $this->_currentHost;
|
||||
if ($idx >= 0) {
|
||||
$host = $this->_hosts[$idx];
|
||||
return "$host[0]:$host[1]";
|
||||
} else {
|
||||
return '[unconnected]';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Make socket connection to the server
|
||||
* We also set the stream to non-blocking mode, since we'll be
|
||||
|
@ -71,10 +87,12 @@ class LiberalStomp extends Stomp
|
|||
// @fixme this sometimes hangs in blocking mode...
|
||||
// shouldn't we have been idle until we found there's more data?
|
||||
$read = fread($this->_socket, $rb);
|
||||
if ($read === false) {
|
||||
$this->_reconnect();
|
||||
if ($read === false || ($read === '' && feof($this->_socket))) {
|
||||
// @fixme possibly attempt an auto reconnect as old code?
|
||||
throw new StompException("Error reading");
|
||||
//$this->_reconnect();
|
||||
// @fixme this will lose prior items
|
||||
return $this->readFrames();
|
||||
//return $this->readFrames();
|
||||
}
|
||||
$data .= $read;
|
||||
if (strpos($data, "\x00") !== false) {
|
||||
|
|
537
lib/mysqlschema.php
Normal file
537
lib/mysqlschema.php
Normal file
|
@ -0,0 +1,537 @@
|
|||
<?php
|
||||
/**
|
||||
* StatusNet, the distributed open-source microblogging tool
|
||||
*
|
||||
* Database schema utilities
|
||||
*
|
||||
* 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 Database
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@status.net>
|
||||
* @copyright 2009 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 representing the database schema
|
||||
*
|
||||
* A class representing the database schema. Can be used to
|
||||
* manipulate the schema -- especially for plugins and upgrade
|
||||
* utilities.
|
||||
*
|
||||
* @category Database
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@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 MysqlSchema extends Schema
|
||||
{
|
||||
static $_single = null;
|
||||
protected $conn = null;
|
||||
|
||||
/**
|
||||
* Constructor. Only run once for singleton object.
|
||||
*/
|
||||
|
||||
protected function __construct()
|
||||
{
|
||||
// XXX: there should be an easier way to do this.
|
||||
$user = new User();
|
||||
|
||||
$this->conn = $user->getDatabaseConnection();
|
||||
|
||||
$user->free();
|
||||
|
||||
unset($user);
|
||||
}
|
||||
|
||||
/**
|
||||
* Main public entry point. Use this to get
|
||||
* the singleton object.
|
||||
*
|
||||
* @return Schema the (single) Schema object
|
||||
*/
|
||||
|
||||
static function get()
|
||||
{
|
||||
if (empty(self::$_single)) {
|
||||
self::$_single = new Schema();
|
||||
}
|
||||
return self::$_single;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a TableDef object for the table
|
||||
* in the schema with the given name.
|
||||
*
|
||||
* Throws an exception if the table is not found.
|
||||
*
|
||||
* @param string $name Name of the table to get
|
||||
*
|
||||
* @return TableDef tabledef for that table.
|
||||
*/
|
||||
|
||||
public function getTableDef($name)
|
||||
{
|
||||
$res = $this->conn->query('DESCRIBE ' . $name);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
$td = new TableDef();
|
||||
|
||||
$td->name = $name;
|
||||
$td->columns = array();
|
||||
|
||||
$row = array();
|
||||
|
||||
while ($res->fetchInto($row, DB_FETCHMODE_ASSOC)) {
|
||||
|
||||
$cd = new ColumnDef();
|
||||
|
||||
$cd->name = $row['Field'];
|
||||
|
||||
$packed = $row['Type'];
|
||||
|
||||
if (preg_match('/^(\w+)\((\d+)\)$/', $packed, $match)) {
|
||||
$cd->type = $match[1];
|
||||
$cd->size = $match[2];
|
||||
} else {
|
||||
$cd->type = $packed;
|
||||
}
|
||||
|
||||
$cd->nullable = ($row['Null'] == 'YES') ? true : false;
|
||||
$cd->key = $row['Key'];
|
||||
$cd->default = $row['Default'];
|
||||
$cd->extra = $row['Extra'];
|
||||
|
||||
$td->columns[] = $cd;
|
||||
}
|
||||
|
||||
return $td;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a ColumnDef object for a single column.
|
||||
*
|
||||
* Throws an exception if the table is not found.
|
||||
*
|
||||
* @param string $table name of the table
|
||||
* @param string $column name of the column
|
||||
*
|
||||
* @return ColumnDef definition of the column or null
|
||||
* if not found.
|
||||
*/
|
||||
|
||||
public function getColumnDef($table, $column)
|
||||
{
|
||||
$td = $this->getTableDef($table);
|
||||
|
||||
foreach ($td->columns as $cd) {
|
||||
if ($cd->name == $column) {
|
||||
return $cd;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a table with the given names and columns.
|
||||
*
|
||||
* @param string $name Name of the table
|
||||
* @param array $columns Array of ColumnDef objects
|
||||
* for new table.
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function createTable($name, $columns)
|
||||
{
|
||||
$uniques = array();
|
||||
$primary = array();
|
||||
$indices = array();
|
||||
|
||||
$sql = "CREATE TABLE $name (\n";
|
||||
|
||||
for ($i = 0; $i < count($columns); $i++) {
|
||||
|
||||
$cd =& $columns[$i];
|
||||
|
||||
if ($i > 0) {
|
||||
$sql .= ",\n";
|
||||
}
|
||||
|
||||
$sql .= $this->_columnSql($cd);
|
||||
|
||||
switch ($cd->key) {
|
||||
case 'UNI':
|
||||
$uniques[] = $cd->name;
|
||||
break;
|
||||
case 'PRI':
|
||||
$primary[] = $cd->name;
|
||||
break;
|
||||
case 'MUL':
|
||||
$indices[] = $cd->name;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (count($primary) > 0) { // it really should be...
|
||||
$sql .= ",\nconstraint primary key (" . implode(',', $primary) . ")";
|
||||
}
|
||||
|
||||
foreach ($uniques as $u) {
|
||||
$sql .= ",\nunique index {$name}_{$u}_idx ($u)";
|
||||
}
|
||||
|
||||
foreach ($indices as $i) {
|
||||
$sql .= ",\nindex {$name}_{$i}_idx ($i)";
|
||||
}
|
||||
|
||||
$sql .= "); ";
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Drops a table from the schema
|
||||
*
|
||||
* Throws an exception if the table is not found.
|
||||
*
|
||||
* @param string $name Name of the table to drop
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function dropTable($name)
|
||||
{
|
||||
$res = $this->conn->query("DROP TABLE $name");
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds an index to a table.
|
||||
*
|
||||
* If no name is provided, a name will be made up based
|
||||
* on the table name and column names.
|
||||
*
|
||||
* Throws an exception on database error, esp. if the table
|
||||
* does not exist.
|
||||
*
|
||||
* @param string $table Name of the table
|
||||
* @param array $columnNames Name of columns to index
|
||||
* @param string $name (Optional) name of the index
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function createIndex($table, $columnNames, $name=null)
|
||||
{
|
||||
if (!is_array($columnNames)) {
|
||||
$columnNames = array($columnNames);
|
||||
}
|
||||
|
||||
if (empty($name)) {
|
||||
$name = "$table_".implode("_", $columnNames)."_idx";
|
||||
}
|
||||
|
||||
$res = $this->conn->query("ALTER TABLE $table ".
|
||||
"ADD INDEX $name (".
|
||||
implode(",", $columnNames).")");
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Drops a named index from a table.
|
||||
*
|
||||
* @param string $table name of the table the index is on.
|
||||
* @param string $name name of the index
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function dropIndex($table, $name)
|
||||
{
|
||||
$res = $this->conn->query("ALTER TABLE $table DROP INDEX $name");
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a column to a table
|
||||
*
|
||||
* @param string $table name of the table
|
||||
* @param ColumnDef $columndef Definition of the new
|
||||
* column.
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function addColumn($table, $columndef)
|
||||
{
|
||||
$sql = "ALTER TABLE $table ADD COLUMN " . $this->_columnSql($columndef);
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Modifies a column in the schema.
|
||||
*
|
||||
* The name must match an existing column and table.
|
||||
*
|
||||
* @param string $table name of the table
|
||||
* @param ColumnDef $columndef new definition of the column.
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function modifyColumn($table, $columndef)
|
||||
{
|
||||
$sql = "ALTER TABLE $table MODIFY COLUMN " .
|
||||
$this->_columnSql($columndef);
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Drops a column from a table
|
||||
*
|
||||
* The name must match an existing column.
|
||||
*
|
||||
* @param string $table name of the table
|
||||
* @param string $columnName name of the column to drop
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function dropColumn($table, $columnName)
|
||||
{
|
||||
$sql = "ALTER TABLE $table DROP COLUMN $columnName";
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensures that a table exists with the given
|
||||
* name and the given column definitions.
|
||||
*
|
||||
* If the table does not yet exist, it will
|
||||
* create the table. If it does exist, it will
|
||||
* alter the table to match the column definitions.
|
||||
*
|
||||
* @param string $tableName name of the table
|
||||
* @param array $columns array of ColumnDef
|
||||
* objects for the table
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function ensureTable($tableName, $columns)
|
||||
{
|
||||
// XXX: DB engine portability -> toilet
|
||||
|
||||
try {
|
||||
$td = $this->getTableDef($tableName);
|
||||
} catch (Exception $e) {
|
||||
if (preg_match('/no such table/', $e->getMessage())) {
|
||||
return $this->createTable($tableName, $columns);
|
||||
} else {
|
||||
throw $e;
|
||||
}
|
||||
}
|
||||
|
||||
$cur = $this->_names($td->columns);
|
||||
$new = $this->_names($columns);
|
||||
|
||||
$toadd = array_diff($new, $cur);
|
||||
$todrop = array_diff($cur, $new);
|
||||
$same = array_intersect($new, $cur);
|
||||
$tomod = array();
|
||||
|
||||
foreach ($same as $m) {
|
||||
$curCol = $this->_byName($td->columns, $m);
|
||||
$newCol = $this->_byName($columns, $m);
|
||||
|
||||
if (!$newCol->equals($curCol)) {
|
||||
$tomod[] = $newCol->name;
|
||||
}
|
||||
}
|
||||
|
||||
if (count($toadd) + count($todrop) + count($tomod) == 0) {
|
||||
// nothing to do
|
||||
return true;
|
||||
}
|
||||
|
||||
// For efficiency, we want this all in one
|
||||
// query, instead of using our methods.
|
||||
|
||||
$phrase = array();
|
||||
|
||||
foreach ($toadd as $columnName) {
|
||||
$cd = $this->_byName($columns, $columnName);
|
||||
|
||||
$phrase[] = 'ADD COLUMN ' . $this->_columnSql($cd);
|
||||
}
|
||||
|
||||
foreach ($todrop as $columnName) {
|
||||
$phrase[] = 'DROP COLUMN ' . $columnName;
|
||||
}
|
||||
|
||||
foreach ($tomod as $columnName) {
|
||||
$cd = $this->_byName($columns, $columnName);
|
||||
|
||||
$phrase[] = 'MODIFY COLUMN ' . $this->_columnSql($cd);
|
||||
}
|
||||
|
||||
$sql = 'ALTER TABLE ' . $tableName . ' ' . implode(', ', $phrase);
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the array of names from an array of
|
||||
* ColumnDef objects.
|
||||
*
|
||||
* @param array $cds array of ColumnDef objects
|
||||
*
|
||||
* @return array strings for name values
|
||||
*/
|
||||
|
||||
private function _names($cds)
|
||||
{
|
||||
$names = array();
|
||||
|
||||
foreach ($cds as $cd) {
|
||||
$names[] = $cd->name;
|
||||
}
|
||||
|
||||
return $names;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a ColumnDef from an array matching
|
||||
* name.
|
||||
*
|
||||
* @param array $cds Array of ColumnDef objects
|
||||
* @param string $name Name of the column
|
||||
*
|
||||
* @return ColumnDef matching item or null if no match.
|
||||
*/
|
||||
|
||||
private function _byName($cds, $name)
|
||||
{
|
||||
foreach ($cds as $cd) {
|
||||
if ($cd->name == $name) {
|
||||
return $cd;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the proper SQL for creating or
|
||||
* altering a column.
|
||||
*
|
||||
* Appropriate for use in CREATE TABLE or
|
||||
* ALTER TABLE statements.
|
||||
*
|
||||
* @param ColumnDef $cd column to create
|
||||
*
|
||||
* @return string correct SQL for that column
|
||||
*/
|
||||
|
||||
private function _columnSql($cd)
|
||||
{
|
||||
$sql = "{$cd->name} ";
|
||||
|
||||
if (!empty($cd->size)) {
|
||||
$sql .= "{$cd->type}({$cd->size}) ";
|
||||
} else {
|
||||
$sql .= "{$cd->type} ";
|
||||
}
|
||||
|
||||
if (!empty($cd->default)) {
|
||||
$sql .= "default {$cd->default} ";
|
||||
} else {
|
||||
$sql .= ($cd->nullable) ? "null " : "not null ";
|
||||
}
|
||||
|
||||
if (!empty($cd->auto_increment)) {
|
||||
$sql .= " auto_increment ";
|
||||
}
|
||||
|
||||
if (!empty($cd->extra)) {
|
||||
$sql .= "{$cd->extra} ";
|
||||
}
|
||||
|
||||
return $sql;
|
||||
}
|
||||
}
|
|
@ -486,12 +486,28 @@ class NoticeListItem extends Widget
|
|||
$this->out->element('span', 'device', $source_name);
|
||||
break;
|
||||
default:
|
||||
|
||||
$name = null;
|
||||
$url = null;
|
||||
|
||||
$ns = Notice_source::staticGet($this->notice->source);
|
||||
|
||||
if ($ns) {
|
||||
$name = $ns->name;
|
||||
$url = $ns->url;
|
||||
} else {
|
||||
$app = Oauth_application::staticGet('name', $this->notice->source);
|
||||
if ($app) {
|
||||
$name = $app->name;
|
||||
$url = $app->source_url;
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($name) && !empty($url)) {
|
||||
$this->out->elementStart('span', 'device');
|
||||
$this->out->element('a', array('href' => $ns->url,
|
||||
$this->out->element('a', array('href' => $url,
|
||||
'rel' => 'external'),
|
||||
$ns->name);
|
||||
$name);
|
||||
$this->out->elementEnd('span');
|
||||
} else {
|
||||
$this->out->element('span', 'device', $source_name);
|
||||
|
|
|
@ -39,7 +39,7 @@ class OmbQueueHandler extends QueueHandler
|
|||
function handle($notice)
|
||||
{
|
||||
if ($this->is_remote($notice)) {
|
||||
$this->log(LOG_DEBUG, 'Ignoring remote notice ' . $notice->id);
|
||||
common_log(LOG_DEBUG, 'Ignoring remote notice ' . $notice->id);
|
||||
return true;
|
||||
} else {
|
||||
require_once(INSTALLDIR.'/lib/omb.php');
|
||||
|
|
503
lib/pgsqlschema.php
Normal file
503
lib/pgsqlschema.php
Normal file
|
@ -0,0 +1,503 @@
|
|||
<?php
|
||||
/**
|
||||
* StatusNet, the distributed open-source microblogging tool
|
||||
*
|
||||
* Database schema utilities
|
||||
*
|
||||
* 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 Database
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@status.net>
|
||||
* @copyright 2009 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 representing the database schema
|
||||
*
|
||||
* A class representing the database schema. Can be used to
|
||||
* manipulate the schema -- especially for plugins and upgrade
|
||||
* utilities.
|
||||
*
|
||||
* @category Database
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@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 PgsqlSchema extends Schema
|
||||
{
|
||||
|
||||
/**
|
||||
* Returns a TableDef object for the table
|
||||
* in the schema with the given name.
|
||||
*
|
||||
* Throws an exception if the table is not found.
|
||||
*
|
||||
* @param string $name Name of the table to get
|
||||
*
|
||||
* @return TableDef tabledef for that table.
|
||||
*/
|
||||
|
||||
public function getTableDef($name)
|
||||
{
|
||||
$res = $this->conn->query("select *, column_default as default, is_nullable as Null, udt_name as Type, column_name AS Field from INFORMATION_SCHEMA.COLUMNS where table_name = '$name'");
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
$td = new TableDef();
|
||||
|
||||
$td->name = $name;
|
||||
$td->columns = array();
|
||||
|
||||
$row = array();
|
||||
|
||||
while ($res->fetchInto($row, DB_FETCHMODE_ASSOC)) {
|
||||
// var_dump($row);
|
||||
$cd = new ColumnDef();
|
||||
|
||||
$cd->name = $row['field'];
|
||||
|
||||
$packed = $row['type'];
|
||||
|
||||
if (preg_match('/^(\w+)\((\d+)\)$/', $packed, $match)) {
|
||||
$cd->type = $match[1];
|
||||
$cd->size = $match[2];
|
||||
} else {
|
||||
$cd->type = $packed;
|
||||
}
|
||||
|
||||
$cd->nullable = ($row['null'] == 'YES') ? true : false;
|
||||
$cd->key = $row['Key'];
|
||||
$cd->default = $row['default'];
|
||||
$cd->extra = $row['Extra'];
|
||||
|
||||
$td->columns[] = $cd;
|
||||
}
|
||||
return $td;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a ColumnDef object for a single column.
|
||||
*
|
||||
* Throws an exception if the table is not found.
|
||||
*
|
||||
* @param string $table name of the table
|
||||
* @param string $column name of the column
|
||||
*
|
||||
* @return ColumnDef definition of the column or null
|
||||
* if not found.
|
||||
*/
|
||||
|
||||
public function getColumnDef($table, $column)
|
||||
{
|
||||
$td = $this->getTableDef($table);
|
||||
|
||||
foreach ($td->columns as $cd) {
|
||||
if ($cd->name == $column) {
|
||||
return $cd;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a table with the given names and columns.
|
||||
*
|
||||
* @param string $name Name of the table
|
||||
* @param array $columns Array of ColumnDef objects
|
||||
* for new table.
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function createTable($name, $columns)
|
||||
{
|
||||
$uniques = array();
|
||||
$primary = array();
|
||||
$indices = array();
|
||||
|
||||
$sql = "CREATE TABLE $name (\n";
|
||||
|
||||
for ($i = 0; $i < count($columns); $i++) {
|
||||
|
||||
$cd =& $columns[$i];
|
||||
|
||||
if ($i > 0) {
|
||||
$sql .= ",\n";
|
||||
}
|
||||
|
||||
$sql .= $this->_columnSql($cd);
|
||||
|
||||
switch ($cd->key) {
|
||||
case 'UNI':
|
||||
$uniques[] = $cd->name;
|
||||
break;
|
||||
case 'PRI':
|
||||
$primary[] = $cd->name;
|
||||
break;
|
||||
case 'MUL':
|
||||
$indices[] = $cd->name;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (count($primary) > 0) { // it really should be...
|
||||
$sql .= ",\nconstraint primary key (" . implode(',', $primary) . ")";
|
||||
}
|
||||
|
||||
foreach ($uniques as $u) {
|
||||
$sql .= ",\nunique index {$name}_{$u}_idx ($u)";
|
||||
}
|
||||
|
||||
foreach ($indices as $i) {
|
||||
$sql .= ",\nindex {$name}_{$i}_idx ($i)";
|
||||
}
|
||||
|
||||
$sql .= "); ";
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Drops a table from the schema
|
||||
*
|
||||
* Throws an exception if the table is not found.
|
||||
*
|
||||
* @param string $name Name of the table to drop
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function dropTable($name)
|
||||
{
|
||||
$res = $this->conn->query("DROP TABLE $name");
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds an index to a table.
|
||||
*
|
||||
* If no name is provided, a name will be made up based
|
||||
* on the table name and column names.
|
||||
*
|
||||
* Throws an exception on database error, esp. if the table
|
||||
* does not exist.
|
||||
*
|
||||
* @param string $table Name of the table
|
||||
* @param array $columnNames Name of columns to index
|
||||
* @param string $name (Optional) name of the index
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function createIndex($table, $columnNames, $name=null)
|
||||
{
|
||||
if (!is_array($columnNames)) {
|
||||
$columnNames = array($columnNames);
|
||||
}
|
||||
|
||||
if (empty($name)) {
|
||||
$name = "$table_".implode("_", $columnNames)."_idx";
|
||||
}
|
||||
|
||||
$res = $this->conn->query("ALTER TABLE $table ".
|
||||
"ADD INDEX $name (".
|
||||
implode(",", $columnNames).")");
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Drops a named index from a table.
|
||||
*
|
||||
* @param string $table name of the table the index is on.
|
||||
* @param string $name name of the index
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function dropIndex($table, $name)
|
||||
{
|
||||
$res = $this->conn->query("ALTER TABLE $table DROP INDEX $name");
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a column to a table
|
||||
*
|
||||
* @param string $table name of the table
|
||||
* @param ColumnDef $columndef Definition of the new
|
||||
* column.
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function addColumn($table, $columndef)
|
||||
{
|
||||
$sql = "ALTER TABLE $table ADD COLUMN " . $this->_columnSql($columndef);
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Modifies a column in the schema.
|
||||
*
|
||||
* The name must match an existing column and table.
|
||||
*
|
||||
* @param string $table name of the table
|
||||
* @param ColumnDef $columndef new definition of the column.
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function modifyColumn($table, $columndef)
|
||||
{
|
||||
$sql = "ALTER TABLE $table MODIFY COLUMN " .
|
||||
$this->_columnSql($columndef);
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Drops a column from a table
|
||||
*
|
||||
* The name must match an existing column.
|
||||
*
|
||||
* @param string $table name of the table
|
||||
* @param string $columnName name of the column to drop
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function dropColumn($table, $columnName)
|
||||
{
|
||||
$sql = "ALTER TABLE $table DROP COLUMN $columnName";
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensures that a table exists with the given
|
||||
* name and the given column definitions.
|
||||
*
|
||||
* If the table does not yet exist, it will
|
||||
* create the table. If it does exist, it will
|
||||
* alter the table to match the column definitions.
|
||||
*
|
||||
* @param string $tableName name of the table
|
||||
* @param array $columns array of ColumnDef
|
||||
* objects for the table
|
||||
*
|
||||
* @return boolean success flag
|
||||
*/
|
||||
|
||||
public function ensureTable($tableName, $columns)
|
||||
{
|
||||
// XXX: DB engine portability -> toilet
|
||||
|
||||
try {
|
||||
$td = $this->getTableDef($tableName);
|
||||
} catch (Exception $e) {
|
||||
if (preg_match('/no such table/', $e->getMessage())) {
|
||||
return $this->createTable($tableName, $columns);
|
||||
} else {
|
||||
throw $e;
|
||||
}
|
||||
}
|
||||
|
||||
$cur = $this->_names($td->columns);
|
||||
$new = $this->_names($columns);
|
||||
|
||||
$toadd = array_diff($new, $cur);
|
||||
$todrop = array_diff($cur, $new);
|
||||
$same = array_intersect($new, $cur);
|
||||
$tomod = array();
|
||||
|
||||
foreach ($same as $m) {
|
||||
$curCol = $this->_byName($td->columns, $m);
|
||||
$newCol = $this->_byName($columns, $m);
|
||||
|
||||
if (!$newCol->equals($curCol)) {
|
||||
$tomod[] = $newCol->name;
|
||||
}
|
||||
}
|
||||
|
||||
if (count($toadd) + count($todrop) + count($tomod) == 0) {
|
||||
// nothing to do
|
||||
return true;
|
||||
}
|
||||
|
||||
// For efficiency, we want this all in one
|
||||
// query, instead of using our methods.
|
||||
|
||||
$phrase = array();
|
||||
|
||||
foreach ($toadd as $columnName) {
|
||||
$cd = $this->_byName($columns, $columnName);
|
||||
|
||||
$phrase[] = 'ADD COLUMN ' . $this->_columnSql($cd);
|
||||
}
|
||||
|
||||
foreach ($todrop as $columnName) {
|
||||
$phrase[] = 'DROP COLUMN ' . $columnName;
|
||||
}
|
||||
|
||||
foreach ($tomod as $columnName) {
|
||||
$cd = $this->_byName($columns, $columnName);
|
||||
|
||||
$phrase[] = 'MODIFY COLUMN ' . $this->_columnSql($cd);
|
||||
}
|
||||
|
||||
$sql = 'ALTER TABLE ' . $tableName . ' ' . implode(', ', $phrase);
|
||||
|
||||
$res = $this->conn->query($sql);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the array of names from an array of
|
||||
* ColumnDef objects.
|
||||
*
|
||||
* @param array $cds array of ColumnDef objects
|
||||
*
|
||||
* @return array strings for name values
|
||||
*/
|
||||
|
||||
private function _names($cds)
|
||||
{
|
||||
$names = array();
|
||||
|
||||
foreach ($cds as $cd) {
|
||||
$names[] = $cd->name;
|
||||
}
|
||||
|
||||
return $names;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a ColumnDef from an array matching
|
||||
* name.
|
||||
*
|
||||
* @param array $cds Array of ColumnDef objects
|
||||
* @param string $name Name of the column
|
||||
*
|
||||
* @return ColumnDef matching item or null if no match.
|
||||
*/
|
||||
|
||||
private function _byName($cds, $name)
|
||||
{
|
||||
foreach ($cds as $cd) {
|
||||
if ($cd->name == $name) {
|
||||
return $cd;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the proper SQL for creating or
|
||||
* altering a column.
|
||||
*
|
||||
* Appropriate for use in CREATE TABLE or
|
||||
* ALTER TABLE statements.
|
||||
*
|
||||
* @param ColumnDef $cd column to create
|
||||
*
|
||||
* @return string correct SQL for that column
|
||||
*/
|
||||
|
||||
private function _columnSql($cd)
|
||||
{
|
||||
$sql = "{$cd->name} ";
|
||||
|
||||
if (!empty($cd->size)) {
|
||||
$sql .= "{$cd->type}({$cd->size}) ";
|
||||
} else {
|
||||
$sql .= "{$cd->type} ";
|
||||
}
|
||||
|
||||
if (!empty($cd->default)) {
|
||||
$sql .= "default {$cd->default} ";
|
||||
} else {
|
||||
$sql .= ($cd->nullable) ? "null " : "not null ";
|
||||
}
|
||||
|
||||
if (!empty($cd->auto_increment)) {
|
||||
$sql .= " auto_increment ";
|
||||
}
|
||||
|
||||
if (!empty($cd->extra)) {
|
||||
$sql .= "{$cd->extra} ";
|
||||
}
|
||||
|
||||
return $sql;
|
||||
}
|
||||
}
|
|
@ -38,7 +38,7 @@ class PublicQueueHandler extends QueueHandler
|
|||
try {
|
||||
return jabber_public_notice($notice);
|
||||
} catch (XMPPHP_Exception $e) {
|
||||
$this->log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
|
||||
common_log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -73,6 +73,8 @@ class Router
|
|||
|
||||
if (Event::handle('StartInitializeRouter', array(&$m))) {
|
||||
|
||||
$m->connect('robots.txt', array('action' => 'robotstxt'));
|
||||
|
||||
$m->connect('opensearch/people', array('action' => 'opensearch',
|
||||
'type' => 'people'));
|
||||
$m->connect('opensearch/notice', array('action' => 'opensearch',
|
||||
|
@ -150,6 +152,10 @@ class Router
|
|||
array('action' => 'editapplication'),
|
||||
array('id' => '[0-9]+')
|
||||
);
|
||||
$m->connect('settings/oauthapps/delete/:id',
|
||||
array('action' => 'deleteapplication'),
|
||||
array('id' => '[0-9]+')
|
||||
);
|
||||
|
||||
// search
|
||||
|
||||
|
@ -649,7 +655,16 @@ class Router
|
|||
|
||||
if (common_config('singleuser', 'enabled')) {
|
||||
|
||||
$nickname = common_config('singleuser', 'nickname');
|
||||
$user = User::siteOwner();
|
||||
|
||||
if (!empty($user)) {
|
||||
$nickname = $user->nickname;
|
||||
} else {
|
||||
$nickname = common_config('singleuser', 'nickname');
|
||||
if (empty($nickname)) {
|
||||
throw new ServerException(_("No single user defined for single-user mode."));
|
||||
}
|
||||
}
|
||||
|
||||
foreach (array('subscriptions', 'subscribers',
|
||||
'all', 'foaf', 'xrds',
|
||||
|
@ -697,6 +712,10 @@ class Router
|
|||
'nickname' => $nickname),
|
||||
array('tag' => '[a-zA-Z0-9]+'));
|
||||
|
||||
$m->connect('rsd.xml',
|
||||
array('action' => 'rsd',
|
||||
'nickname' => $nickname));
|
||||
|
||||
$m->connect('',
|
||||
array('action' => 'showstream',
|
||||
'nickname' => $nickname));
|
||||
|
@ -711,6 +730,7 @@ class Router
|
|||
$m->connect('featured', array('action' => 'featured'));
|
||||
$m->connect('favorited/', array('action' => 'favorited'));
|
||||
$m->connect('favorited', array('action' => 'favorited'));
|
||||
$m->connect('rsd.xml', array('action' => 'rsd'));
|
||||
|
||||
foreach (array('subscriptions', 'subscribers',
|
||||
'nudge', 'all', 'foaf', 'xrds',
|
||||
|
@ -758,6 +778,10 @@ class Router
|
|||
array('nickname' => '[a-zA-Z0-9]{1,64}'),
|
||||
array('tag' => '[a-zA-Z0-9]+'));
|
||||
|
||||
$m->connect(':nickname/rsd.xml',
|
||||
array('action' => 'rsd'),
|
||||
array('nickname' => '[a-zA-Z0-9]{1,64}'));
|
||||
|
||||
$m->connect(':nickname',
|
||||
array('action' => 'showstream'),
|
||||
array('nickname' => '[a-zA-Z0-9]{1,64}'));
|
||||
|
|
|
@ -75,64 +75,14 @@ class Schema
|
|||
|
||||
static function get()
|
||||
{
|
||||
$type = common_config('db', 'type');
|
||||
if (empty(self::$_single)) {
|
||||
self::$_single = new Schema();
|
||||
$schemaClass = ucfirst($type).'Schema';
|
||||
self::$_single = new $schemaClass();
|
||||
}
|
||||
return self::$_single;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a TableDef object for the table
|
||||
* in the schema with the given name.
|
||||
*
|
||||
* Throws an exception if the table is not found.
|
||||
*
|
||||
* @param string $name Name of the table to get
|
||||
*
|
||||
* @return TableDef tabledef for that table.
|
||||
*/
|
||||
|
||||
public function getTableDef($name)
|
||||
{
|
||||
$res = $this->conn->query('DESCRIBE ' . $name);
|
||||
|
||||
if (PEAR::isError($res)) {
|
||||
throw new Exception($res->getMessage());
|
||||
}
|
||||
|
||||
$td = new TableDef();
|
||||
|
||||
$td->name = $name;
|
||||
$td->columns = array();
|
||||
|
||||
$row = array();
|
||||
|
||||
while ($res->fetchInto($row, DB_FETCHMODE_ASSOC)) {
|
||||
|
||||
$cd = new ColumnDef();
|
||||
|
||||
$cd->name = $row['Field'];
|
||||
|
||||
$packed = $row['Type'];
|
||||
|
||||
if (preg_match('/^(\w+)\((\d+)\)$/', $packed, $match)) {
|
||||
$cd->type = $match[1];
|
||||
$cd->size = $match[2];
|
||||
} else {
|
||||
$cd->type = $packed;
|
||||
}
|
||||
|
||||
$cd->nullable = ($row['Null'] == 'YES') ? true : false;
|
||||
$cd->key = $row['Key'];
|
||||
$cd->default = $row['Default'];
|
||||
$cd->extra = $row['Extra'];
|
||||
|
||||
$td->columns[] = $cd;
|
||||
}
|
||||
|
||||
return $td;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a ColumnDef object for a single column.
|
||||
*
|
||||
|
@ -523,7 +473,7 @@ class Schema
|
|||
} else {
|
||||
$sql .= ($cd->nullable) ? "null " : "not null ";
|
||||
}
|
||||
|
||||
|
||||
if (!empty($cd->auto_increment)) {
|
||||
$sql .= " auto_increment ";
|
||||
}
|
||||
|
|
|
@ -29,28 +29,36 @@
|
|||
*/
|
||||
|
||||
require_once 'Stomp.php';
|
||||
|
||||
require_once 'Stomp/Exception.php';
|
||||
|
||||
class StompQueueManager extends QueueManager
|
||||
{
|
||||
var $server = null;
|
||||
var $username = null;
|
||||
var $password = null;
|
||||
var $base = null;
|
||||
var $con = null;
|
||||
protected $servers;
|
||||
protected $username;
|
||||
protected $password;
|
||||
protected $base;
|
||||
protected $control;
|
||||
|
||||
|
||||
protected $useTransactions = true;
|
||||
|
||||
protected $sites = array();
|
||||
protected $subscriptions = array();
|
||||
|
||||
protected $useTransactions = true;
|
||||
protected $transaction = null;
|
||||
protected $transactionCount = 0;
|
||||
protected $cons = array(); // all open connections
|
||||
protected $disconnect = array();
|
||||
protected $transaction = array();
|
||||
protected $transactionCount = array();
|
||||
protected $defaultIdx = 0;
|
||||
|
||||
function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->server = common_config('queue', 'stomp_server');
|
||||
$server = common_config('queue', 'stomp_server');
|
||||
if (is_array($server)) {
|
||||
$this->servers = $server;
|
||||
} else {
|
||||
$this->servers = array($server);
|
||||
}
|
||||
$this->username = common_config('queue', 'stomp_username');
|
||||
$this->password = common_config('queue', 'stomp_password');
|
||||
$this->base = common_config('queue', 'queue_basename');
|
||||
|
@ -99,9 +107,9 @@ class StompQueueManager extends QueueManager
|
|||
$message .= ':' . $param;
|
||||
}
|
||||
$this->_connect();
|
||||
$result = $this->con->send($this->control,
|
||||
$message,
|
||||
array ('created' => common_sql_now()));
|
||||
$result = $this->_send($this->control,
|
||||
$message,
|
||||
array ('created' => common_sql_now()));
|
||||
if ($result) {
|
||||
$this->_log(LOG_INFO, "Sent control ping to queue daemons: $message");
|
||||
return true;
|
||||
|
@ -166,28 +174,59 @@ class StompQueueManager extends QueueManager
|
|||
/**
|
||||
* Saves a notice object reference into the queue item table.
|
||||
* @return boolean true on success
|
||||
* @throws StompException on connection or send error
|
||||
*/
|
||||
public function enqueue($object, $queue)
|
||||
{
|
||||
$this->_connect();
|
||||
return $this->_doEnqueue($object, $queue, $this->defaultIdx);
|
||||
}
|
||||
|
||||
/**
|
||||
* Saves a notice object reference into the queue item table
|
||||
* on the given connection.
|
||||
*
|
||||
* @return boolean true on success
|
||||
* @throws StompException on connection or send error
|
||||
*/
|
||||
protected function _doEnqueue($object, $queue, $idx)
|
||||
{
|
||||
$msg = $this->encode($object);
|
||||
$rep = $this->logrep($object);
|
||||
|
||||
$this->_connect();
|
||||
$props = array('created' => common_sql_now());
|
||||
if ($this->isPersistent($queue)) {
|
||||
$props['persistent'] = 'true';
|
||||
}
|
||||
|
||||
// XXX: serialize and send entire notice
|
||||
|
||||
$result = $this->con->send($this->queueName($queue),
|
||||
$msg, // BODY of the message
|
||||
array ('created' => common_sql_now(),
|
||||
'persistent' => 'true'));
|
||||
$con = $this->cons[$idx];
|
||||
$host = $con->getServer();
|
||||
$result = $con->send($this->queueName($queue), $msg, $props);
|
||||
|
||||
if (!$result) {
|
||||
common_log(LOG_ERR, "Error sending $rep to $queue queue");
|
||||
common_log(LOG_ERR, "Error sending $rep to $queue queue on $host");
|
||||
return false;
|
||||
}
|
||||
|
||||
common_log(LOG_DEBUG, "complete remote queueing $rep for $queue");
|
||||
common_log(LOG_DEBUG, "complete remote queueing $rep for $queue on $host");
|
||||
$this->stats('enqueued', $queue);
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether messages to this queue should be marked as persistent.
|
||||
* Actual persistent storage depends on the queue server's configuration.
|
||||
* @param string $queue
|
||||
* @return bool
|
||||
*/
|
||||
protected function isPersistent($queue)
|
||||
{
|
||||
$mode = common_config('queue', 'stomp_persistent');
|
||||
if (is_array($mode)) {
|
||||
return in_array($queue, $mode);
|
||||
} else {
|
||||
return (bool)$mode;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -198,7 +237,29 @@ class StompQueueManager extends QueueManager
|
|||
*/
|
||||
public function getSockets()
|
||||
{
|
||||
return array($this->con->getSocket());
|
||||
$sockets = array();
|
||||
foreach ($this->cons as $con) {
|
||||
if ($con) {
|
||||
$sockets[] = $con->getSocket();
|
||||
}
|
||||
}
|
||||
return $sockets;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the Stomp connection object associated with the given socket.
|
||||
* @param resource $socket
|
||||
* @return int index into connections list
|
||||
* @throws Exception
|
||||
*/
|
||||
protected function connectionFromSocket($socket)
|
||||
{
|
||||
foreach ($this->cons as $i => $con) {
|
||||
if ($con && $con->getSocket() === $socket) {
|
||||
return $i;
|
||||
}
|
||||
}
|
||||
throw new Exception(__CLASS__ . " asked to read from unrecognized socket");
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -210,27 +271,56 @@ class StompQueueManager extends QueueManager
|
|||
*/
|
||||
public function handleInput($socket)
|
||||
{
|
||||
assert($socket === $this->con->getSocket());
|
||||
$idx = $this->connectionFromSocket($socket);
|
||||
$con = $this->cons[$idx];
|
||||
$host = $con->getServer();
|
||||
|
||||
$ok = true;
|
||||
$frames = $this->con->readFrames();
|
||||
try {
|
||||
$frames = $con->readFrames();
|
||||
} catch (StompException $e) {
|
||||
common_log(LOG_ERR, "Lost connection to $host: " . $e->getMessage());
|
||||
$this->cons[$idx] = null;
|
||||
$this->transaction[$idx] = null;
|
||||
$this->disconnect[$idx] = time();
|
||||
return false;
|
||||
}
|
||||
foreach ($frames as $frame) {
|
||||
$dest = $frame->headers['destination'];
|
||||
if ($dest == $this->control) {
|
||||
if (!$this->handleControlSignal($frame)) {
|
||||
if (!$this->handleControlSignal($idx, $frame)) {
|
||||
// We got a control event that requests a shutdown;
|
||||
// close out and stop handling anything else!
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
$ok = $ok && $this->handleItem($frame);
|
||||
$ok = $ok && $this->handleItem($idx, $frame);
|
||||
}
|
||||
}
|
||||
return $ok;
|
||||
}
|
||||
|
||||
/**
|
||||
* Attempt to reconnect in background if we lost a connection.
|
||||
*/
|
||||
function idle()
|
||||
{
|
||||
$now = time();
|
||||
foreach ($this->cons as $idx => $con) {
|
||||
if (empty($con)) {
|
||||
$age = $now - $this->disconnect[$idx];
|
||||
if ($age >= 60) {
|
||||
$this->_reconnect($idx);
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize our connection and subscribe to all the queues
|
||||
* we're going to need to handle...
|
||||
* we're going to need to handle... If multiple queue servers
|
||||
* are configured for failover, we'll listen to all of them.
|
||||
*
|
||||
* Side effects: in multi-site mode, may reset site configuration.
|
||||
*
|
||||
|
@ -240,9 +330,14 @@ class StompQueueManager extends QueueManager
|
|||
public function start($master)
|
||||
{
|
||||
parent::start($master);
|
||||
$this->_connect();
|
||||
$this->_connectAll();
|
||||
|
||||
$this->con->subscribe($this->control);
|
||||
common_log(LOG_INFO, "Subscribing to $this->control");
|
||||
foreach ($this->cons as $con) {
|
||||
if ($con) {
|
||||
$con->subscribe($this->control);
|
||||
}
|
||||
}
|
||||
if ($this->sites) {
|
||||
foreach ($this->sites as $server) {
|
||||
StatusNet::init($server);
|
||||
|
@ -251,10 +346,14 @@ class StompQueueManager extends QueueManager
|
|||
} else {
|
||||
$this->doSubscribe();
|
||||
}
|
||||
$this->begin();
|
||||
foreach ($this->cons as $i => $con) {
|
||||
if ($con) {
|
||||
$this->begin($i);
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Subscribe to all the queues we're going to need to handle...
|
||||
*
|
||||
|
@ -266,8 +365,12 @@ class StompQueueManager extends QueueManager
|
|||
{
|
||||
// If there are any outstanding delivered messages we haven't processed,
|
||||
// free them for another thread to take.
|
||||
$this->rollback();
|
||||
$this->con->unsubscribe($this->control);
|
||||
foreach ($this->cons as $i => $con) {
|
||||
if ($con) {
|
||||
$this->rollback($i);
|
||||
$con->unsubscribe($this->control);
|
||||
}
|
||||
}
|
||||
if ($this->sites) {
|
||||
foreach ($this->sites as $server) {
|
||||
StatusNet::init($server);
|
||||
|
@ -289,23 +392,106 @@ class StompQueueManager extends QueueManager
|
|||
}
|
||||
|
||||
/**
|
||||
* Lazy open connection to Stomp queue server.
|
||||
* Lazy open a single connection to Stomp queue server.
|
||||
* If multiple servers are configured, we let the Stomp client library
|
||||
* worry about finding a working connection among them.
|
||||
*/
|
||||
protected function _connect()
|
||||
{
|
||||
if (empty($this->con)) {
|
||||
$this->_log(LOG_INFO, "Connecting to '$this->server' as '$this->username'...");
|
||||
$this->con = new LiberalStomp($this->server);
|
||||
|
||||
if ($this->con->connect($this->username, $this->password)) {
|
||||
$this->_log(LOG_INFO, "Connected.");
|
||||
if (empty($this->cons)) {
|
||||
$list = $this->servers;
|
||||
if (count($list) > 1) {
|
||||
shuffle($list); // Randomize to spread load
|
||||
$url = 'failover://(' . implode(',', $list) . ')';
|
||||
} else {
|
||||
$this->_log(LOG_ERR, 'Failed to connect to queue server');
|
||||
throw new ServerException('Failed to connect to queue server');
|
||||
$url = $list[0];
|
||||
}
|
||||
$con = $this->_doConnect($url);
|
||||
$this->cons = array($con);
|
||||
$this->transactionCount = array(0);
|
||||
$this->transaction = array(null);
|
||||
$this->disconnect = array(null);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Lazy open connections to all Stomp servers, if in manual failover
|
||||
* mode. This means the queue servers don't speak to each other, so
|
||||
* we have to listen to all of them to make sure we get all events.
|
||||
*/
|
||||
protected function _connectAll()
|
||||
{
|
||||
if (!common_config('queue', 'stomp_manual_failover')) {
|
||||
return $this->_connect();
|
||||
}
|
||||
if (empty($this->cons)) {
|
||||
$this->cons = array();
|
||||
$this->transactionCount = array();
|
||||
$this->transaction = array();
|
||||
foreach ($this->servers as $idx => $server) {
|
||||
try {
|
||||
$this->cons[] = $this->_doConnect($server);
|
||||
$this->disconnect[] = null;
|
||||
} catch (Exception $e) {
|
||||
// s'okay, we'll live
|
||||
$this->cons[] = null;
|
||||
$this->disconnect[] = time();
|
||||
}
|
||||
$this->transactionCount[] = 0;
|
||||
$this->transaction[] = null;
|
||||
}
|
||||
if (empty($this->cons)) {
|
||||
throw new ServerException("No queue servers reachable...");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected function _reconnect($idx)
|
||||
{
|
||||
try {
|
||||
$con = $this->_doConnect($this->servers[$idx]);
|
||||
} catch (Exception $e) {
|
||||
$this->_log(LOG_ERR, $e->getMessage());
|
||||
$con = null;
|
||||
}
|
||||
if ($con) {
|
||||
$this->cons[$idx] = $con;
|
||||
$this->disconnect[$idx] = null;
|
||||
|
||||
// now we have to listen to everything...
|
||||
// @fixme refactor this nicer. :P
|
||||
$host = $con->getServer();
|
||||
$this->_log(LOG_INFO, "Resubscribing to $this->control on $host");
|
||||
$con->subscribe($this->control);
|
||||
foreach ($this->subscriptions as $site => $queues) {
|
||||
foreach ($queues as $queue) {
|
||||
$this->_log(LOG_INFO, "Resubscribing to $queue on $host");
|
||||
$con->subscribe($queue);
|
||||
}
|
||||
}
|
||||
$this->begin($idx);
|
||||
} else {
|
||||
// Try again later...
|
||||
$this->disconnect[$idx] = time();
|
||||
}
|
||||
}
|
||||
|
||||
protected function _doConnect($server)
|
||||
{
|
||||
$this->_log(LOG_INFO, "Connecting to '$server' as '$this->username'...");
|
||||
$con = new LiberalStomp($server);
|
||||
|
||||
if ($con->connect($this->username, $this->password)) {
|
||||
$this->_log(LOG_INFO, "Connected.");
|
||||
} else {
|
||||
$this->_log(LOG_ERR, 'Failed to connect to queue server');
|
||||
throw new ServerException('Failed to connect to queue server');
|
||||
}
|
||||
|
||||
return $con;
|
||||
}
|
||||
|
||||
/**
|
||||
* Subscribe to all enabled notice queues for the current site.
|
||||
*/
|
||||
|
@ -317,7 +503,11 @@ class StompQueueManager extends QueueManager
|
|||
$rawqueue = $this->queueName($queue);
|
||||
$this->subscriptions[$site][$queue] = $rawqueue;
|
||||
$this->_log(LOG_INFO, "Subscribing to $rawqueue");
|
||||
$this->con->subscribe($rawqueue);
|
||||
foreach ($this->cons as $con) {
|
||||
if ($con) {
|
||||
$con->subscribe($rawqueue);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -331,7 +521,11 @@ class StompQueueManager extends QueueManager
|
|||
if (!empty($this->subscriptions[$site])) {
|
||||
foreach ($this->subscriptions[$site] as $queue => $rawqueue) {
|
||||
$this->_log(LOG_INFO, "Unsubscribing from $rawqueue");
|
||||
$this->con->unsubscribe($rawqueue);
|
||||
foreach ($this->cons as $con) {
|
||||
if ($con) {
|
||||
$con->unsubscribe($rawqueue);
|
||||
}
|
||||
}
|
||||
unset($this->subscriptions[$site][$queue]);
|
||||
}
|
||||
}
|
||||
|
@ -346,27 +540,31 @@ class StompQueueManager extends QueueManager
|
|||
* Side effects: in multi-site mode, may reset site configuration to
|
||||
* match the site that queued the event.
|
||||
*
|
||||
* @param int $idx connection index
|
||||
* @param StompFrame $frame
|
||||
* @return bool
|
||||
*/
|
||||
protected function handleItem($frame)
|
||||
protected function handleItem($idx, $frame)
|
||||
{
|
||||
$this->defaultIdx = $idx;
|
||||
|
||||
list($site, $queue) = $this->parseDestination($frame->headers['destination']);
|
||||
if ($site != $this->currentSite()) {
|
||||
$this->stats('switch');
|
||||
StatusNet::init($site);
|
||||
}
|
||||
|
||||
$host = $this->cons[$idx]->getServer();
|
||||
if (is_numeric($frame->body)) {
|
||||
$id = intval($frame->body);
|
||||
$info = "notice $id posted at {$frame->headers['created']} in queue $queue";
|
||||
$info = "notice $id posted at {$frame->headers['created']} in queue $queue from $host";
|
||||
|
||||
$notice = Notice::staticGet('id', $id);
|
||||
if (empty($notice)) {
|
||||
$this->_log(LOG_WARNING, "Skipping missing $info");
|
||||
$this->ack($frame);
|
||||
$this->commit();
|
||||
$this->begin();
|
||||
$this->ack($idx, $frame);
|
||||
$this->commit($idx);
|
||||
$this->begin($idx);
|
||||
$this->stats('badnotice', $queue);
|
||||
return false;
|
||||
}
|
||||
|
@ -374,39 +572,47 @@ class StompQueueManager extends QueueManager
|
|||
$item = $notice;
|
||||
} else {
|
||||
// @fixme should we serialize, or json, or what here?
|
||||
$info = "string posted at {$frame->headers['created']} in queue $queue";
|
||||
$info = "string posted at {$frame->headers['created']} in queue $queue from $host";
|
||||
$item = $frame->body;
|
||||
}
|
||||
|
||||
$handler = $this->getHandler($queue);
|
||||
if (!$handler) {
|
||||
$this->_log(LOG_ERR, "Missing handler class; skipping $info");
|
||||
$this->ack($frame);
|
||||
$this->commit();
|
||||
$this->begin();
|
||||
$this->ack($idx, $frame);
|
||||
$this->commit($idx);
|
||||
$this->begin($idx);
|
||||
$this->stats('badhandler', $queue);
|
||||
return false;
|
||||
}
|
||||
|
||||
$ok = $handler->handle($item);
|
||||
// If there's an exception when handling,
|
||||
// log the error and let it get requeued.
|
||||
|
||||
try {
|
||||
$ok = $handler->handle($item);
|
||||
} catch (Exception $e) {
|
||||
$this->_log(LOG_ERR, "Exception on queue $queue: " . $e->getMessage());
|
||||
$ok = false;
|
||||
}
|
||||
|
||||
if (!$ok) {
|
||||
$this->_log(LOG_WARNING, "Failed handling $info");
|
||||
// FIXME we probably shouldn't have to do
|
||||
// this kind of queue management ourselves;
|
||||
// if we don't ack, it should resend...
|
||||
$this->ack($frame);
|
||||
$this->ack($idx, $frame);
|
||||
$this->enqueue($item, $queue);
|
||||
$this->commit();
|
||||
$this->begin();
|
||||
$this->commit($idx);
|
||||
$this->begin($idx);
|
||||
$this->stats('requeued', $queue);
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->_log(LOG_INFO, "Successfully handled $info");
|
||||
$this->ack($frame);
|
||||
$this->commit();
|
||||
$this->begin();
|
||||
$this->ack($idx, $frame);
|
||||
$this->commit($idx);
|
||||
$this->begin($idx);
|
||||
$this->stats('handled', $queue);
|
||||
return true;
|
||||
}
|
||||
|
@ -414,10 +620,11 @@ class StompQueueManager extends QueueManager
|
|||
/**
|
||||
* Process a control signal broadcast.
|
||||
*
|
||||
* @param int $idx connection index
|
||||
* @param array $frame Stomp frame
|
||||
* @return bool true to continue; false to stop further processing.
|
||||
*/
|
||||
protected function handleControlSignal($frame)
|
||||
protected function handleControlSignal($idx, $frame)
|
||||
{
|
||||
$message = trim($frame->body);
|
||||
if (strpos($message, ':') !== false) {
|
||||
|
@ -441,12 +648,12 @@ class StompQueueManager extends QueueManager
|
|||
$this->_log(LOG_ERR, "Ignoring unrecognized control message: $message");
|
||||
}
|
||||
|
||||
$this->ack($frame);
|
||||
$this->commit();
|
||||
$this->begin();
|
||||
$this->ack($idx, $frame);
|
||||
$this->commit($idx);
|
||||
$this->begin($idx);
|
||||
return $shutdown;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set us up with queue subscriptions for a new site added at runtime,
|
||||
* triggered by a broadcast to the 'statusnet-control' topic.
|
||||
|
@ -520,47 +727,49 @@ class StompQueueManager extends QueueManager
|
|||
common_log($level, 'StompQueueManager: '.$msg);
|
||||
}
|
||||
|
||||
protected function begin()
|
||||
protected function begin($idx)
|
||||
{
|
||||
if ($this->useTransactions) {
|
||||
if ($this->transaction) {
|
||||
if (!empty($this->transaction[$idx])) {
|
||||
throw new Exception("Tried to start transaction in the middle of a transaction");
|
||||
}
|
||||
$this->transactionCount++;
|
||||
$this->transaction = $this->master->id . '-' . $this->transactionCount . '-' . time();
|
||||
$this->con->begin($this->transaction);
|
||||
$this->transactionCount[$idx]++;
|
||||
$this->transaction[$idx] = $this->master->id . '-' . $this->transactionCount[$idx] . '-' . time();
|
||||
$this->cons[$idx]->begin($this->transaction[$idx]);
|
||||
}
|
||||
}
|
||||
|
||||
protected function ack($frame)
|
||||
protected function ack($idx, $frame)
|
||||
{
|
||||
if ($this->useTransactions) {
|
||||
if (!$this->transaction) {
|
||||
if (empty($this->transaction[$idx])) {
|
||||
throw new Exception("Tried to ack but not in a transaction");
|
||||
}
|
||||
$this->cons[$idx]->ack($frame, $this->transaction[$idx]);
|
||||
} else {
|
||||
$this->cons[$idx]->ack($frame);
|
||||
}
|
||||
$this->con->ack($frame, $this->transaction);
|
||||
}
|
||||
|
||||
protected function commit()
|
||||
protected function commit($idx)
|
||||
{
|
||||
if ($this->useTransactions) {
|
||||
if (!$this->transaction) {
|
||||
if (empty($this->transaction[$idx])) {
|
||||
throw new Exception("Tried to commit but not in a transaction");
|
||||
}
|
||||
$this->con->commit($this->transaction);
|
||||
$this->transaction = null;
|
||||
$this->cons[$idx]->commit($this->transaction[$idx]);
|
||||
$this->transaction[$idx] = null;
|
||||
}
|
||||
}
|
||||
|
||||
protected function rollback()
|
||||
protected function rollback($idx)
|
||||
{
|
||||
if ($this->useTransactions) {
|
||||
if (!$this->transaction) {
|
||||
if (empty($this->transaction[$idx])) {
|
||||
throw new Exception("Tried to rollback but not in a transaction");
|
||||
}
|
||||
$this->con->commit($this->transaction);
|
||||
$this->transaction = null;
|
||||
$this->cons[$idx]->commit($this->transaction[$idx]);
|
||||
$this->transaction[$idx] = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
13
lib/util.php
13
lib/util.php
|
@ -178,7 +178,6 @@ function common_ensure_session()
|
|||
}
|
||||
if (isset($id)) {
|
||||
session_id($id);
|
||||
setcookie(session_name(), $id);
|
||||
}
|
||||
@session_start();
|
||||
if (!isset($_SESSION['started'])) {
|
||||
|
@ -990,9 +989,14 @@ function common_enqueue_notice($notice)
|
|||
static $localTransports = array('omb',
|
||||
'ping');
|
||||
|
||||
static $allTransports = array('sms', 'plugin');
|
||||
|
||||
$transports = $allTransports;
|
||||
$transports = array();
|
||||
if (common_config('sms', 'enabled')) {
|
||||
$transports[] = 'sms';
|
||||
}
|
||||
if (Event::hasHandler('HandleQueuedNotice')) {
|
||||
$transports[] = 'plugin';
|
||||
}
|
||||
|
||||
|
||||
$xmpp = common_config('xmpp', 'enabled');
|
||||
|
||||
|
@ -1000,6 +1004,7 @@ function common_enqueue_notice($notice)
|
|||
$transports[] = 'jabber';
|
||||
}
|
||||
|
||||
// @fixme move these checks into QueueManager and/or individual handlers
|
||||
if ($notice->is_local == Notice::LOCAL_PUBLIC ||
|
||||
$notice->is_local == Notice::LOCAL_NONPUBLIC) {
|
||||
$transports = array_merge($transports, $localTransports);
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:16+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:02+0000\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ar\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -97,7 +97,7 @@ msgstr "لا صفحة كهذه"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -154,7 +154,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -376,8 +376,8 @@ msgstr ""
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "ليس اسمًا مستعارًا صحيحًا."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -389,8 +389,8 @@ msgstr "الصفحة الرئيسية ليست عنونًا صالحًا."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
@ -467,18 +467,23 @@ msgstr "مجموعات %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "مجموعات %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
msgstr "طلب سيء."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "حجم غير صالح."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -489,74 +494,82 @@ msgstr "طلب سيء."
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "اسم/كلمة سر غير صحيحة!"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "خطأ قاعدة البيانات أثناء حذف المستخدم OAuth app"
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "خطأ قاعدة البيانات أثناء إدخال المستخدم OAuth app"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "الحساب"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "الاسم المستعار"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "كلمة السر"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "ارفض"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "اسمح"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -725,8 +738,8 @@ msgstr "الأصلي"
|
|||
msgid "Preview"
|
||||
msgstr "عاين"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "احذف"
|
||||
|
||||
|
@ -773,8 +786,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "لا"
|
||||
|
||||
|
@ -782,9 +796,9 @@ msgstr "لا"
|
|||
msgid "Do not block this user"
|
||||
msgstr "لا تمنع هذا المستخدم"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "نعم"
|
||||
|
||||
|
@ -888,6 +902,49 @@ msgstr "محادثة"
|
|||
msgid "Notices"
|
||||
msgstr "الإشعارات"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "لم يوجد رمز التأكيد."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "أنت لست مالك هذا التطبيق."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "عدّل التطبيق"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "لا تحذف هذا الإشعار"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "احذف هذا الإشعار"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -920,7 +977,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "لا تحذف هذا الإشعار"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "احذف هذا الإشعار"
|
||||
|
||||
|
@ -1060,7 +1117,7 @@ msgstr "هذا الشعار ليس مفضلًا!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "أضف إلى المفضلات"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "لا مستند كهذا."
|
||||
|
@ -1074,20 +1131,11 @@ msgstr "عدّل التطبيق"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "أنت لست مالك هذا التطبيق."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "لا تطبيق كهذا."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "استخدم هذا النموذج لتعدل تطبيقك."
|
||||
|
@ -1096,43 +1144,47 @@ msgstr "استخدم هذا النموذج لتعدل تطبيقك."
|
|||
msgid "Name is required."
|
||||
msgstr "الاسم مطلوب."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "الاسم طويل جدا (الأقصى 255 حرفا)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "الوصف مطلوب."
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "مسار المصدر ليس صحيحا."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr "المنظمة مطلوبة."
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr "صفحة المنظمة الرئيسية مطلوبة."
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr "لم يمكن تحديث التطبيق."
|
||||
|
||||
|
@ -1987,11 +2039,11 @@ msgstr "يجب أن تكون مسجل الدخول لتسجل تطبيقا."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "استخدم هذا النموذج لتسجل تطبيقا جديدا."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr "لم يمكن إنشاء التطبيق."
|
||||
|
||||
|
@ -2118,28 +2170,28 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "لست مستخدما لهذا التطبيق."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2631,36 +2683,36 @@ msgstr "المسار الزمني العام، صفحة %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "المسار الزمني العام"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "كن أول من يُرسل!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2673,7 +2725,7 @@ msgstr ""
|
|||
"الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! "
|
||||
"([اقرأ المزيد](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3004,7 +3056,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "أنت كررت هذه الملاحظة بالفعل."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "مكرر"
|
||||
|
||||
|
@ -3064,6 +3116,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "ستاتس نت"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr ""
|
||||
|
@ -3107,76 +3163,81 @@ msgstr "اذف إعدادت الموقع"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr "أيقونة"
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "المنظمة"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "الوصف"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "إحصاءات"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr "اسمح بالمسار"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3380,25 +3441,25 @@ msgstr ""
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3407,7 +3468,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3415,7 +3476,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "تكرار ل%s"
|
||||
|
@ -4055,10 +4116,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "ستاتس نت"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4176,22 +4233,22 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr "مشكلة أثناء حفظ الإشعار."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "مشكلة أثناء حفظ الإشعار."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "آر تي @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "أهلا بكم في %1$s يا @%2$s!"
|
||||
|
@ -4468,11 +4525,11 @@ msgstr "ضبط المسارات"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "ضبط التصميم"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -4843,19 +4900,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "اذهب إلى المُثبّت."
|
||||
|
||||
|
@ -5416,23 +5473,23 @@ msgstr "غ"
|
|||
msgid "at"
|
||||
msgstr "في"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "في السياق"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "مكرر بواسطة"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "رُد على هذا الإشعار"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "رُد"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "الإشعار مكرر"
|
||||
|
||||
|
@ -5573,6 +5630,10 @@ msgstr "أأكرّر هذا الإشعار؟ّ"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "كرّر هذا الإشعار"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5738,47 +5799,47 @@ msgstr "رسالة"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "قبل لحظات قليلة"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "قبل دقيقة تقريبًا"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "قبل ساعة تقريبًا"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "قبل يوم تقريبا"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "قبل شهر تقريبًا"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "قبل سنة تقريبًا"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:19+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:07+0000\n"
|
||||
"Language-Team: Egyptian Spoken Arabic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: arz\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -97,7 +97,7 @@ msgstr "لا صفحه كهذه"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -154,7 +154,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -376,8 +376,8 @@ msgstr ""
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "ليس اسمًا مستعارًا صحيحًا."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -389,8 +389,8 @@ msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
@ -467,18 +467,23 @@ msgstr "مجموعات %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "مجموعات %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "حجم غير صالح."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -489,74 +494,82 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "اسم/كلمه سر غير صحيحة!"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "خطأ قاعده البيانات أثناء حذف المستخدم OAuth app"
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "خطأ قاعده البيانات أثناء إدخال المستخدم OAuth app"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "الحساب"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "الاسم المستعار"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "كلمه السر"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "ارفض"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "اسمح"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -725,8 +738,8 @@ msgstr "الأصلي"
|
|||
msgid "Preview"
|
||||
msgstr "عاين"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "احذف"
|
||||
|
||||
|
@ -773,8 +786,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "لا"
|
||||
|
||||
|
@ -782,9 +796,9 @@ msgstr "لا"
|
|||
msgid "Do not block this user"
|
||||
msgstr "لا تمنع هذا المستخدم"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "نعم"
|
||||
|
||||
|
@ -888,6 +902,49 @@ msgstr "محادثة"
|
|||
msgid "Notices"
|
||||
msgstr "الإشعارات"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "لم يوجد رمز التأكيد."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "أنت لست مالك هذا التطبيق."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "لا تطبيق كهذا."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "لا تحذف هذا الإشعار"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "احذف هذا الإشعار"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -920,7 +977,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "لا تحذف هذا الإشعار"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "احذف هذا الإشعار"
|
||||
|
||||
|
@ -1060,7 +1117,7 @@ msgstr "هذا الشعار ليس مفضلًا!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "أضف إلى المفضلات"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "لا مستند كهذا."
|
||||
|
@ -1074,20 +1131,11 @@ msgstr "تطبيقات OAuth"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "أنت لست مالك هذا التطبيق."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "لا تطبيق كهذا."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "استخدم النموذج ده علشان تعدل تطبيقك."
|
||||
|
@ -1096,43 +1144,47 @@ msgstr "استخدم النموذج ده علشان تعدل تطبيقك."
|
|||
msgid "Name is required."
|
||||
msgstr "الاسم مطلوب."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "الاسم طويل جدا (الأقصى 255 حرفا)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "الوصف مطلوب."
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "مسار المصدر ليس صحيحا."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "المنظمه طويله جدا (الأقصى 255 حرفا)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr "لم يمكن تحديث التطبيق."
|
||||
|
||||
|
@ -1987,11 +2039,11 @@ msgstr "يجب أن تكون مسجل الدخول لتسجل تطبيقا."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "استخدم هذا النموذج لتسجل تطبيقا جديدا."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr "مش ممكن إنشاء التطبيق."
|
||||
|
||||
|
@ -2116,28 +2168,28 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "أنت لست مستخدما لهذا التطبيق."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2629,36 +2681,36 @@ msgstr "المسار الزمنى العام، صفحه %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "المسار الزمنى العام"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "كن أول من يُرسل!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2671,7 +2723,7 @@ msgstr ""
|
|||
"الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! "
|
||||
"([اقرأ المزيد](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3002,7 +3054,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصيه."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "أنت كررت هذه الملاحظه بالفعل."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "مكرر"
|
||||
|
||||
|
@ -3062,6 +3114,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "ستاتس نت"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr ""
|
||||
|
@ -3105,76 +3161,81 @@ msgstr "اذف إعدادت الموقع"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "يجب أن تكون مسجل الدخول لرؤيه تطبيق."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "المنظمة"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "الوصف"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "إحصاءات"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr "اسمح بالمسار"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3378,25 +3439,25 @@ msgstr ""
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3405,7 +3466,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3413,7 +3474,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "تكرارات %s"
|
||||
|
@ -4053,10 +4114,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "ستاتس نت"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4174,22 +4231,22 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr "مشكله أثناء حفظ الإشعار."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "مشكله أثناء حفظ الإشعار."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "آر تى @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "أهلا بكم فى %1$s يا @%2$s!"
|
||||
|
@ -4466,11 +4523,11 @@ msgstr "ضبط المسارات"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "ضبط التصميم"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -4841,19 +4898,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "اذهب إلى المُثبّت."
|
||||
|
||||
|
@ -5404,23 +5461,23 @@ msgstr "غ"
|
|||
msgid "at"
|
||||
msgstr "في"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "فى السياق"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "مكرر بواسطة"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "رُد على هذا الإشعار"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "رُد"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "الإشعار مكرر"
|
||||
|
||||
|
@ -5561,6 +5618,10 @@ msgstr "كرر هذا الإشعار؟"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "كرر هذا الإشعار"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5726,47 +5787,47 @@ msgstr "رسالة"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "قبل لحظات قليلة"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "قبل دقيقه تقريبًا"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "قبل ساعه تقريبًا"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "قبل يوم تقريبا"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "قبل شهر تقريبًا"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "قبل سنه تقريبًا"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:22+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:10+0000\n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: bg\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -96,7 +96,7 @@ msgstr "Няма такака страница."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -153,7 +153,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -385,8 +385,8 @@ msgstr "Опитайте друг псевдоним, този вече е за
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Неправилен псевдоним."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -398,8 +398,8 @@ msgstr "Адресът на личната страница не е правил
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Пълното име е твърде дълго (макс. 255 знака)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Описанието е твърде дълго (до %d символа)."
|
||||
|
@ -476,18 +476,23 @@ msgstr "Групи на %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "групи в %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Неправилен размер."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -498,76 +503,84 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Неправилно име или парола."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Грешка в настройките на потребителя."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Неочаквано изпращане на форма."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Сметка"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Псевдоним"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Парола"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "Всички"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -738,8 +751,8 @@ msgstr "Оригинал"
|
|||
msgid "Preview"
|
||||
msgstr "Преглед"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Изтриване"
|
||||
|
||||
|
@ -786,8 +799,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Не"
|
||||
|
||||
|
@ -795,9 +809,9 @@ msgstr "Не"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Да не се блокира този потребител"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Да"
|
||||
|
||||
|
@ -904,6 +918,50 @@ msgstr "Разговор"
|
|||
msgid "Notices"
|
||||
msgstr "Бележки"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "За да редактирате група, трябва да сте влезли."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Бележката няма профил"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Не членувате в тази група."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Имаше проблем със сесията ви в сайта."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Няма такава бележка."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Да не се изтрива бележката"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Изтриване на бележката"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -936,7 +994,7 @@ msgstr "Наистина ли искате да изтриете тази бел
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Да не се изтрива бележката"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Изтриване на бележката"
|
||||
|
||||
|
@ -1081,7 +1139,7 @@ msgstr "Тази бележка не е отбелязана като любим
|
|||
msgid "Add to favorites"
|
||||
msgstr "Добавяне към любимите"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Няма такъв документ."
|
||||
|
@ -1096,22 +1154,12 @@ msgstr "Други настройки"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "За да редактирате група, трябва да сте влезли."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Не членувате в тази група."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Няма такава бележка."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Имаше проблем със сесията ви в сайта."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1122,47 +1170,52 @@ msgstr "Използвайте тази бланка за създаване н
|
|||
msgid "Name is required."
|
||||
msgstr "Същото като паролата по-горе. Задължително поле."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Пълното име е твърде дълго (макс. 255 знака)"
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Опитайте друг псевдоним, този вече е зает."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Описание"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Адресът на личната страница не е правилен URL."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Името на местоположението е твърде дълго (макс. 255 знака)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Грешка при обновяване на групата."
|
||||
|
@ -2095,11 +2148,11 @@ msgstr "За да създавате група, трябва да сте вле
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Използвайте тази бланка за създаване на нова група."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Грешка при отбелязване като любима."
|
||||
|
@ -2231,29 +2284,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Не членувате в тази група."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2759,36 +2812,36 @@ msgstr "Общ поток, страница %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Общ поток"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Емисия на общия поток (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Емисия на общия поток (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Емисия на общия поток (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2797,7 +2850,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3155,7 +3208,7 @@ msgstr "Не можете да повтаряте собствена бележ
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Вече сте повторили тази бележка."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Повторено"
|
||||
|
||||
|
@ -3215,6 +3268,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Отговори до %1$s в %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Бележката е изтрита."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3261,80 +3319,85 @@ msgstr "Запазване настройките на сайта"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "За напуснете група, трябва да сте влезли."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Бележката няма профил"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Псевдоним"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Страниране"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Статистики"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
#, fuzzy
|
||||
msgid "Authorize URL"
|
||||
msgstr "Автор"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Наистина ли искате да изтриете тази бележка?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3534,25 +3597,25 @@ msgstr "Емисия с бележки на %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF за %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3561,7 +3624,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3569,7 +3632,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Отговори на %s"
|
||||
|
@ -4245,11 +4308,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Бележката е изтрита."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4379,22 +4437,22 @@ msgstr "Забранено ви е да публикувате бележки в
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Проблем при записване на бележката."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Проблем при записване на бележката."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Добре дошли в %1$s, @%2$s!"
|
||||
|
@ -4681,11 +4739,11 @@ msgstr "Настройка на пътищата"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Настройка на оформлението"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5054,19 +5112,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Не е открит файл с настройки. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Влизане в сайта"
|
||||
|
@ -5639,23 +5697,23 @@ msgstr "З"
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "в контекст"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Повторено от"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Отговаряне на тази бележка"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Отговор"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Бележката е повторена."
|
||||
|
||||
|
@ -5801,6 +5859,10 @@ msgstr "Повтаряне на тази бележка"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Повтаряне на тази бележка"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -5974,47 +6036,47 @@ msgstr "Съобщение"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "преди няколко секунди"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "преди около минута"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "преди около %d минути"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "преди около час"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "преди около %d часа"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "преди около ден"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "преди около %d дни"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "преди около месец"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "преди около %d месеца"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "преди около година"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:24+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:13+0000\n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ca\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -98,7 +98,7 @@ msgstr "No existeix la pàgina."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -157,7 +157,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -395,8 +395,8 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. "
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Sobrenom no vàlid."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -408,8 +408,8 @@ msgstr "La pàgina personal no és un URL vàlid."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "El teu nom és massa llarg (màx. 255 caràcters)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "La descripció és massa llarga (màx. %d caràcters)."
|
||||
|
@ -486,18 +486,23 @@ msgstr "%s grups"
|
|||
msgid "groups on %s"
|
||||
msgstr "grups sobre %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Mida invàlida."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -510,77 +515,85 @@ msgstr ""
|
|||
"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si "
|
||||
"us plau."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Nom d'usuari o contrasenya invàlids."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Error en configurar l'usuari."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Hashtag de l'error de la base de dades:%s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Enviament de formulari inesperat."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Sobrenom"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
#, fuzzy
|
||||
msgid "Deny"
|
||||
msgstr "Disseny"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "Tot"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -752,8 +765,8 @@ msgstr "Original"
|
|||
msgid "Preview"
|
||||
msgstr "Vista prèvia"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Suprimeix"
|
||||
|
||||
|
@ -802,8 +815,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
|
@ -811,9 +825,9 @@ msgstr "No"
|
|||
msgid "Do not block this user"
|
||||
msgstr "No bloquis l'usuari"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Sí"
|
||||
|
||||
|
@ -919,6 +933,50 @@ msgstr "Conversa"
|
|||
msgid "Notices"
|
||||
msgstr "Avisos"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Heu d'iniciar una sessió per editar un grup."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Avís sense perfil"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "No sou un membre del grup."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Ha ocorregut algun problema amb la teva sessió."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "No existeix aquest avís."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "No es pot esborrar la notificació."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Eliminar aquesta nota"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -955,7 +1013,7 @@ msgstr "N'estàs segur que vols eliminar aquesta notificació?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "No es pot esborrar la notificació."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Eliminar aquesta nota"
|
||||
|
||||
|
@ -1096,7 +1154,7 @@ msgstr "Aquesta notificació no és un favorit!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Afegeix als preferits"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "No existeix aquest document."
|
||||
|
@ -1111,22 +1169,12 @@ msgstr "Altres opcions"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Heu d'iniciar una sessió per editar un grup."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "No sou un membre del grup."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "No existeix aquest avís."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Ha ocorregut algun problema amb la teva sessió."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1137,47 +1185,52 @@ msgstr "Utilitza aquest formulari per editar el grup."
|
|||
msgid "Name is required."
|
||||
msgstr "Igual a la contrasenya de dalt. Requerit."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "El teu nom és massa llarg (màx. 255 caràcters)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Aquest sobrenom ja existeix. Prova un altre. "
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Descripció"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "La pàgina personal no és un URL vàlid."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "La ubicació és massa llarga (màx. 255 caràcters)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "No s'ha pogut actualitzar el grup."
|
||||
|
@ -2114,11 +2167,11 @@ msgstr "Has d'haver entrat per crear un grup."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Utilitza aquest formulari per crear un nou grup."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "No s'han pogut crear els àlies."
|
||||
|
@ -2251,29 +2304,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "No ets membre d'aquest grup."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2786,19 +2839,19 @@ msgstr "Línia temporal pública, pàgina %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Línia temporal pública"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Flux de canal públic (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Flux de canal públic (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Flux de canal públic (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
|
@ -2807,11 +2860,11 @@ msgstr ""
|
|||
"Aquesta és la línia temporal pública de %%site.name%%, però ningú no hi ha "
|
||||
"enviat res encara."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Sigueu el primer en escriure-hi!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
|
@ -2819,7 +2872,7 @@ msgstr ""
|
|||
"Per què no [registreu un compte](%%action.register%%) i sou el primer en "
|
||||
"escriure-hi!"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2828,7 +2881,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3197,7 +3250,7 @@ msgstr "No pots registrar-te si no estàs d'acord amb la llicència."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Ja heu blocat l'usuari."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Repetit"
|
||||
|
||||
|
@ -3259,6 +3312,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Respostes a %1$s el %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "S'ha suprimit l'estat."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3305,79 +3363,84 @@ msgstr "Desa els paràmetres del lloc"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Has d'haver entrat per a poder marxar d'un grup."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Avís sense perfil"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Paginació"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Descripció"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Estadístiques"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
#, fuzzy
|
||||
msgid "Authorize URL"
|
||||
msgstr "Autoria"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "N'estàs segur que vols eliminar aquesta notificació?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3580,27 +3643,27 @@ msgstr "Feed d'avisos de %s"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "Safata de sortida per %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, fuzzy, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
"Aquesta és la línia temporal de %s i amics, però ningú hi ha enviat res "
|
||||
"encara."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3609,7 +3672,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3619,7 +3682,7 @@ msgstr ""
|
|||
"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://"
|
||||
"ca.wikipedia.org/wiki/Microblogging) "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Repetició de %s"
|
||||
|
@ -4298,11 +4361,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "S'ha suprimit l'estat."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr "Col·laboració"
|
||||
|
@ -4431,22 +4489,22 @@ msgstr "Ha estat bandejat de publicar notificacions en aquest lloc."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Problema en guardar l'avís."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Problema en guardar l'avís."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Error de BD en inserir resposta: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Us donem la benvinguda a %1$s, @%2$s!"
|
||||
|
@ -4729,11 +4787,11 @@ msgstr "Configuració dels camins"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Configuració del disseny"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5102,19 +5160,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "No s'ha trobat cap fitxer de configuració. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr "Podeu voler executar l'instal·lador per a corregir-ho."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Vés a l'instal·lador."
|
||||
|
||||
|
@ -5687,23 +5745,23 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "en context"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Repetit per"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "respondre a aquesta nota"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Respon"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Notificació publicada"
|
||||
|
@ -5849,6 +5907,10 @@ msgstr "Repeteix l'avís"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Repeteix l'avís"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6019,47 +6081,47 @@ msgstr "Missatge"
|
|||
msgid "Moderate"
|
||||
msgstr "Modera"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "fa pocs segons"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "fa un minut"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "fa %d minuts"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "fa una hora"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "fa %d hores"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "fa un dia"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "fa %d dies"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "fa un mes"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "fa %d mesos"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "fa un any"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:27+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:16+0000\n"
|
||||
"Language-Team: Czech\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: cs\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -100,7 +100,7 @@ msgstr "Žádné takové oznámení."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -157,7 +157,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -390,8 +390,8 @@ msgstr "Přezdívku již někdo používá. Zkuste jinou"
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Není platnou přezdívkou."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -403,8 +403,8 @@ msgstr "Stránka není platnou URL."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
|
||||
|
@ -484,18 +484,23 @@ msgstr ""
|
|||
msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Neplatná velikost"
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -506,77 +511,85 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Neplatné jméno nebo heslo"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Chyba nastavení uživatele"
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Chyba v DB při vkládání odpovědi: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Nečekaná forma submission."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "O nás"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Přezdívka"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
#, fuzzy
|
||||
msgid "Deny"
|
||||
msgstr "Vzhled"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -752,8 +765,8 @@ msgstr ""
|
|||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Odstranit"
|
||||
|
||||
|
@ -802,8 +815,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
|
||||
|
@ -812,9 +826,9 @@ msgstr "Ne"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Žádný takový uživatel."
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Ano"
|
||||
|
||||
|
@ -923,6 +937,50 @@ msgstr "Umístění"
|
|||
msgid "Notices"
|
||||
msgstr "Sdělení"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Nelze aktualizovat uživatele"
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Sdělení nemá profil"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Neodeslal jste nám profil"
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Žádné takové oznámení."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Žádné takové oznámení."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Odstranit toto oznámení"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -956,7 +1014,7 @@ msgstr ""
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Žádné takové oznámení."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Odstranit toto oznámení"
|
||||
|
||||
|
@ -1104,7 +1162,7 @@ msgstr ""
|
|||
msgid "Add to favorites"
|
||||
msgstr "Přidat do oblíbených"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Žádný takový dokument."
|
||||
|
@ -1118,22 +1176,12 @@ msgstr "Sdělení nemá profil"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Neodeslal jste nám profil"
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Žádné takové oznámení."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr ""
|
||||
|
@ -1142,47 +1190,52 @@ msgstr ""
|
|||
msgid "Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)"
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Přezdívku již někdo používá. Zkuste jinou"
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Odběry"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Stránka není platnou URL."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Umístění příliš dlouhé (maximálně 255 znaků)"
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Nelze aktualizovat uživatele"
|
||||
|
@ -2087,11 +2140,11 @@ msgstr ""
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Nelze uložin informace o obrázku"
|
||||
|
@ -2220,29 +2273,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Neodeslal jste nám profil"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2761,39 +2814,39 @@ msgstr "Veřejné zprávy"
|
|||
msgid "Public timeline"
|
||||
msgstr "Veřejné zprávy"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Veřejný Stream Feed"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Veřejný Stream Feed"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Veřejný Stream Feed"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2802,7 +2855,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3147,7 +3200,7 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Již jste přihlášen"
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Vytvořit"
|
||||
|
@ -3209,6 +3262,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Odpovědi na %s"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Obrázek nahrán"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3254,80 +3312,84 @@ msgstr "Nastavení"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Sdělení nemá profil"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Přezdívka"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Umístění"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
#, fuzzy
|
||||
msgid "Description"
|
||||
msgstr "Odběry"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiky"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3531,25 +3593,25 @@ msgstr "Feed sdělení pro %s"
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3558,7 +3620,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3566,7 +3628,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Odpovědi na %s"
|
||||
|
@ -4246,11 +4308,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Obrázek nahrán"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4374,22 +4431,22 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Problém při ukládání sdělení"
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Problém při ukládání sdělení"
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Chyba v DB při vkládání odpovědi: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
@ -4682,11 +4739,11 @@ msgstr "Potvrzení emailové adresy"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Potvrzení emailové adresy"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5062,20 +5119,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Žádný potvrzující kód."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5650,26 +5707,26 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Žádný obsah!"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Vytvořit"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
#, fuzzy
|
||||
msgid "Reply"
|
||||
msgstr "odpověď"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Sdělení"
|
||||
|
@ -5816,6 +5873,10 @@ msgstr "Odstranit toto oznámení"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Odstranit toto oznámení"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5992,47 +6053,47 @@ msgstr "Zpráva"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "před pár sekundami"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "asi před minutou"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "asi před %d minutami"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "asi před hodinou"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "asi před %d hodinami"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "asi přede dnem"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "před %d dny"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "asi před měsícem"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "asi před %d mesíci"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "asi před rokem"
|
||||
|
||||
|
|
|
@ -12,12 +12,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:30+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:19+0000\n"
|
||||
"Language-Team: German\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: de\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -29,9 +29,8 @@ msgid "Access"
|
|||
msgstr "Akzeptieren"
|
||||
|
||||
#: actions/accessadminpanel.php:65
|
||||
#, fuzzy
|
||||
msgid "Site access settings"
|
||||
msgstr "Site-Einstellungen speichern"
|
||||
msgstr "Zugangseinstellungen speichern"
|
||||
|
||||
#: actions/accessadminpanel.php:158
|
||||
#, fuzzy
|
||||
|
@ -103,7 +102,7 @@ msgstr "Seite nicht vorhanden"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -167,7 +166,7 @@ msgstr ""
|
|||
"posten](%%%%action.newnotice%%%%?status_textarea=%s) um seine Aufmerksamkeit "
|
||||
"zu erregen."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -397,8 +396,8 @@ msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Ungültiger Nutzername."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -411,8 +410,8 @@ msgstr ""
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)."
|
||||
|
@ -489,18 +488,23 @@ msgstr "%s Gruppen"
|
|||
msgid "groups on %s"
|
||||
msgstr "Gruppen von %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Ungültige Größe."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -511,76 +515,83 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#, fuzzy
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Benutzername oder Passwort falsch."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Fehler bei den Nutzereinstellungen."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Datenbankfehler beim Einfügen des Hashtags: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Unerwartete Formulareingabe."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Nutzername"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "Alle"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -753,8 +764,8 @@ msgstr "Original"
|
|||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
|
@ -802,8 +813,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
|
||||
|
@ -811,9 +823,9 @@ msgstr "Nein"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Diesen Benutzer freigeben"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
|
@ -918,6 +930,50 @@ msgstr "Unterhaltung"
|
|||
msgid "Notices"
|
||||
msgstr "Nachrichten"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Nachricht hat kein Profil"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Du bist kein Mitglied dieser Gruppe."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Es gab ein Problem mit deinem Sessiontoken."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Unbekannte Nachricht."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Diese Nachricht nicht löschen"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Nachricht löschen"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -952,7 +1008,7 @@ msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Diese Nachricht nicht löschen"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Nachricht löschen"
|
||||
|
||||
|
@ -1094,7 +1150,7 @@ msgstr "Diese Nachricht ist kein Favorit!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Zu Favoriten hinzufügen"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Unbekanntes Dokument."
|
||||
|
@ -1109,22 +1165,12 @@ msgstr "Sonstige Optionen"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Du bist kein Mitglied dieser Gruppe."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Unbekannte Nachricht."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Es gab ein Problem mit deinem Sessiontoken."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1135,48 +1181,53 @@ msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten."
|
|||
msgid "Name is required."
|
||||
msgstr "Gleiches Passwort wie zuvor. Pflichteingabe."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr ""
|
||||
"Homepage ist keine gültige URL. URL’s müssen ein Präfix wie http enthalten."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Konnte Gruppe nicht aktualisieren."
|
||||
|
@ -2112,11 +2163,11 @@ msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Konnte keinen Favoriten erstellen."
|
||||
|
@ -2250,29 +2301,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Du bist kein Mitglied dieser Gruppe."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2787,36 +2838,36 @@ msgstr "Öffentliche Zeitleiste, Seite %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Öffentliche Zeitleiste"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Feed des öffentlichen Streams (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Feed des öffentlichen Streams (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Feed des öffentlichen Streams (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2825,7 +2876,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3193,7 +3244,7 @@ msgstr ""
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Du hast diesen Benutzer bereits blockiert."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Erstellt"
|
||||
|
@ -3260,6 +3311,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Antworten an %1$s auf %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Status gelöscht."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3306,80 +3362,85 @@ msgstr "Site-Einstellungen speichern"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Nachricht hat kein Profil"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Nutzername"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Seitenerstellung"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiken"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
#, fuzzy
|
||||
msgid "Authorize URL"
|
||||
msgstr "Autor"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3583,20 +3644,20 @@ msgstr "Feed der Nachrichten von %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF von %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, fuzzy, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
"Dies ist die Zeitleiste für %s und Freunde aber bisher hat niemand etwas "
|
||||
"gepostet."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3606,7 +3667,7 @@ msgstr ""
|
|||
"posten](%%%%action.newnotice%%%%?status_textarea=%s) um seine Aufmerksamkeit "
|
||||
"zu erregen."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3615,7 +3676,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3626,7 +3687,7 @@ msgstr ""
|
|||
"(http://de.wikipedia.org/wiki/Mikro-blogging) basierend auf der Freien "
|
||||
"Software [StatusNet](http://status.net/). "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Antworten an %s"
|
||||
|
@ -4317,11 +4378,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Status gelöscht."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4451,22 +4507,22 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Problem bei Speichern der Nachricht."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Problem bei Speichern der Nachricht."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Datenbankfehler beim Einfügen der Antwort: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Herzlich willkommen bei %1$s, @%2$s!"
|
||||
|
@ -4753,11 +4809,11 @@ msgstr "SMS-Konfiguration"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "SMS-Konfiguration"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5122,19 +5178,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Keine Konfigurationsdatei gefunden."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr "Ich habe an folgenden Stellen nach Konfigurationsdateien gesucht: "
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Auf der Seite anmelden"
|
||||
|
@ -5768,24 +5824,24 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "im Zusammenhang"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Erstellt"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Auf diese Nachricht antworten"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Antworten"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Nachricht gelöscht."
|
||||
|
@ -5933,6 +5989,10 @@ msgstr "Auf diese Nachricht antworten"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Auf diese Nachricht antworten"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6107,47 +6167,47 @@ msgstr "Nachricht"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "vor wenigen Sekunden"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "vor einer Minute"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "vor %d Minuten"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "vor einer Stunde"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "vor %d Stunden"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "vor einem Tag"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "vor %d Tagen"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "vor einem Monat"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "vor %d Monaten"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "vor einem Jahr"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:33+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:22+0000\n"
|
||||
"Language-Team: Greek\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: el\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -96,7 +96,7 @@ msgstr "Δεν υπάρχει τέτοια σελίδα"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -153,7 +153,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -384,8 +384,8 @@ msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμά
|
|||
msgid "Not a valid nickname."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -397,8 +397,8 @@ msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)."
|
||||
|
@ -475,18 +475,23 @@ msgstr ""
|
|||
msgid "groups on %s"
|
||||
msgstr "ομάδες του χρήστη %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Μήνυμα"
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -497,74 +502,82 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Λογαριασμός"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Ψευδώνυμο"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -735,8 +748,8 @@ msgstr ""
|
|||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
|
@ -785,8 +798,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Όχι"
|
||||
|
||||
|
@ -795,9 +809,9 @@ msgstr "Όχι"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Ναι"
|
||||
|
||||
|
@ -903,6 +917,50 @@ msgstr "Συζήτηση"
|
|||
msgid "Notices"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Αδύνατη η αποθήκευση του προφίλ."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Ομάδες με τα περισσότερα μέλη"
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Δεν υπάρχει τέτοιο σελίδα."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Περιγράψτε την ομάδα ή το θέμα"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -937,7 +995,7 @@ msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυ
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1081,7 +1139,7 @@ msgstr ""
|
|||
msgid "Add to favorites"
|
||||
msgstr ""
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr ""
|
||||
|
@ -1095,22 +1153,12 @@ msgstr "Δεν υπάρχει τέτοιο σελίδα."
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Ομάδες με τα περισσότερα μέλη"
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Δεν υπάρχει τέτοιο σελίδα."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr ""
|
||||
|
@ -1119,47 +1167,52 @@ msgstr ""
|
|||
msgid "Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Περιγραφή"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Αδύνατη η αποθήκευση του προφίλ."
|
||||
|
@ -2048,11 +2101,11 @@ msgstr ""
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Αδύνατη η αποθήκευση του προφίλ."
|
||||
|
@ -2178,29 +2231,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Δεν είστε μέλος καμίας ομάδας."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2713,37 +2766,37 @@ msgstr ""
|
|||
msgid "Public timeline"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Δημόσια ροή %s"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2752,7 +2805,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3107,7 +3160,7 @@ msgstr ""
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Δημιουργία"
|
||||
|
@ -3169,6 +3222,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Η κατάσταση διαγράφεται."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr ""
|
||||
|
@ -3212,78 +3270,83 @@ msgstr "Ρυθμίσεις OpenID"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Ψευδώνυμο"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Προσκλήσεις"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Περιγραφή"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3485,25 +3548,25 @@ msgstr ""
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3512,7 +3575,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3520,7 +3583,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr ""
|
||||
|
@ -4176,11 +4239,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Η κατάσταση διαγράφεται."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4302,21 +4360,21 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
@ -4596,11 +4654,11 @@ msgstr "Επιβεβαίωση διεύθυνσης email"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Επιβεβαίωση διεύθυνσης email"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -4964,20 +5022,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5536,23 +5594,23 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Επαναλαμβάνεται από"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Ρυθμίσεις OpenID"
|
||||
|
@ -5697,6 +5755,10 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5868,47 +5930,47 @@ msgstr "Μήνυμα"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr ""
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -12,58 +12,52 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:39+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:29+0000\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: es\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326
|
||||
#, fuzzy
|
||||
msgid "Access"
|
||||
msgstr "Aceptar"
|
||||
msgstr "Acceder"
|
||||
|
||||
#: actions/accessadminpanel.php:65
|
||||
#, fuzzy
|
||||
msgid "Site access settings"
|
||||
msgstr "Configuración de Avatar"
|
||||
msgstr "Configuración de acceso de la web"
|
||||
|
||||
#: actions/accessadminpanel.php:158
|
||||
#, fuzzy
|
||||
msgid "Registration"
|
||||
msgstr "Registrarse"
|
||||
msgstr "Registro"
|
||||
|
||||
#: actions/accessadminpanel.php:161
|
||||
#, fuzzy
|
||||
msgid "Private"
|
||||
msgstr "Privacidad"
|
||||
msgstr "Privado"
|
||||
|
||||
#: actions/accessadminpanel.php:163
|
||||
msgid "Prohibit anonymous users (not logged in) from viewing site?"
|
||||
msgstr ""
|
||||
msgstr "¿Prohibir a los usuarios anónimos (no conectados) ver el sitio ?"
|
||||
|
||||
#: actions/accessadminpanel.php:167
|
||||
#, fuzzy
|
||||
msgid "Invite only"
|
||||
msgstr "Invitar"
|
||||
msgstr "Invitar sólo"
|
||||
|
||||
#: actions/accessadminpanel.php:169
|
||||
msgid "Make registration invitation only."
|
||||
msgstr ""
|
||||
msgstr "Haz que el registro sea sólo con invitaciones."
|
||||
|
||||
#: actions/accessadminpanel.php:173
|
||||
#, fuzzy
|
||||
msgid "Closed"
|
||||
msgstr "Bloqueado"
|
||||
msgstr "Cerrado"
|
||||
|
||||
#: actions/accessadminpanel.php:175
|
||||
msgid "Disable new registrations."
|
||||
msgstr ""
|
||||
msgstr "Inhabilitar nuevos registros."
|
||||
|
||||
#: actions/accessadminpanel.php:189 actions/designadminpanel.php:586
|
||||
#: actions/emailsettings.php:195 actions/imsettings.php:163
|
||||
|
@ -78,9 +72,8 @@ msgid "Save"
|
|||
msgstr "Guardar"
|
||||
|
||||
#: actions/accessadminpanel.php:189
|
||||
#, fuzzy
|
||||
msgid "Save access settings"
|
||||
msgstr "Configuración de Avatar"
|
||||
msgstr "Guardar la configuración de acceso"
|
||||
|
||||
#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
|
||||
#: actions/showfavorites.php:137 actions/tag.php:51
|
||||
|
@ -103,7 +96,7 @@ msgstr "No existe tal página"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -114,9 +107,9 @@ msgid "No such user."
|
|||
msgstr "No existe ese usuario."
|
||||
|
||||
#: actions/all.php:84
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%1$s and friends, page %2$d"
|
||||
msgstr "%s y amigos, página %d"
|
||||
msgstr "%1$s y amigos, página %2$d"
|
||||
|
||||
#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115
|
||||
#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115
|
||||
|
@ -160,7 +153,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -309,9 +302,9 @@ msgid "No message text!"
|
|||
msgstr "¡Sin texto de mensaje!"
|
||||
|
||||
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "That's too long. Max message size is %d chars."
|
||||
msgstr "Demasiado largo. Máximo 140 caracteres. "
|
||||
msgstr "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres."
|
||||
|
||||
#: actions/apidirectmessagenew.php:146
|
||||
msgid "Recipient user not found."
|
||||
|
@ -391,8 +384,8 @@ msgstr "El apodo ya existe. Prueba otro."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Apodo no válido"
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -404,8 +397,8 @@ msgstr "La página de inicio no es un URL válido."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Tu nombre es demasiado largo (max. 255 carac.)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "La descripción es demasiado larga (máx. %d caracteres)."
|
||||
|
@ -442,9 +435,8 @@ msgstr ""
|
|||
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
|
||||
#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91
|
||||
#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91
|
||||
#, fuzzy
|
||||
msgid "Group not found!"
|
||||
msgstr "¡No se encontró el método de la API!"
|
||||
msgstr "¡No se ha encontrado el grupo!"
|
||||
|
||||
#: actions/apigroupjoin.php:110 actions/joingroup.php:90
|
||||
msgid "You are already a member of that group."
|
||||
|
@ -452,7 +444,7 @@ msgstr "Ya eres miembro de ese grupo"
|
|||
|
||||
#: actions/apigroupjoin.php:119 actions/joingroup.php:95 lib/command.php:221
|
||||
msgid "You have been blocked from that group by the admin."
|
||||
msgstr ""
|
||||
msgstr "Has sido bloqueado de ese grupo por el administrador."
|
||||
|
||||
#: actions/apigroupjoin.php:138 actions/joingroup.php:124
|
||||
#, fuzzy, php-format
|
||||
|
@ -483,18 +475,23 @@ msgstr "Grupos %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "Grupos en %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Tamaño inválido."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -506,78 +503,85 @@ msgid "There was a problem with your session token. Try again, please."
|
|||
msgstr ""
|
||||
"Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Usuario o contraseña inválidos."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Error al configurar el usuario."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Error de la BD al insertar la etiqueta clave: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Envío de formulario inesperado."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr "Permitir o denegar el acceso"
|
||||
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Cuenta"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Apodo"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
msgstr "Denegar"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#, fuzzy
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "Todo"
|
||||
msgstr "Permitir"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
msgstr "Permitir o denegar el acceso a la información de tu cuenta."
|
||||
|
||||
#: actions/apistatusesdestroy.php:107
|
||||
msgid "This method requires a POST or DELETE."
|
||||
|
@ -593,14 +597,12 @@ msgid "No such notice."
|
|||
msgstr "No existe ese aviso."
|
||||
|
||||
#: actions/apistatusesretweet.php:83
|
||||
#, fuzzy
|
||||
msgid "Cannot repeat your own notice."
|
||||
msgstr "No se puede activar notificación."
|
||||
msgstr "No puedes repetir tus propias notificaciones."
|
||||
|
||||
#: actions/apistatusesretweet.php:91
|
||||
#, fuzzy
|
||||
msgid "Already repeated that notice."
|
||||
msgstr "Borrar este aviso"
|
||||
msgstr "Esta notificación ya se ha repetido."
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
msgid "Status deleted."
|
||||
|
@ -748,8 +750,8 @@ msgstr "Original"
|
|||
msgid "Preview"
|
||||
msgstr "Vista previa"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Borrar"
|
||||
|
||||
|
@ -798,8 +800,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
|
@ -808,9 +811,9 @@ msgstr "No"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Desbloquear este usuario"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Sí"
|
||||
|
||||
|
@ -916,6 +919,50 @@ msgstr "Conversación"
|
|||
msgid "Notices"
|
||||
msgstr "Avisos"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Debes estar conectado para editar un grupo."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Aviso sin perfil"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "No eres miembro de este grupo."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Hubo problemas con tu clave de sesión."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "No existe ese aviso."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "No se puede eliminar este aviso."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Borrar este aviso"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -952,7 +999,7 @@ msgstr "¿Estás seguro de que quieres eliminar este aviso?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "No se puede eliminar este aviso."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Borrar este aviso"
|
||||
|
||||
|
@ -1099,7 +1146,7 @@ msgstr "¡Este aviso no es un favorito!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Agregar a favoritos"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "No existe ese documento."
|
||||
|
@ -1114,22 +1161,12 @@ msgstr "Otras opciones"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Debes estar conectado para editar un grupo."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "No eres miembro de este grupo."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "No existe ese aviso."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Hubo problemas con tu clave de sesión."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1140,47 +1177,52 @@ msgstr "Usa este formulario para editar el grupo."
|
|||
msgid "Name is required."
|
||||
msgstr "Igual a la contraseña de arriba. Requerida"
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Tu nombre es demasiado largo (max. 255 carac.)"
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "El apodo ya existe. Prueba otro."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Descripción"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "La página de inicio no es un URL válido."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "La ubicación es demasiado larga (máx. 255 caracteres)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "No se pudo actualizar el grupo."
|
||||
|
@ -2126,11 +2168,11 @@ msgstr "Debes estar conectado para crear un grupo"
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Usa este formulario para crear un grupo nuevo."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "No se pudo crear favorito."
|
||||
|
@ -2265,29 +2307,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "No eres miembro de ese grupo"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2814,39 +2856,39 @@ msgstr "Línea de tiempo pública, página %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Línea temporal pública"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Feed del flujo público"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Feed del flujo público"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Feed del flujo público"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2855,7 +2897,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3228,7 +3270,7 @@ msgstr "No puedes registrarte si no estás de acuerdo con la licencia."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Ya has bloqueado este usuario."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Crear"
|
||||
|
@ -3290,6 +3332,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Respuestas a %1$s en %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Status borrado."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3336,79 +3383,84 @@ msgstr "Configuración de Avatar"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Debes estar conectado para dejar un grupo."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Aviso sin perfil"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Apodo"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Paginación"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Estadísticas"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "¿Estás seguro de que quieres eliminar este aviso?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3615,25 +3667,25 @@ msgstr "Feed de avisos de %s"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "Bandeja de salida para %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3642,7 +3694,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3652,7 +3704,7 @@ msgstr ""
|
|||
"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]"
|
||||
"(http://en.wikipedia.org/wiki/Micro-blogging) "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Respuestas a %s"
|
||||
|
@ -4346,11 +4398,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Status borrado."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4480,22 +4527,22 @@ msgstr "Tienes prohibido publicar avisos en este sitio."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Hubo un problema al guardar el aviso."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Hubo un problema al guardar el aviso."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Error de BD al insertar respuesta: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Bienvenido a %1$s, @%2$s!"
|
||||
|
@ -4782,11 +4829,11 @@ msgstr "SMS confirmación"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "SMS confirmación"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5156,19 +5203,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Ningún archivo de configuración encontrado. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Ir al instalador."
|
||||
|
||||
|
@ -5746,24 +5793,24 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr "en"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "en contexto"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Crear"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Responder este aviso."
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Responder"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Aviso borrado"
|
||||
|
@ -5910,6 +5957,10 @@ msgstr "Responder este aviso."
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Responder este aviso."
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6084,47 +6135,47 @@ msgstr "Mensaje"
|
|||
msgid "Moderate"
|
||||
msgstr "Moderar"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "hace unos segundos"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "hace un minuto"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "hace %d minutos"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "hace una hora"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "hace %d horas"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "hace un día"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "hace %d días"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "hace un mes"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "hace %d meses"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "hace un año"
|
||||
|
||||
|
|
|
@ -10,8 +10,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:45+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:36+0000\n"
|
||||
"Last-Translator: Ahmad Sufi Mahmudi\n"
|
||||
"Language-Team: Persian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -20,7 +20,7 @@ msgstr ""
|
|||
"X-Language-Code: fa\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
|
||||
#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326
|
||||
|
@ -99,7 +99,7 @@ msgstr "چنین صفحهای وجود ندارد"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -160,7 +160,7 @@ msgstr ""
|
|||
"اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%"
|
||||
"s) پیام میفرستد."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -388,8 +388,8 @@ msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "لقب نا معتبر."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -401,8 +401,8 @@ msgstr "برگهٔ آغازین یک نشانی معتبر نیست."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "نام کامل طولانی است (۲۵۵ حرف در حالت بیشینه(."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)."
|
||||
|
@ -479,18 +479,23 @@ msgstr "%s گروه"
|
|||
msgid "groups on %s"
|
||||
msgstr "گروهها در %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "اندازهی نادرست"
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -501,75 +506,83 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "مشکلی در دریافت جلسهی شما وجود دارد. لطفا بعدا سعی کنید."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "نام کاربری یا کلمه ی عبور نا معتبر."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "ارسال غیر قابل انتظار فرم."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "حساب کاربری"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "نام کاربری"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "گذرواژه"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
#, fuzzy
|
||||
msgid "Deny"
|
||||
msgstr "طرح"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "همه"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -739,8 +752,8 @@ msgstr "اصلی"
|
|||
msgid "Preview"
|
||||
msgstr "پیشنمایش"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
|
@ -791,8 +804,9 @@ msgstr ""
|
|||
"دنبال کند. همچنین دیگر شما از پیامهایی که در آن از شما یاد میکند با خبر "
|
||||
"نخواهید شد"
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "خیر"
|
||||
|
||||
|
@ -800,9 +814,9 @@ msgstr "خیر"
|
|||
msgid "Do not block this user"
|
||||
msgstr "کاربر را مسدود نکن"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "بله"
|
||||
|
||||
|
@ -907,6 +921,53 @@ msgstr "مکالمه"
|
|||
msgid "Notices"
|
||||
msgstr "پیامها"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "برای ویرایش گروه باید وارد شوید."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "ابن خبر ذخیره ای ندارد ."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "شما یک عضو این گروه نیستید."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "چنین پیامی وجود ندارد."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"آیا مطمئن هستید که میخواهید این کاربر را پاک کنید؟ با این کار تمام اطلاعات "
|
||||
"پاک و بدون برگشت خواهند بود."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "این پیام را پاک نکن"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "این پیام را پاک کن"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -941,7 +1002,7 @@ msgstr "آیا اطمینان دارید که میخواهید این پیا
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "این پیام را پاک نکن"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "این پیام را پاک کن"
|
||||
|
||||
|
@ -1085,7 +1146,7 @@ msgstr "این آگهی یک آگهی برگزیده نیست!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "افزودن به علاقهمندیها"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "چنین سندی وجود ندارد."
|
||||
|
@ -1100,22 +1161,12 @@ msgstr "انتخابات دیگر"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "برای ویرایش گروه باید وارد شوید."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "شما یک عضو این گروه نیستید."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "چنین پیامی وجود ندارد."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1125,46 +1176,51 @@ msgstr "از این روش برای ویرایش گروه استفاده کنی
|
|||
msgid "Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "نام کامل طولانی است (۲۵۵ حرف در حالت بیشینه(."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "برگهٔ آغازین یک نشانی معتبر نیست."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "مکان طولانی است (حداکثر ۲۵۵ حرف)"
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "نمیتوان گروه را بههنگامسازی کرد."
|
||||
|
@ -2060,11 +2116,11 @@ msgstr "برای ساخت یک گروه، باید وارد شده باشید."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "از این فرم برای ساختن یک گروه جدید استفاده کنید"
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "نمیتوان نامهای مستعار را ساخت."
|
||||
|
@ -2200,29 +2256,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "شما یک کاربر این گروه نیستید."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2726,36 +2782,36 @@ msgstr "خط زمانی عمومی، صفحهی %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "خط زمانی عمومی"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "اولین کسی باشید که پیام میفرستد!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr "چرا [ثبت نام](%%action.register%%) نمیکنید و اولین پیام را نمیفرستید؟"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2764,7 +2820,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3101,7 +3157,7 @@ msgstr "شما نمی توانید آگهی خودتان را تکرار کنی
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "شما قبلا آن آگهی را تکرار کردید."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3163,6 +3219,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "وضعیت حذف شد."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr ""
|
||||
|
@ -3207,80 +3268,85 @@ msgstr ""
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "برای ترک یک گروه، شما باید وارد شده باشید."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "ابن خبر ذخیره ای ندارد ."
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "نام کاربری"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "صفحه بندى"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "آمار"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
#, fuzzy
|
||||
msgid "Authorize URL"
|
||||
msgstr "مؤلف"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "آیا اطمینان دارید که میخواهید این پیام را پاک کنید؟"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3480,12 +3546,12 @@ msgstr ""
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, fuzzy, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "این خطزمانی %s و دوستانش است، اما هیچیک تاکنون چیزی پست نکردهاند."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3493,7 +3559,7 @@ msgstr ""
|
|||
"اخیرا چیز جالب توجه ای دیده اید؟ شما تا کنون آگهی ارسال نکرده اید، الان می "
|
||||
"تواند زمان خوبی برای شروع باشد :)"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3502,7 +3568,7 @@ msgstr ""
|
|||
"اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%"
|
||||
"s) پیام میفرستد."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3511,7 +3577,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3519,7 +3585,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr ""
|
||||
|
@ -4166,11 +4232,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "وضعیت حذف شد."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4295,22 +4356,22 @@ msgstr "شما از فرستادن پست در این سایت مردود شدی
|
|||
msgid "Problem saving notice."
|
||||
msgstr "مشکل در ذخیره کردن آگهی."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "مشکل در ذخیره کردن آگهی."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "خوش امدید به %1$s , @%2$s!"
|
||||
|
@ -4583,11 +4644,11 @@ msgstr ""
|
|||
msgid "Sessions configuration"
|
||||
msgstr "پیکره بندی اصلی سایت"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -4951,19 +5012,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "برو به نصاب."
|
||||
|
||||
|
@ -5526,23 +5587,23 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr "در"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "در زمینه"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "تکرار از"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "به این آگهی جواب دهید"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "جواب دادن"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "آگهی تکرار شد"
|
||||
|
||||
|
@ -5684,6 +5745,10 @@ msgstr "به این آگهی جواب دهید"
|
|||
msgid "Repeat this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5849,47 +5914,47 @@ msgstr "پیام"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "چند ثانیه پیش"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "حدود یک دقیقه پیش"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "حدود %d دقیقه پیش"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "حدود یک ساعت پیش"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "حدود %d ساعت پیش"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "حدود یک روز پیش"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "حدود %d روز پیش"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "حدود یک ماه پیش"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "حدود %d ماه پیش"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "حدود یک سال پیش"
|
||||
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:42+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:32+0000\n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: fi\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -101,7 +101,7 @@ msgstr "Sivua ei ole."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -164,7 +164,7 @@ msgstr ""
|
|||
"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta] (%%%%action."
|
||||
"newnotice%%%%?status_textarea=%s)!"
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -400,8 +400,8 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Tuo ei ole kelvollinen tunnus."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -413,8 +413,8 @@ msgstr "Kotisivun verkko-osoite ei ole toimiva."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Koko nimi on liian pitkä (max 255 merkkiä)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "kuvaus on liian pitkä (max 140 merkkiä)."
|
||||
|
@ -491,18 +491,23 @@ msgstr "Käyttäjän %s ryhmät"
|
|||
msgid "groups on %s"
|
||||
msgstr "Ryhmän toiminnot"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Koko ei kelpaa."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -515,77 +520,85 @@ msgstr ""
|
|||
"Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit "
|
||||
"uudelleen."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Käyttäjätunnus tai salasana ei kelpaa."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Virhe tapahtui käyttäjän asettamisessa."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Tietokantavirhe tallennettaessa risutagiä: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Odottamaton lomakkeen lähetys."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Käyttäjätili"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Salasana"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
#, fuzzy
|
||||
msgid "Deny"
|
||||
msgstr "Ulkoasu"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "Kaikki"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -757,8 +770,8 @@ msgstr "Alkuperäinen"
|
|||
msgid "Preview"
|
||||
msgstr "Esikatselu"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Poista"
|
||||
|
||||
|
@ -806,8 +819,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Ei"
|
||||
|
||||
|
@ -815,9 +829,9 @@ msgstr "Ei"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Älä estä tätä käyttäjää"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Kyllä"
|
||||
|
||||
|
@ -923,6 +937,51 @@ msgstr "Keskustelu"
|
|||
msgid "Notices"
|
||||
msgstr "Päivitykset"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr ""
|
||||
"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Päivitykselle ei ole profiilia"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Sinä et kuulu tähän ryhmään."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Istuntoavaimesi kanssa oli ongelma."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Päivitystä ei ole."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Älä poista tätä päivitystä"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Poista tämä päivitys"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -957,7 +1016,7 @@ msgstr "Oletko varma että haluat poistaa tämän päivityksen?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Älä poista tätä päivitystä"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Poista tämä päivitys"
|
||||
|
||||
|
@ -1106,7 +1165,7 @@ msgstr "Tämä päivitys ei ole suosikki!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Lisää suosikkeihin"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Dokumenttia ei ole."
|
||||
|
@ -1122,22 +1181,12 @@ msgid "You must be logged in to edit an application."
|
|||
msgstr ""
|
||||
"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Sinä et kuulu tähän ryhmään."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Päivitystä ei ole."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Istuntoavaimesi kanssa oli ongelma."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1148,47 +1197,52 @@ msgstr "Käytä tätä lomaketta muokataksesi ryhmää."
|
|||
msgid "Name is required."
|
||||
msgstr "Sama kuin ylläoleva salasana. Pakollinen."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Koko nimi on liian pitkä (max 255 merkkiä)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Tunnus on jo käytössä. Yritä toista tunnusta."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Kuvaus"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Kotisivun verkko-osoite ei ole toimiva."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Ei voitu päivittää ryhmää."
|
||||
|
@ -2126,11 +2180,11 @@ msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Käytä tätä lomaketta luodaksesi ryhmän."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Ei voitu lisätä aliasta."
|
||||
|
@ -2265,29 +2319,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Sinä et kuulu tähän ryhmään."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2812,36 +2866,36 @@ msgstr "Julkinen aikajana, sivu %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Julkinen aikajana"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Julkinen syöte (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Julkisen Aikajanan Syöte (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Julkinen syöte (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Ole ensimmäinen joka lähettää päivityksen!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2850,7 +2904,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3223,7 +3277,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Sinä olet jo estänyt tämän käyttäjän."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Luotu"
|
||||
|
@ -3289,6 +3343,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Viesti käyttäjälle %1$s, %2$s"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Päivitys poistettu."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3336,79 +3395,84 @@ msgstr "Profiilikuva-asetukset"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Päivitykselle ei ole profiilia"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Sivutus"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Kuvaus"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Tilastot"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Oletko varma että haluat poistaa tämän päivityksen?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3610,20 +3674,20 @@ msgstr "Päivityksien syöte käyttäjälle %s"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "Käyttäjän %s lähetetyt viestit"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, fuzzy, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
"Tämä on käyttäjän %s aikajana, mutta %s ei ole lähettänyt vielä yhtään "
|
||||
"päivitystä."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3632,7 +3696,7 @@ msgstr ""
|
|||
"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta] (%%%%action."
|
||||
"newnotice%%%%?status_textarea=%s)!"
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3641,7 +3705,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3651,7 +3715,7 @@ msgstr ""
|
|||
"Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on "
|
||||
"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)"
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Vastaukset käyttäjälle %s"
|
||||
|
@ -4338,11 +4402,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Päivitys poistettu."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4470,22 +4529,22 @@ msgstr "Päivityksesi tähän palveluun on estetty."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Ongelma päivityksen tallentamisessa."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Ongelma päivityksen tallentamisessa."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Tietokantavirhe tallennettaessa vastausta: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Viesti käyttäjälle %1$s, %2$s"
|
||||
|
@ -4775,11 +4834,11 @@ msgstr "SMS vahvistus"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "SMS vahvistus"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5151,20 +5210,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Varmistuskoodia ei ole annettu."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Kirjaudu sisään palveluun"
|
||||
|
@ -5749,25 +5808,25 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Ei sisältöä!"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Luotu"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Vastaa tähän päivitykseen"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Vastaus"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Päivitys on poistettu."
|
||||
|
@ -5916,6 +5975,10 @@ msgstr "Vastaa tähän päivitykseen"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Vastaa tähän päivitykseen"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6093,47 +6156,47 @@ msgstr "Viesti"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "muutama sekunti sitten"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "noin minuutti sitten"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "noin %d minuuttia sitten"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "noin tunti sitten"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "noin %d tuntia sitten"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "noin päivä sitten"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "noin %d päivää sitten"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "noin kuukausi sitten"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "noin %d kuukautta sitten"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "noin vuosi sitten"
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -8,12 +8,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:51+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:41+0000\n"
|
||||
"Language-Team: Irish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ga\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -101,7 +101,7 @@ msgstr "Non existe a etiqueta."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -158,7 +158,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -397,8 +397,8 @@ msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Non é un alcume válido."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -410,8 +410,8 @@ msgstr "A páxina persoal semella que non é unha URL válida."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "O nome completo é demasiado longo (max 255 car)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "O teu Bio é demasiado longo (max 140 car.)."
|
||||
|
@ -489,18 +489,23 @@ msgstr ""
|
|||
msgid "groups on %s"
|
||||
msgstr "Outras opcions"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Tamaño inválido."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -511,77 +516,85 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Usuario ou contrasinal inválidos."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Acounteceu un erro configurando o usuario."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Erro ó inserir o hashtag na BD: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Envio de formulario non esperada."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Alcume"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Contrasinal"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "Todos"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -757,8 +770,8 @@ msgstr ""
|
|||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
#, fuzzy
|
||||
msgid "Delete"
|
||||
msgstr "eliminar"
|
||||
|
@ -811,8 +824,9 @@ msgstr ""
|
|||
"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a "
|
||||
"ser notificado de ningunha resposta-@ del."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
|
@ -821,9 +835,9 @@ msgstr "No"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Bloquear usuario"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Si"
|
||||
|
||||
|
@ -934,6 +948,51 @@ msgstr "Código de confirmación."
|
|||
msgid "Notices"
|
||||
msgstr "Chíos"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s"
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "O chío non ten perfil"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Non estás suscrito a ese perfil"
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Ningún chío."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Non se pode eliminar este chíos."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Eliminar chío"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -970,7 +1029,7 @@ msgstr "Estas seguro que queres eliminar este chío?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Non se pode eliminar este chíos."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
#, fuzzy
|
||||
msgid "Delete this notice"
|
||||
msgstr "Eliminar chío"
|
||||
|
@ -1124,7 +1183,7 @@ msgstr "Este chío non é un favorito!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Engadir a favoritos"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Ningún documento."
|
||||
|
@ -1139,23 +1198,12 @@ msgstr "Outras opcions"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s"
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Non estás suscrito a ese perfil"
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Ningún chío."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1168,47 +1216,52 @@ msgstr ""
|
|||
msgid "Name is required."
|
||||
msgstr "A mesma contrasinal que arriba. Requerido."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "O nome completo é demasiado longo (max 255 car)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Subscricións"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "A páxina persoal semella que non é unha URL válida."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "A localización é demasiado longa (max 255 car.)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Non se puido actualizar o usuario."
|
||||
|
@ -2158,11 +2211,11 @@ msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s"
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Non se puido crear o favorito."
|
||||
|
@ -2297,29 +2350,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Non estás suscrito a ese perfil"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2845,39 +2898,39 @@ msgstr "Liña de tempo pública"
|
|||
msgid "Public timeline"
|
||||
msgstr "Liña de tempo pública"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Sindicación do Fio Público"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Sindicación do Fio Público"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Sindicación do Fio Público"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2890,7 +2943,7 @@ msgstr ""
|
|||
"(http://status.net/). [Únete agora](%%action.register%%) para compartir "
|
||||
"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3264,7 +3317,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Xa bloqueaches a este usuario."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Crear"
|
||||
|
@ -3326,6 +3379,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Mensaxe de %1$s en %2$s"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Avatar actualizado."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3372,80 +3430,85 @@ msgstr "Configuracións de Twitter"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s"
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "O chío non ten perfil"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Alcume"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Invitación(s) enviada(s)."
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
#, fuzzy
|
||||
msgid "Description"
|
||||
msgstr "Subscricións"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Estas seguro que queres eliminar este chío?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3660,25 +3723,25 @@ msgstr "Fonte de chíos para %s"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "Band. Saída para %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3691,7 +3754,7 @@ msgstr ""
|
|||
"(http://status.net/). [Únete agora](%%action.register%%) para compartir "
|
||||
"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3703,7 +3766,7 @@ msgstr ""
|
|||
"(http://status.net/). [Únete agora](%%action.register%%) para compartir "
|
||||
"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))"
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Replies to %s"
|
||||
|
@ -4395,11 +4458,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Avatar actualizado."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4528,22 +4586,22 @@ msgstr "Tes restrinxido o envio de chíos neste sitio."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Aconteceu un erro ó gardar o chío."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Aconteceu un erro ó gardar o chío."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Erro ó inserir a contestación na BD: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Mensaxe de %1$s en %2$s"
|
||||
|
@ -4846,11 +4904,11 @@ msgstr "Confirmación de SMS"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Confirmación de SMS"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5262,20 +5320,20 @@ msgstr ""
|
|||
"tracks - non implementado por agora.\n"
|
||||
"tracking - non implementado por agora.\n"
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Sen código de confirmación."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5913,27 +5971,27 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Sen contido!"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Crear"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
#, fuzzy
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Non se pode eliminar este chíos."
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
#, fuzzy
|
||||
msgid "Reply"
|
||||
msgstr "contestar"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Chío publicado"
|
||||
|
@ -6088,6 +6146,10 @@ msgstr "Non se pode eliminar este chíos."
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Non se pode eliminar este chíos."
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6271,47 +6333,47 @@ msgstr "Nova mensaxe"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "fai uns segundos"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "fai un minuto"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "fai %d minutos"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "fai unha hora"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "fai %d horas"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "fai un día"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "fai %d días"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "fai un mes"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "fai %d meses"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "fai un ano"
|
||||
|
||||
|
|
|
@ -7,12 +7,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:54+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:45+0000\n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: he\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -98,7 +98,7 @@ msgstr "אין הודעה כזו."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -155,7 +155,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -388,8 +388,8 @@ msgstr "כינוי זה כבר תפוס. נסה כינוי אחר."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "שם משתמש לא חוקי."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -401,8 +401,8 @@ msgstr "לאתר הבית יש כתובת לא חוקית."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)"
|
||||
|
@ -482,18 +482,23 @@ msgstr ""
|
|||
msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "גודל לא חוקי."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -504,76 +509,84 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "שם המשתמש או הסיסמה לא חוקיים"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "שגיאה ביצירת שם המשתמש."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "הגשת טופס לא צפויה."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "אודות"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "כינוי"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "סיסמה"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -749,8 +762,8 @@ msgstr ""
|
|||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
#, fuzzy
|
||||
msgid "Delete"
|
||||
msgstr "מחק"
|
||||
|
@ -801,8 +814,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "לא"
|
||||
|
||||
|
@ -811,9 +825,9 @@ msgstr "לא"
|
|||
msgid "Do not block this user"
|
||||
msgstr "אין משתמש כזה."
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "כן"
|
||||
|
||||
|
@ -923,6 +937,50 @@ msgstr "מיקום"
|
|||
msgid "Notices"
|
||||
msgstr "הודעות"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "עידכון המשתמש נכשל."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "להודעה אין פרופיל"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "אין הודעה כזו."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "אין הודעה כזו."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -956,7 +1014,7 @@ msgstr ""
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "אין הודעה כזו."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1110,7 +1168,7 @@ msgstr ""
|
|||
msgid "Add to favorites"
|
||||
msgstr "מועדפים"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "אין מסמך כזה."
|
||||
|
@ -1124,22 +1182,12 @@ msgstr "להודעה אין פרופיל"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "אין הודעה כזו."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr ""
|
||||
|
@ -1148,47 +1196,52 @@ msgstr ""
|
|||
msgid "Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)"
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "כינוי זה כבר תפוס. נסה כינוי אחר."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "הרשמות"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "לאתר הבית יש כתובת לא חוקית."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "עידכון המשתמש נכשל."
|
||||
|
@ -2094,11 +2147,11 @@ msgstr ""
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "שמירת מידע התמונה נכשל"
|
||||
|
@ -2228,29 +2281,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2769,39 +2822,39 @@ msgstr "קו זמן ציבורי"
|
|||
msgid "Public timeline"
|
||||
msgstr "קו זמן ציבורי"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "הזנת זרם הציבורי"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "הזנת זרם הציבורי"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "הזנת זרם הציבורי"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2810,7 +2863,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3150,7 +3203,7 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון"
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "כבר נכנסת למערכת!"
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "צור"
|
||||
|
@ -3212,6 +3265,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "תגובת עבור %s"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "התמונה עודכנה."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3257,80 +3315,84 @@ msgstr "הגדרות"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "להודעה אין פרופיל"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "כינוי"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "מיקום"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
#, fuzzy
|
||||
msgid "Description"
|
||||
msgstr "הרשמות"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "סטטיסטיקה"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3535,25 +3597,25 @@ msgstr "הזנת הודעות של %s"
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3562,7 +3624,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3570,7 +3632,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "תגובת עבור %s"
|
||||
|
@ -4246,11 +4308,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "התמונה עודכנה."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4374,22 +4431,22 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr "בעיה בשמירת ההודעה."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "בעיה בשמירת ההודעה."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
@ -4682,11 +4739,11 @@ msgstr "הרשמות"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "הרשמות"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5060,20 +5117,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "אין קוד אישור."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5649,26 +5706,26 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "אין תוכן!"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "צור"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
#, fuzzy
|
||||
msgid "Reply"
|
||||
msgstr "הגב"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "הודעות"
|
||||
|
@ -5817,6 +5874,10 @@ msgstr "אין הודעה כזו."
|
|||
msgid "Repeat this notice"
|
||||
msgstr "אין הודעה כזו."
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5996,47 +6057,47 @@ msgstr "הודעה חדשה"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "לפני מספר שניות"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "לפני כדקה"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "לפני כ-%d דקות"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "לפני כשעה"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "לפני כ-%d שעות"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "לפני כיום"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "לפני כ-%d ימים"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "לפני כחודש"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "לפני כ-%d חודשים"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "לפני כשנה"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:41:57+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:48+0000\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: hsb\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -97,7 +97,7 @@ msgstr "Strona njeeksistuje"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -154,7 +154,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -376,8 +376,8 @@ msgstr "Přimjeno so hižo wužiwa. Spytaj druhe."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Žane płaćiwe přimjeno."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -389,8 +389,8 @@ msgstr "Startowa strona njeje płaćiwy URL."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Wopisanje je předołho (maks. %d znamješkow)."
|
||||
|
@ -467,18 +467,23 @@ msgstr ""
|
|||
msgid "groups on %s"
|
||||
msgstr "skupiny na %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Njepłaćiwa wulkosć."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -489,74 +494,82 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Njepłaćiwe přimjeno abo hesło!"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije."
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Přimjeno"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Hesło"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "Wotpokazać"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "Dowolić"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -726,8 +739,8 @@ msgstr "Original"
|
|||
msgid "Preview"
|
||||
msgstr "Přehlad"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Zničić"
|
||||
|
||||
|
@ -774,8 +787,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Ně"
|
||||
|
||||
|
@ -783,9 +797,9 @@ msgstr "Ně"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Tutoho wužiwarja njeblokować"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Haj"
|
||||
|
||||
|
@ -889,6 +903,49 @@ msgstr "Konwersacija"
|
|||
msgid "Notices"
|
||||
msgstr "Zdźělenki"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Dyrbiš přizjewjeny być, zo by skupinu wobdźěłał."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Aplikaciski profil"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Njejsy wobsedźer tuteje aplikacije."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Aplikacija njeeksistuje."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Tutu zdźělenku njewušmórnyć"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Tutu zdźělenku wušmórnyć"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -921,7 +978,7 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Tutu zdźělenku njewušmórnyć"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Tutu zdźělenku wušmórnyć"
|
||||
|
||||
|
@ -1062,7 +1119,7 @@ msgstr "Tuta zdźělenka faworit njeje!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "K faworitam přidać"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Dokument njeeksistuje."
|
||||
|
@ -1076,20 +1133,11 @@ msgstr "Aplikacije OAuth"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Dyrbiš přizjewjeny być, zo by skupinu wobdźěłał."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Njejsy wobsedźer tuteje aplikacije."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "Aplikacija njeeksistuje."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "Wužij tutón formular, zo by aplikaciju wobdźěłał."
|
||||
|
@ -1098,43 +1146,48 @@ msgstr "Wužij tutón formular, zo by aplikaciju wobdźěłał."
|
|||
msgid "Name is required."
|
||||
msgstr "Mjeno je trěbne."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Mjeno je předołho (maks. 255 znamješkow)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Přimjeno so hižo wužiwa. Spytaj druhe."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "Wopisanje je trěbne."
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "URL žórła płaćiwy njeje."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Mjeno organizacije je předołho (maks. 255 znamješkow)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr "Aplikacija njeda so aktualizować."
|
||||
|
||||
|
@ -1993,11 +2046,11 @@ msgstr "Dyrbiš přizjewjeny być, zo by aplikaciju registrował."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Wužij tutón formular, zo by nowu aplikaciju registrował."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr "Aplikacija njeda so wutworić."
|
||||
|
||||
|
@ -2122,28 +2175,28 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Njejsy wužiwar tuteje aplikacije."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2635,36 +2688,36 @@ msgstr ""
|
|||
msgid "Public timeline"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2673,7 +2726,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3003,7 +3056,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Sy tutu zdźělenku hižo wospjetował."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Wospjetowany"
|
||||
|
||||
|
@ -3063,6 +3116,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr ""
|
||||
|
@ -3106,76 +3163,81 @@ msgstr "Sydłowe nastajenja składować"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Dyrbiš přizjewjeny być, zo by sej aplikaciju wobhladał."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr "Aplikaciski profil"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Mjeno"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "Organizacija"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Wopisanje"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Statistika"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr "URL awtorizować"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3375,25 +3437,25 @@ msgstr ""
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF za %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3402,7 +3464,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3410,7 +3472,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr ""
|
||||
|
@ -4050,10 +4112,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4171,21 +4229,21 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
@ -4457,11 +4515,11 @@ msgstr ""
|
|||
msgid "Sessions configuration"
|
||||
msgstr "SMS-wobkrućenje"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -4823,19 +4881,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Žana konfiguraciska dataja namakana. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5386,23 +5444,23 @@ msgstr "Z"
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Wospjetowany wot"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Na tutu zdźělenku wotmołwić"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Wotmołwić"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Zdźělenka wospjetowana"
|
||||
|
||||
|
@ -5543,6 +5601,10 @@ msgstr "Tutu zdźělenku wospjetować?"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Tutu zdźělenku wospjetować"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5708,47 +5770,47 @@ msgstr "Powěsć"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "před něšto sekundami"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "před něhdźe jednej mjeńšinu"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "před %d mjeńšinami"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "před něhdźe jednej hodźinu"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "před něhdźe %d hodźinami"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "před něhdźe jednym dnjom"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "před něhdźe %d dnjemi"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "před něhdźe jednym měsacom"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "před něhdźe %d měsacami"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "před něhdźe jednym lětom"
|
||||
|
||||
|
|
|
@ -8,12 +8,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:01+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:51+0000\n"
|
||||
"Language-Team: Interlingua\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ia\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -95,7 +95,7 @@ msgstr "Pagina non existe"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -158,7 +158,7 @@ msgstr ""
|
|||
"Tu pote tentar [dar un pulsata a %s](../%s) in su profilo o [publicar un "
|
||||
"message a su attention](%%%%action.newnotice%%%%?status_textarea=%s)."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -389,8 +389,8 @@ msgstr "Pseudonymo ja in uso. Proba un altere."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Non un pseudonymo valide."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -402,8 +402,8 @@ msgstr "Le pagina personal non es un URL valide."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Le nomine complete es troppo longe (max. 255 characteres)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Description es troppo longe (max %d charachteres)."
|
||||
|
@ -480,18 +480,23 @@ msgstr "Gruppos de %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "gruppos in %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Dimension invalide."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -502,76 +507,84 @@ msgstr ""
|
|||
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."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Nomine de usator o contrasigno invalide."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Error durante le configuration del usator."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Error durante le configuration del usator."
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Submission de formulario inexpectate."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Pseudonymo"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Contrasigno"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
#, fuzzy
|
||||
msgid "Deny"
|
||||
msgstr "Apparentia"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -744,8 +757,8 @@ msgstr "Original"
|
|||
msgid "Preview"
|
||||
msgstr "Previsualisation"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Deler"
|
||||
|
||||
|
@ -795,8 +808,9 @@ msgstr ""
|
|||
"cancellate, ille non potera resubscriber se a te in le futuro, e tu non "
|
||||
"recipera notification de su @-responsas."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
|
@ -804,9 +818,9 @@ msgstr "No"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Non blocar iste usator"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Si"
|
||||
|
||||
|
@ -911,6 +925,53 @@ msgstr "Conversation"
|
|||
msgid "Notices"
|
||||
msgstr "Notas"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Tu debe aperir un session pro modificar un gruppo."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Le nota ha nulle profilo"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Tu non es membro de iste gruppo."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Nota non trovate."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"Es tu secur de voler deler iste usator? Isto radera tote le datos super le "
|
||||
"usator del base de datos, sin copia de reserva."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Non deler iste nota"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Deler iste nota"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -945,7 +1006,7 @@ msgstr "Es tu secur de voler deler iste nota?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Non deler iste nota"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Deler iste nota"
|
||||
|
||||
|
@ -1089,7 +1150,7 @@ msgstr "Iste nota non es favorite!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Adder al favorites"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Documento non existe."
|
||||
|
@ -1104,22 +1165,12 @@ msgstr "Le nota ha nulle profilo"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Tu debe aperir un session pro modificar un gruppo."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Tu non es membro de iste gruppo."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Nota non trovate."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1130,46 +1181,51 @@ msgstr "Usa iste formulario pro modificar le gruppo."
|
|||
msgid "Name is required."
|
||||
msgstr "Identic al contrasigno hic supra. Requisite."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Le nomine complete es troppo longe (max. 255 characteres)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Pseudonymo ja in uso. Proba un altere."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Le pagina personal non es un URL valide."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Loco es troppo longe (max. 255 characteres)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Non poteva actualisar gruppo."
|
||||
|
@ -2113,11 +2169,11 @@ msgstr "Tu debe aperir un session pro crear un gruppo."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Usa iste formulario pro crear un nove gruppo."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Non poteva crear aliases."
|
||||
|
@ -2255,29 +2311,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Tu non es membro de iste gruppo."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2784,19 +2840,19 @@ msgstr "Chronologia public, pagina %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Chronologia public"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Syndication del fluxo public (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Syndication del fluxo public (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Syndication del fluxo public (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
|
@ -2805,11 +2861,11 @@ msgstr ""
|
|||
"Isto es le chronologia public pro %%site.name%%, ma nulle persona ha ancora "
|
||||
"scribite alique."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Sia le prime a publicar!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
|
@ -2817,7 +2873,7 @@ msgstr ""
|
|||
"Proque non [registrar un conto](%%action.register%%) e devenir le prime a "
|
||||
"publicar?"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2830,7 +2886,7 @@ msgstr ""
|
|||
"[Inscribe te ora](%%action.register%%) pro condivider notas super te con "
|
||||
"amicos, familia e collegas! ([Leger plus](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3196,7 +3252,7 @@ msgstr "Tu non pote repeter tu proprie nota."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Tu ha ja repetite iste nota."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Repetite"
|
||||
|
||||
|
@ -3262,6 +3318,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Responsas a %1$s in %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Stato delite."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito."
|
||||
|
@ -3306,78 +3367,83 @@ msgstr "Salveguardar configurationes del sito"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Tu debe aperir un session pro quitar un gruppo."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Le nota ha nulle profilo"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Pseudonymo"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Statisticas"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Es tu secur de voler deler iste nota?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3594,12 +3660,12 @@ msgstr "Syndication de notas pro %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "Amico de un amico pro %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, fuzzy, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "Isto es le chronologia pro %s, ma %s non ha ancora publicate alique."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3607,7 +3673,7 @@ msgstr ""
|
|||
"Videva tu qualcosa de interessante recentemente? Tu non ha ancora publicate "
|
||||
"alcun nota, dunque iste es un bon momento pro comenciar :)"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3616,7 +3682,7 @@ msgstr ""
|
|||
"Tu pote tentar pulsar %s o [publicar un nota a su attention](%%%%action."
|
||||
"newnotice%%%%?status_textarea=%s)."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3630,7 +3696,7 @@ msgstr ""
|
|||
"pro sequer le notas de **%s** e multe alteres! ([Lege plus](%%%%doc.help%%%"
|
||||
"%))"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3641,7 +3707,7 @@ msgstr ""
|
|||
"(http://en.wikipedia.org/wiki/Microblog) a base del software libere "
|
||||
"[StatusNet](http://status.net/). "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Repetition de %s"
|
||||
|
@ -4296,11 +4362,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Stato delite."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4422,21 +4483,21 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
@ -4708,11 +4769,11 @@ msgstr ""
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Nulle codice de confirmation."
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5074,19 +5135,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5641,23 +5702,23 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Repetite per"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Nota delite."
|
||||
|
@ -5801,6 +5862,10 @@ msgstr "Repeter iste nota"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Repeter iste nota"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5966,47 +6031,47 @@ msgstr ""
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -8,12 +8,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:04+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:54+0000\n"
|
||||
"Language-Team: Icelandic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: is\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -101,7 +101,7 @@ msgstr "Ekkert þannig merki."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -158,7 +158,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -390,8 +390,8 @@ msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Ekki tækt stuttnefni."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -403,8 +403,8 @@ msgstr "Heimasíða er ekki gild vefslóð."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Lýsing er of löng (í mesta lagi 140 tákn)."
|
||||
|
@ -484,18 +484,23 @@ msgstr "Hópar %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "Hópsaðgerðir"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Ótæk stærð."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -506,76 +511,84 @@ msgstr ""
|
|||
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."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Ótækt notendanafn eða lykilorð."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Villa kom upp í stillingu notanda."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Bjóst ekki við innsendingu eyðublaðs."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Aðgangur"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Stuttnefni"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Lykilorð"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "Allt"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -747,8 +760,8 @@ msgstr "Upphafleg mynd"
|
|||
msgid "Preview"
|
||||
msgstr "Forsýn"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Eyða"
|
||||
|
||||
|
@ -797,8 +810,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Nei"
|
||||
|
||||
|
@ -807,9 +821,9 @@ msgstr "Nei"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Opna á þennan notanda"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Já"
|
||||
|
||||
|
@ -916,6 +930,50 @@ msgstr ""
|
|||
msgid "Notices"
|
||||
msgstr "Babl"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Þú verður að hafa skráð þig inn til að búa til hóp."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Babl hefur enga persónulega síðu"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Þú ert ekki meðlimur í þessum hópi."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Það komu upp vandamál varðandi setutókann þinn."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Ekkert svoleiðis babl."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Gat ekki uppfært hóp."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Eyða þessu babli"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -948,7 +1006,7 @@ msgstr "Ertu viss um að þú viljir eyða þessu babli?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Eyða þessu babli"
|
||||
|
||||
|
@ -1098,7 +1156,7 @@ msgstr "Þetta babl er ekki í uppáhaldi!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Bæta við sem uppáhaldsbabli"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Ekkert svoleiðis skjal."
|
||||
|
@ -1113,22 +1171,12 @@ msgstr "Aðrir valkostir"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Þú verður að hafa skráð þig inn til að búa til hóp."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Þú ert ekki meðlimur í þessum hópi."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Ekkert svoleiðis babl."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Það komu upp vandamál varðandi setutókann þinn."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1139,47 +1187,52 @@ msgstr "Notaðu þetta eyðublað til að breyta hópnum."
|
|||
msgid "Name is required."
|
||||
msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Lýsing"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Heimasíða er ekki gild vefslóð."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Gat ekki uppfært hóp."
|
||||
|
@ -2111,11 +2164,11 @@ msgstr "Þú verður að hafa skráð þig inn til að búa til hóp."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Gat ekki búið til uppáhald."
|
||||
|
@ -2249,29 +2302,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Þú ert ekki meðlimur í þessum hópi."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2794,36 +2847,36 @@ msgstr "Almenningsrás, síða %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Almenningsrás"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2832,7 +2885,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3196,7 +3249,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Þú hefur nú þegar lokað á þennan notanda."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Í sviðsljósinu"
|
||||
|
@ -3257,6 +3310,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Skilaboð til %1$s á %2$s"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Tölfræði"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3302,79 +3360,84 @@ msgstr "Stillingar fyrir mynd"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Babl hefur enga persónulega síðu"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Stuttnefni"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Uppröðun"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Lýsing"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Tölfræði"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Ertu viss um að þú viljir eyða þessu babli?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3575,25 +3638,25 @@ msgstr ""
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3602,7 +3665,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3610,7 +3673,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Svör við %s"
|
||||
|
@ -4292,11 +4355,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Tölfræði"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4421,22 +4479,22 @@ msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Vandamál komu upp við að vista babl."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Vandamál komu upp við að vista babl."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Gagnagrunnsvilla við innsetningu svars: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
@ -4725,11 +4783,11 @@ msgstr "SMS staðfesting"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "SMS staðfesting"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5100,20 +5158,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Enginn staðfestingarlykill."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Skrá þig inn á síðuna"
|
||||
|
@ -5685,24 +5743,24 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Í sviðsljósinu"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Svara þessu babli"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Svara"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Babl sent inn"
|
||||
|
@ -5850,6 +5908,10 @@ msgstr "Svara þessu babli"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Svara þessu babli"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6023,47 +6085,47 @@ msgstr "Skilaboð"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "fyrir nokkrum sekúndum"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "fyrir um einni mínútu síðan"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "fyrir um %d mínútum síðan"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "fyrir um einum klukkutíma síðan"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "fyrir um %d klukkutímum síðan"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "fyrir um einum degi síðan"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "fyrir um %d dögum síðan"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "fyrir um einum mánuði síðan"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "fyrir um %d mánuðum síðan"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "fyrir um einu ári síðan"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:07+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:32:58+0000\n"
|
||||
"Language-Team: Italian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: it\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -95,7 +95,7 @@ msgstr "Pagina inesistente."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -159,7 +159,7 @@ msgstr ""
|
|||
"qualche cosa alla sua attenzione](%%%%action.newnotice%%%%?status_textarea=%3"
|
||||
"$s)."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -389,8 +389,8 @@ msgstr "Soprannome già in uso. Prova con un altro."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Non è un soprannome valido."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -402,8 +402,8 @@ msgstr "L'indirizzo della pagina web non è valido."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Nome troppo lungo (max 255 caratteri)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "La descrizione è troppo lunga (max %d caratteri)."
|
||||
|
@ -480,18 +480,23 @@ msgstr "Gruppi di %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "Gruppi su %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
msgstr "Richiesta non corretta."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Dimensione non valida."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -503,19 +508,19 @@ 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."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Nome utente o password non valido."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Errore nel database nell'eliminare l'applicazione utente OAuth."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Errore nel database nell'inserire l'applicazione utente OAuth."
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
|
@ -524,55 +529,63 @@ msgstr ""
|
|||
"Il token di richiesta %s è stato autorizzato. Scambiarlo con un token di "
|
||||
"accesso."
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, fuzzy, php-format
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr "Il token di richiesta %s è stato rifiutato."
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Invio del modulo inaspettato."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr "Un'applicazione vorrebbe collegarsi al tuo account"
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr "Consenti o nega l'accesso"
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Account"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Soprannome"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
#, fuzzy
|
||||
msgid "Deny"
|
||||
msgstr "Nega"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "Consenti"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr "Consenti o nega l'accesso alle informazioni del tuo account."
|
||||
|
||||
|
@ -743,8 +756,8 @@ msgstr "Originale"
|
|||
msgid "Preview"
|
||||
msgstr "Anteprima"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Elimina"
|
||||
|
||||
|
@ -794,8 +807,9 @@ msgstr ""
|
|||
"tuoi messaggi, non potrà più abbonarsi e non riceverai notifica delle @-"
|
||||
"risposte che ti invierà."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
|
@ -803,9 +817,9 @@ msgstr "No"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Non bloccare questo utente"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Sì"
|
||||
|
||||
|
@ -910,6 +924,53 @@ msgstr "Conversazione"
|
|||
msgid "Notices"
|
||||
msgstr "Messaggi"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Devi eseguire l'accesso per modificare un gruppo."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Il messaggio non ha un profilo"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Non fai parte di questo gruppo."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Si è verificato un problema con il tuo token di sessione."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Nessun messaggio."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"Vuoi eliminare questo utente? Questa azione eliminerà tutti i dati "
|
||||
"dell'utente dal database, senza una copia di sicurezza."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Non eliminare il messaggio"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Elimina questo messaggio"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -944,7 +1005,7 @@ msgstr "Vuoi eliminare questo messaggio?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Non eliminare il messaggio"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Elimina questo messaggio"
|
||||
|
||||
|
@ -1088,7 +1149,7 @@ msgstr "Questo messaggio non è un preferito!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Aggiungi ai preferiti"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Nessun documento."
|
||||
|
@ -1103,22 +1164,12 @@ msgstr "Altre opzioni"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Devi eseguire l'accesso per modificare un gruppo."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Non fai parte di questo gruppo."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Nessun messaggio."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Si è verificato un problema con il tuo token di sessione."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1129,48 +1180,53 @@ msgstr "Usa questo modulo per modificare il gruppo."
|
|||
msgid "Name is required."
|
||||
msgstr "Stessa password di sopra; richiesta"
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Nome troppo lungo (max 255 caratteri)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Soprannome già in uso. Prova con un altro."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "L'URL \"%s\" dell'immagine non è valido."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Ubicazione troppo lunga (max 255 caratteri)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
#, fuzzy
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr "L'URL \"%s\" dell'immagine non è valido."
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Impossibile aggiornare il gruppo."
|
||||
|
@ -2109,11 +2165,11 @@ msgstr "Devi eseguire l'accesso per creare un gruppo."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Usa questo modulo per creare un nuovo gruppo."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Impossibile creare gli alias."
|
||||
|
@ -2249,29 +2305,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Non fai parte di quel gruppo."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2781,19 +2837,19 @@ msgstr "Attività pubblica, pagina %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Attività pubblica"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Feed dell'attività pubblica (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Feed dell'attività pubblica (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Feed dell'attività pubblica (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
|
@ -2802,18 +2858,18 @@ msgstr ""
|
|||
"Questa è l'attività pubblica di %%site.name%%, ma nessuno ha ancora scritto "
|
||||
"qualche cosa."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Fallo tu!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
"Perché non [crei un account](%%action.register%%) e scrivi qualche cosa!"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2826,7 +2882,7 @@ msgstr ""
|
|||
"net/). [Registrati](%%action.register%%) per condividere messaggi con i tuoi "
|
||||
"amici, i tuoi familiari e colleghi! ([Maggiori informazioni](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3192,7 +3248,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Hai già ripetuto quel messaggio."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Ripetuti"
|
||||
|
||||
|
@ -3258,6 +3314,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Risposte a %1$s su %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito."
|
||||
|
@ -3302,79 +3362,84 @@ msgstr "Salva impostazioni"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Devi eseguire l'accesso per lasciare un gruppo."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Il messaggio non ha un profilo"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Paginazione"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiche"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
#, fuzzy
|
||||
msgid "Authorize URL"
|
||||
msgstr "Autore"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Vuoi eliminare questo messaggio?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3434,7 +3499,7 @@ msgstr "Questo è un modo per condividere ciò che ti piace."
|
|||
#: actions/showgroup.php:82 lib/groupnav.php:86
|
||||
#, php-format
|
||||
msgid "%s group"
|
||||
msgstr "Gruppi di %s"
|
||||
msgstr "Gruppo %s"
|
||||
|
||||
#: actions/showgroup.php:84
|
||||
#, fuzzy, php-format
|
||||
|
@ -3590,12 +3655,12 @@ msgstr "Feed dei messaggi per %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF per %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "Questa è l'attività di %1$s, ma %2$s non ha ancora scritto nulla."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3603,7 +3668,7 @@ msgstr ""
|
|||
"Visto niente di interessante? Non hai scritto ancora alcun messaggio, questo "
|
||||
"potrebbe essere un buon momento per iniziare! :)"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3612,7 +3677,7 @@ msgstr ""
|
|||
"Puoi provare a richiamare %1$s o [scrivere qualche cosa che attiri la sua "
|
||||
"attenzione](%%%%action.newnotice%%%%?status_textarea=%2$s)."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3626,7 +3691,7 @@ msgstr ""
|
|||
"i messaggi di **%s** e di molti altri! ([Maggiori informazioni](%%%%doc.help%"
|
||||
"%%%))"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3637,7 +3702,7 @@ msgstr ""
|
|||
"it.wikipedia.org/wiki/Microblogging) basato sul software libero [StatusNet]"
|
||||
"(http://status.net/). "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Ripetizione di %s"
|
||||
|
@ -4316,10 +4381,6 @@ msgstr ""
|
|||
"Questo sito esegue il software %1$s versione %2$s, Copyright 2008-2010 "
|
||||
"StatusNet, Inc. e collaboratori."
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr "Collaboratori"
|
||||
|
@ -4458,22 +4519,22 @@ msgstr "Ti è proibito inviare messaggi su questo sito."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Problema nel salvare il messaggio."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Problema nel salvare il messaggio."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Errore del DB nell'inserire la risposta: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Benvenuti su %1$s, @%2$s!"
|
||||
|
@ -4750,11 +4811,11 @@ msgstr "Configurazione percorsi"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Configurazione aspetto"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5159,21 +5220,21 @@ msgstr ""
|
|||
"tracks - non ancora implementato\n"
|
||||
"tracking - non ancora implementato\n"
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Non è stato trovato alcun file di configurazione. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr "I file di configurazione sono stati cercati in questi posti: "
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
"Potrebbe essere necessario lanciare il programma d'installazione per "
|
||||
"correggere il problema."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Vai al programma d'installazione."
|
||||
|
||||
|
@ -5819,23 +5880,23 @@ msgstr "O"
|
|||
msgid "at"
|
||||
msgstr "presso"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "nel contesto"
|
||||
msgstr "in una discussione"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Ripetuto da"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Rispondi a questo messaggio"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Rispondi"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Messaggio ripetuto"
|
||||
|
||||
|
@ -5976,6 +6037,10 @@ msgstr "Ripetere questo messaggio?"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Ripeti questo messaggio"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr "Sandbox"
|
||||
|
@ -6141,47 +6206,47 @@ msgstr "Messaggio"
|
|||
msgid "Moderate"
|
||||
msgstr "Modera"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "pochi secondi fa"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "circa un minuto fa"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "circa %d minuti fa"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "circa un'ora fa"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "circa %d ore fa"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "circa un giorno fa"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "circa %d giorni fa"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "circa un mese fa"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "circa %d mesi fa"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "circa un anno fa"
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -7,12 +7,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:13+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:04+0000\n"
|
||||
"Language-Team: Korean\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ko\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -99,7 +99,7 @@ msgstr "그러한 태그가 없습니다."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -156,7 +156,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -393,8 +393,8 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "유효한 별명이 아닙니다"
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -406,8 +406,8 @@ msgstr "홈페이지 주소형식이 올바르지 않습니다."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "실명이 너무 깁니다. (최대 255글자)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "설명이 너무 길어요. (최대 140글자)"
|
||||
|
@ -487,18 +487,23 @@ msgstr "%s 그룹"
|
|||
msgid "groups on %s"
|
||||
msgstr "그룹 행동"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "옳지 않은 크기"
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -509,76 +514,84 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "사용자 이름이나 비밀 번호가 틀렸습니다."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "사용자 세팅 오류"
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "잘못된 폼 제출"
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "계정"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "별명"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "비밀 번호"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "모든 것"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -752,8 +765,8 @@ msgstr "원래 설정"
|
|||
msgid "Preview"
|
||||
msgstr "미리보기"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "삭제"
|
||||
|
||||
|
@ -802,8 +815,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "아니오"
|
||||
|
||||
|
@ -812,9 +826,9 @@ msgstr "아니오"
|
|||
msgid "Do not block this user"
|
||||
msgstr "이 사용자를 차단해제합니다."
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "네, 맞습니다."
|
||||
|
||||
|
@ -923,6 +937,50 @@ msgstr "인증 코드"
|
|||
msgid "Notices"
|
||||
msgstr "통지"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "그룹을 만들기 위해서는 로그인해야 합니다."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "통지에 프로필이 없습니다."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "당신의 세션토큰관련 문제가 있습니다."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "그러한 통지는 없습니다."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "이 통지를 지울 수 없습니다."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "이 게시글 삭제하기"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -958,7 +1016,7 @@ msgstr "정말로 통지를 삭제하시겠습니까?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "이 통지를 지울 수 없습니다."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "이 게시글 삭제하기"
|
||||
|
||||
|
@ -1112,7 +1170,7 @@ msgstr "이 메시지는 favorite이 아닙니다."
|
|||
msgid "Add to favorites"
|
||||
msgstr "좋아하는 게시글로 추가하기"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "그러한 문서는 없습니다."
|
||||
|
@ -1127,22 +1185,12 @@ msgstr "다른 옵션들"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "그룹을 만들기 위해서는 로그인해야 합니다."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "그러한 통지는 없습니다."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "당신의 세션토큰관련 문제가 있습니다."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1153,47 +1201,52 @@ msgstr "다음 양식을 이용해 그룹을 편집하십시오."
|
|||
msgid "Name is required."
|
||||
msgstr "위와 같은 비밀 번호. 필수 사항."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "실명이 너무 깁니다. (최대 255글자)"
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "설명"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "홈페이지 주소형식이 올바르지 않습니다."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "위치가 너무 깁니다. (최대 255글자)"
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "그룹을 업데이트 할 수 없습니다."
|
||||
|
@ -2129,11 +2182,11 @@ msgstr "그룹을 만들기 위해서는 로그인해야 합니다."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "좋아하는 게시글을 생성할 수 없습니다."
|
||||
|
@ -2266,29 +2319,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2806,39 +2859,39 @@ msgstr "공개 타임라인, %d 페이지"
|
|||
msgid "Public timeline"
|
||||
msgstr "퍼블릭 타임라인"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "퍼블릭 스트림 피드"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "퍼블릭 스트림 피드"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "퍼블릭 스트림 피드"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2847,7 +2900,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3210,7 +3263,7 @@ msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "당신은 이미 이 사용자를 차단하고 있습니다."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "생성"
|
||||
|
@ -3272,6 +3325,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "%2$s에서 %1$s까지 메시지"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "아바타가 업데이트 되었습니다."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3318,79 +3376,84 @@ msgstr "아바타 설정"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "그룹을 떠나기 위해서는 로그인해야 합니다."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "통지에 프로필이 없습니다."
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "별명"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "페이지수"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "설명"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "통계"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "정말로 통지를 삭제하시겠습니까?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3595,25 +3658,25 @@ msgstr "%s의 통지 피드"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "%s의 보낸쪽지함"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3622,7 +3685,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3632,7 +3695,7 @@ msgstr ""
|
|||
"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/"
|
||||
"Micro-blogging) 서비스에 계정을 갖고 있습니다."
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "%s에 답신"
|
||||
|
@ -4313,11 +4376,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "아바타가 업데이트 되었습니다."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4446,22 +4504,22 @@ msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었
|
|||
msgid "Problem saving notice."
|
||||
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "%2$s에서 %1$s까지 메시지"
|
||||
|
@ -4751,11 +4809,11 @@ msgstr "SMS 인증"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "SMS 인증"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5124,20 +5182,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "확인 코드가 없습니다."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "이 사이트 로그인"
|
||||
|
@ -5708,25 +5766,25 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "내용이 없습니다!"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "생성"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "이 게시글에 대해 답장하기"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "답장하기"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "게시글이 등록되었습니다."
|
||||
|
@ -5875,6 +5933,10 @@ msgstr "이 게시글에 대해 답장하기"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "이 게시글에 대해 답장하기"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6052,47 +6114,47 @@ msgstr "메시지"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "몇 초 전"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "1분 전"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "%d분 전"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "1시간 전"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "%d시간 전"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "하루 전"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "%d일 전"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "1달 전"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "%d달 전"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "1년 전"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:17+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:08+0000\n"
|
||||
"Language-Team: Macedonian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: mk\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -95,7 +95,7 @@ msgstr "Нема таква страница"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -158,7 +158,7 @@ msgstr ""
|
|||
"на корисникот или да [објавите нешто што сакате тој да го прочита](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%3$s)."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -390,8 +390,8 @@ msgstr "Тој прекар е во употреба. Одберете друг.
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Неправилен прекар."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -403,8 +403,8 @@ msgstr "Главната страница не е важечка URL-адрес
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Целото име е предолго (максимум 255 знаци)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Описот е предолг (дозволено е највеќе %d знаци)."
|
||||
|
@ -481,18 +481,22 @@ msgstr "%s групи"
|
|||
msgid "groups on %s"
|
||||
msgstr "групи на %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
msgstr "Лошо барање."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr "Нема наведено oauth_token параметар."
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
msgid "Invalid token."
|
||||
msgstr "Погрешен жетон."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -503,74 +507,85 @@ msgstr "Лошо барање."
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Погрешен прекар / лозинка!"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Грешка при бришењето на корисникот на OAuth-програмот."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr ""
|
||||
"Грешка во базата на податоци при вметнувањето на корисникот на OAuth-"
|
||||
"програмот."
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr "Жетонот на барањето %s е одобрен. Заменете го со жетон за пристап."
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgstr "Жетонот на барањето %s е одбиен."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr "Жетонот на барањето %s е одбиен и поништен."
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Неочекувано поднесување на образец."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr "Има програм кој сака да се поврзе со Вашата сметка"
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr "Дозволи или одбиј пристап"
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
"Програмот <strong>%1$s</strong> од <strong>%2$s</strong> би сакал да може да "
|
||||
"<strong>%3$s</strong> податоците за Вашата %4$s сметка. Треба да дозволувате "
|
||||
"пристап до Вашата %4$s сметка само на трети страни на кои им верувате."
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Сметка"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Прекар"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Лозинка"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "Одбиј"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "Дозволи"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr "Дозволете или одбијте пристап до податоците за Вашата сметка."
|
||||
|
||||
|
@ -743,8 +758,8 @@ msgstr "Оригинал"
|
|||
msgid "Preview"
|
||||
msgstr "Преглед"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Бриши"
|
||||
|
||||
|
@ -795,8 +810,9 @@ msgstr ""
|
|||
"претплати на Вас во иднина, и нема да бидете известени ако имате @-одговори "
|
||||
"од корисникот."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Не"
|
||||
|
||||
|
@ -804,9 +820,9 @@ msgstr "Не"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Не го блокирај корисников"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Да"
|
||||
|
||||
|
@ -910,6 +926,47 @@ msgstr "Разговор"
|
|||
msgid "Notices"
|
||||
msgstr "Забелешки"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Мора да сте најавени за да можете да избришете програм."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
msgid "Application not found."
|
||||
msgstr "Програмот не е пронајден."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Не сте сопственик на овој програм."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Се појави проблем со Вашиот сесиски жетон."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
msgid "Delete application"
|
||||
msgstr "Избриши програм"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"Дали се сигурни дека сакате да го избришете овој програм? Ова воедно ќе ги "
|
||||
"избрише сите податоци за програмот од базата, вклучувајќи ги сите постоечки "
|
||||
"поврзувања."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Не го бриши овој програм"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
msgid "Delete this application"
|
||||
msgstr "Избриши го програмов"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -944,7 +1001,7 @@ msgstr "Дали сте сигурни дека сакате да ја избр
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Не ја бриши оваа забелешка"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Бриши ја оваа забелешка"
|
||||
|
||||
|
@ -1088,7 +1145,7 @@ msgstr "Оваа забелешка не Ви е омилена!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Додај во омилени"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Нема документ со наслов „%s“"
|
||||
|
@ -1101,20 +1158,11 @@ msgstr "Уреди програм"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Мора да сте најавени за да можете да уредувате програми."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Не сте сопственик на овој програм."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "Нема таков програм."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Се појави проблем со Вашиот сесиски жетон."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "Образецов служи за уредување на програмот."
|
||||
|
@ -1123,43 +1171,47 @@ msgstr "Образецов служи за уредување на програ
|
|||
msgid "Name is required."
|
||||
msgstr "Треба име."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Името е предолго (максимум 255 знаци)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Тоа име е во употреба. Одберете друго."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "Треба опис."
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr "Изворната URL-адреса е предолга."
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Изворната URL-адреса е неважечка."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr "Треба организација."
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Организацијата е предолга (максимумот е 255 знаци)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr "Треба домашна страница на организацијата."
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr "Повикувањето е предолго."
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr "URL-адресата за повикување е неважечка."
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr "Не можев да го подновам програмот."
|
||||
|
||||
|
@ -2097,11 +2149,11 @@ msgstr "Мора да сте најавени за да можете да рег
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Овој образец служи за регистрирање на нов програм."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr "Треба изворна URL-адреса."
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr "Не можеше да се создаде програмот."
|
||||
|
||||
|
@ -2237,28 +2289,28 @@ msgstr "Програми што ги имате регистрирано"
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr "Сè уште немате регистрирано ниеден програм,"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr "Поврзани програми"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr "Им имате дозволено пристап до Вашата сметка на следните програми."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Не сте корисник на тој програм."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr "Не можам да му го одземам пристапот на програмот: "
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr "Му немате дозволено пристап до Вашата сметка на ниеден програм."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
"Развивачите можат да ги нагодат регистрациските поставки за нивните програми "
|
||||
|
@ -2764,19 +2816,19 @@ msgstr "Јавна историја, стр. %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Јавна историја"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Канал на јавниот поток (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Канал на јавниот поток (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Канал на јавниот поток (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
|
@ -2784,11 +2836,11 @@ msgid ""
|
|||
msgstr ""
|
||||
"Ова е јавната историја за %%site.name%%, но досега никој ништо нема објавено."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Создајте ја првата забелешка!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
|
@ -2796,7 +2848,7 @@ msgstr ""
|
|||
"Зошто не [регистрирате сметка](%%action.register%%) и станете првиот "
|
||||
"објавувач!"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2810,7 +2862,7 @@ msgstr ""
|
|||
"споделувате забелешки за себе со приајтелите, семејството и колегите! "
|
||||
"([Прочитајте повеќе](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3179,7 +3231,7 @@ msgstr "Не можете да повторувате сопствена заб
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Веќе ја имате повторено таа забелешка."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Повторено"
|
||||
|
||||
|
@ -3245,6 +3297,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Одговори на %1$s на %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr "Не можете да ставате корисници во песочен режим на оваа веб-страница."
|
||||
|
@ -3259,9 +3315,8 @@ msgid "Sessions"
|
|||
msgstr "Сесии"
|
||||
|
||||
#: actions/sessionsadminpanel.php:65
|
||||
#, fuzzy
|
||||
msgid "Session settings for this StatusNet site."
|
||||
msgstr "Нагодувања на изгледот на оваа StatusNet веб-страница."
|
||||
msgstr "Нагодувања на сесиите за оваа StatusNet веб-страница."
|
||||
|
||||
#: actions/sessionsadminpanel.php:175
|
||||
msgid "Handle sessions"
|
||||
|
@ -3288,71 +3343,71 @@ msgstr "Зачувај нагодувања на веб-страницата"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Мора да сте најавени за да можете да го видите програмот."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr "Профил на програмот"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr "Икона"
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "Организација"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Статистики"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "создал: %1$s - основен пристап: %2$s - %3$d корисници"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "Создадено од %1$s - основен пристап: %2$s - %3$d корисници"
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr "Дејства на програмот"
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr "Клуч за промена и тајна"
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr "Инфо за програмот"
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr "Потрошувачки клуч"
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr "Потрошувачка тајна"
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr "URL на жетонот на барањето"
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr "URL на пристапниот жетон"
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr "Одобри URL"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
|
@ -3360,6 +3415,11 @@ msgstr ""
|
|||
"Напомена: Поддржуваме HMAC-SHA1 потписи. Не поддржуваме потпишување со прост "
|
||||
"текст."
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Дали сте сигурни дека сакате да ја избришете оваа заблешка?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3577,12 +3637,12 @@ msgstr "Канал со забелешки за %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF за %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "Ова е историјата за %1$s, но %2$s сè уште нема објавено ништо."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3590,7 +3650,7 @@ msgstr ""
|
|||
"Имате видено нешто интересно во последно време? Сè уште немате објавено "
|
||||
"ниедна забелешка, но сега е добро време за да почнете :)"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3599,7 +3659,7 @@ msgstr ""
|
|||
"Можете да го подбуцнете корисникот %1$s или [да објавите нешто што сакате да "
|
||||
"го прочита](%%%%action.newnotice%%%%?status_textarea=%2$s)."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3613,7 +3673,7 @@ msgstr ""
|
|||
"register%%%%) за да можете да ги следите забелешките на **%s** и многу "
|
||||
"повеќе! ([Прочитајте повеќе](%%%%doc.help%%%%))"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3624,7 +3684,7 @@ msgstr ""
|
|||
"(http://mk.wikipedia.org/wiki/Микроблогирање) базирана на слободната "
|
||||
"програмска алатка [StatusNet](http://status.net/). "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Повторувања на %s"
|
||||
|
@ -4307,10 +4367,6 @@ msgstr ""
|
|||
"Оваа веб-страница работи на %1$s верзија %2$s, Авторски права 2008-2010 "
|
||||
"StatusNet, Inc. и учесници."
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr "Учесници"
|
||||
|
@ -4445,21 +4501,21 @@ msgstr "Забрането Ви е да објавувате забелешки
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Проблем во зачувувањето на белешката."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Проблем при зачувувањето на групното приемно сандаче."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Одговор од внесот во базата: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Добредојдовте на %1$s, @%2$s!"
|
||||
|
@ -4734,17 +4790,16 @@ msgid "Paths configuration"
|
|||
msgstr "Конфигурација на патеки"
|
||||
|
||||
#: lib/adminpanelaction.php:337
|
||||
#, fuzzy
|
||||
msgid "Sessions configuration"
|
||||
msgstr "Конфигурација на изгледот"
|
||||
msgstr "Конфигурација на сесиите"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
"API-ресурсот бара да може и да чита и да запишува, а вие можете само да "
|
||||
"читате."
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr "Неуспешен обид за API-заверка, прекар = %1$s, прокси = %2$s, IP = %3$s"
|
||||
|
@ -5144,19 +5199,19 @@ msgstr ""
|
|||
"tracks - сè уште не е имплементирано.\n"
|
||||
"tracking - сè уште не е имплементирано.\n"
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Нема пронајдено конфигурациска податотека. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr "Побарав конфигурациони податотеки на следниве места: "
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr "Препорачуваме да го пуштите инсталатерот за да го поправите ова."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Оди на инсталаторот."
|
||||
|
||||
|
@ -5807,23 +5862,23 @@ msgstr "З"
|
|||
msgid "at"
|
||||
msgstr "во"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "во контекст"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Повторено од"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Одговори на забелешкава"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Одговор"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Забелешката е повторена"
|
||||
|
||||
|
@ -5964,6 +6019,10 @@ msgstr "Да ја повторам белешкава?"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Повтори ја забелешкава"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr "Не е зададен корисник за еднокорисничкиот режим."
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr "Песок"
|
||||
|
@ -6130,47 +6189,47 @@ msgstr "Порака"
|
|||
msgid "Moderate"
|
||||
msgstr "Модерирај"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "пред неколку секунди"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "пред една минута"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "пред %d минути"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "пред еден час"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "пред %d часа"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "пред еден ден"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "пред %d денови"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "пред еден месец"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "пред %d месеца"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "пред една година"
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:26+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:17+0000\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: nl\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -94,7 +94,7 @@ msgstr "Deze pagina bestaat niet"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -158,7 +158,7 @@ msgstr ""
|
|||
"bericht voor die gebruiker plaatsen](%%%%action.newnotice%%%%?"
|
||||
"status_textarea=%3$s)."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -394,8 +394,8 @@ msgstr ""
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Ongeldige gebruikersnaam!"
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -407,8 +407,8 @@ msgstr "De thuispagina is geen geldige URL."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "De volledige naam is te lang (maximaal 255 tekens)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "De beschrijving is te lang (maximaal %d tekens)."
|
||||
|
@ -485,18 +485,22 @@ msgstr "%s groepen"
|
|||
msgid "groups on %s"
|
||||
msgstr "groepen op %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
msgstr "Ongeldig verzoek."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr "Er is geen oauth_token parameter opgegeven."
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
msgid "Invalid token."
|
||||
msgstr "Ongeldig token."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -509,23 +513,23 @@ msgstr ""
|
|||
"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, "
|
||||
"alstublieft."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Ongeldige gebruikersnaam of wachtwoord."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr ""
|
||||
"Er is een databasefout opgetreden tijdens het verwijderen van de OAuth "
|
||||
"applicatiegebruiker."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr ""
|
||||
"Er is een databasefout opgetreden tijdens het toevoegen van de OAuth "
|
||||
"applicatiegebruiker."
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
|
@ -534,53 +538,64 @@ msgstr ""
|
|||
"Het verzoektoken %s is geautoriseerd. Wissel het alstublieft uit voor een "
|
||||
"toegangstoken."
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgstr "Het verzoektoken %s is geweigerd."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr "Het verzoektoken %s is geweigerd en ingetrokken."
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Het formulier is onverwacht ingezonden."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr "Een applicatie vraagt toegang tot uw gebruikersgegevens"
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr "Toegang toestaan of ontzeggen"
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
"De <strong>applicatie %1$s</strong> van <strong>%2$s</strong> vraagt toegang "
|
||||
"van het type \"<strong>%3$s</strong> tot uw gebruikersgegevens. Geef alleen "
|
||||
"toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt."
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Gebruikersnaam"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Wachtwoord"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "Ontzeggen"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "Toestaan"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr "Toegang tot uw gebruikersgegevens toestaan of ontzeggen."
|
||||
|
||||
|
@ -752,8 +767,8 @@ msgstr "Origineel"
|
|||
msgid "Preview"
|
||||
msgstr "Voorvertoning"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
|
@ -804,8 +819,9 @@ msgstr ""
|
|||
"niet meer volgen en u wordt niet op de hoogte gebracht van \"@\"-antwoorden "
|
||||
"van deze gebruiker."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Nee"
|
||||
|
||||
|
@ -813,9 +829,9 @@ msgstr "Nee"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Gebruiker niet blokkeren"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
|
@ -919,6 +935,47 @@ msgstr "Dialoog"
|
|||
msgid "Notices"
|
||||
msgstr "Mededelingen"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "U moet aangemeld zijn om een applicatie te kunnen verwijderen."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
msgid "Application not found."
|
||||
msgstr "De applicatie is niet gevonden."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "U bent niet de eigenaar van deze applicatie."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Er is een probleem met uw sessietoken."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
msgid "Delete application"
|
||||
msgstr "Applicatie verwijderen"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"Weet u zeker dat u deze applicatie wilt verwijderen? Door deze handeling "
|
||||
"worden alle gegevens van deze applicatie uit de database verwijderd, "
|
||||
"inclusief alle bestaande gebruikersverbindingen."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Deze applicatie niet verwijderen"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
msgid "Delete this application"
|
||||
msgstr "Deze applicatie verwijderen"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -953,7 +1010,7 @@ msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Deze mededeling niet verwijderen"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Deze mededeling verwijderen"
|
||||
|
||||
|
@ -1098,7 +1155,7 @@ msgstr "Deze mededeling staats niet op uw favorietenlijst."
|
|||
msgid "Add to favorites"
|
||||
msgstr "Aan favorieten toevoegen"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Onbekend document \"%s\""
|
||||
|
@ -1111,20 +1168,11 @@ msgstr "Applicatie bewerken"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "U moet aangemeld zijn om een applicatie te kunnen bewerken."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "U bent niet de eigenaar van deze applicatie."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "De applicatie bestaat niet."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Er is een probleem met uw sessietoken."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "Gebruik dit formulier om uw applicatiegegevens te bewerken."
|
||||
|
@ -1133,43 +1181,47 @@ msgstr "Gebruik dit formulier om uw applicatiegegevens te bewerken."
|
|||
msgid "Name is required."
|
||||
msgstr "Een naam is verplicht."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "De naam is te lang (maximaal 255 tekens)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Deze naam wordt al gebruikt. Kies een andere."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "Een beschrijving is verplicht"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr "De bron-URL is te lang."
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "De bron-URL is niet geldig."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr "Organisatie is verplicht."
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "De organisatienaam is te lang (maximaal 255 tekens)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr "De homepage voor een organisatie is verplicht."
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr "De callback is te lang."
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr "De callback-URL is niet geldig."
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr "Het was niet mogelijk de applicatie bij te werken."
|
||||
|
||||
|
@ -2114,11 +2166,11 @@ msgstr "U moet aangemeld zijn om een applicatie te kunnen registreren."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Gebruik dit formulier om een nieuwe applicatie te registreren."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr "Een bron-URL is verplicht."
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr "Het was niet mogelijk de applicatie aan te maken."
|
||||
|
||||
|
@ -2253,32 +2305,32 @@ msgstr "Door u geregistreerde applicaties"
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr "U hebt nog geen applicaties geregistreerd."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr "Verbonden applicaties"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
"U hebt de volgende applicaties toegang gegeven tot uw gebruikersgegevens."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "U bent geen gebruiker van die applicatie."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
"Het was niet mogelijk de toegang te ontzeggen voor de volgende applicatie: "
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
"U hebt geen enkele applicatie geautoriseerd voor toegang tot uw "
|
||||
"gebruikersgegevens."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
"Ontwikkelaars kunnen de registratiegegevens voor hun applicaties bewerken "
|
||||
|
@ -2784,19 +2836,19 @@ msgstr "Openbare tijdlijn, pagina %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Openbare tijdlijn"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Publieke streamfeed (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Publieke streamfeed (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Publieke streamfeed (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
|
@ -2805,11 +2857,11 @@ msgstr ""
|
|||
"Dit is de publieke tijdlijn voor %%site.name%%, maar niemand heeft nog "
|
||||
"berichten geplaatst."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "U kunt de eerste zijn die een bericht plaatst!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
|
@ -2817,7 +2869,7 @@ msgstr ""
|
|||
"Waarom [registreert u geen gebruiker](%%action.register%%) en plaatst u als "
|
||||
"eerste een bericht?"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2830,7 +2882,7 @@ msgstr ""
|
|||
"net/). [Registreer nu](%%action.register%%) om mededelingen over uzelf te "
|
||||
"delen met vrienden, familie en collega's! [Meer lezen...](%%doc.help%%)"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3201,7 +3253,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "U hent die mededeling al herhaald."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Herhaald"
|
||||
|
||||
|
@ -3267,6 +3319,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Antwoorden aan %1$s op %2$s."
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen."
|
||||
|
@ -3281,9 +3337,8 @@ msgid "Sessions"
|
|||
msgstr "Sessies"
|
||||
|
||||
#: actions/sessionsadminpanel.php:65
|
||||
#, fuzzy
|
||||
msgid "Session settings for this StatusNet site."
|
||||
msgstr "Instellingen voor de vormgeving van deze StatusNet-website."
|
||||
msgstr "Sessieinstellingen voor deze StatusNet-website."
|
||||
|
||||
#: actions/sessionsadminpanel.php:175
|
||||
msgid "Handle sessions"
|
||||
|
@ -3310,71 +3365,71 @@ msgstr "Websiteinstellingen opslaan"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "U moet aangemeld zijn om een applicatie te kunnen bekijken."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr "Applicatieprofiel"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr "Icoon"
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "Organisatie"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Beschrijving"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Statistieken"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "aangemaakt door %1$s - standaardtoegang \"%2$s\" - %3$d gebruikers"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "Aangemaakt door %1$s - standaardtoegang \"%2$s\" - %3$d gebruikers"
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr "Applicatiehandelingen"
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr "Sleutel en wachtwoord op nieuw instellen"
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr "Applicatieinformatie"
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr "Gebruikerssleutel"
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr "Gebruikerswachtwoord"
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr "URL voor verzoektoken"
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr "URL voor toegangstoken"
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr "Autorisatie-URL"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
|
@ -3382,6 +3437,11 @@ msgstr ""
|
|||
"Opmerking: HMAC-SHA1 ondertekening wordt ondersteund. Ondertekening in "
|
||||
"platte tekst is niet mogelijk."
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3600,13 +3660,13 @@ msgstr "Mededelingenfeed voor %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "Vriend van een vriend (FOAF) voor %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
"Dit is de tijdlijn voor %1$s, maar %2$s heeft nog geen berichten verzonden."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3614,7 +3674,7 @@ msgstr ""
|
|||
"Hebt u recentelijk iets interessants gezien? U hebt nog geen mededelingen "
|
||||
"verstuurd, dus dit is een ideaal moment om daarmee te beginnen!"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3623,7 +3683,7 @@ msgstr ""
|
|||
"U kunt proberen %1$s te porren of [een bericht voor die gebruiker plaatsen](%"
|
||||
"%%%action.newnotice%%%%?status_textarea=%2$s)."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3637,7 +3697,7 @@ msgstr ""
|
|||
"abonneren op de mededelingen van **%s** en nog veel meer! [Meer lezen...](%%%"
|
||||
"%doc.help%%%%)"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3648,7 +3708,7 @@ msgstr ""
|
|||
"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software "
|
||||
"[StatusNet](http://status.net/). "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Herhaald van %s"
|
||||
|
@ -4336,10 +4396,6 @@ msgstr ""
|
|||
"Deze website wordt aangedreven door %1$2 versie %2$s. Auteursrechten "
|
||||
"voorbehouden 2008-2010 Statusnet, Inc. en medewerkers."
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr "Medewerkers"
|
||||
|
@ -4480,24 +4536,24 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr ""
|
||||
"Er is een probleem opgetreden bij het opslaan van het Postvak IN van de "
|
||||
"groep."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Welkom bij %1$s, @%2$s!"
|
||||
|
@ -4772,17 +4828,16 @@ msgid "Paths configuration"
|
|||
msgstr "Padinstellingen"
|
||||
|
||||
#: lib/adminpanelaction.php:337
|
||||
#, fuzzy
|
||||
msgid "Sessions configuration"
|
||||
msgstr "Instellingen vormgeving"
|
||||
msgstr "Sessieinstellingen"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
"Het API-programma heeft lezen-en-schrijventoegang nodig, maar u hebt alleen "
|
||||
"maar leestoegang."
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5189,20 +5244,20 @@ msgstr ""
|
|||
"tracks - nog niet beschikbaar\n"
|
||||
"tracking - nog niet beschikbaar\n"
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Er is geen instellingenbestand aangetroffen. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen: "
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
"U kunt proberen de installer uit te voeren om dit probleem op te lossen."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Naar het installatieprogramma gaan."
|
||||
|
||||
|
@ -5852,23 +5907,23 @@ msgstr "W"
|
|||
msgid "at"
|
||||
msgstr "op"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "in context"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Herhaald door"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Op deze mededeling antwoorden"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Antwoorden"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Mededeling herhaald"
|
||||
|
||||
|
@ -6010,6 +6065,10 @@ msgstr "Deze mededeling herhalen?"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Deze mededeling herhalen"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus."
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr "Zandbak"
|
||||
|
@ -6175,47 +6234,47 @@ msgstr "Bericht"
|
|||
msgid "Moderate"
|
||||
msgstr "Modereren"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "een paar seconden geleden"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "ongeveer een minuut geleden"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "ongeveer %d minuten geleden"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "ongeveer een uur geleden"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "ongeveer %d uur geleden"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "ongeveer een dag geleden"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "ongeveer %d dagen geleden"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "ongeveer een maand geleden"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "ongeveer %d maanden geleden"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "ongeveer een jaar geleden"
|
||||
|
||||
|
|
|
@ -7,12 +7,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:23+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:14+0000\n"
|
||||
"Language-Team: Norwegian Nynorsk\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: nn\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -99,7 +99,7 @@ msgstr "Dette emneord finst ikkje."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -156,7 +156,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -391,8 +391,8 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit anna."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Ikkje eit gyldig brukarnamn."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -404,8 +404,8 @@ msgstr "Heimesida er ikkje ei gyldig internettadresse."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "skildringa er for lang (maks 140 teikn)."
|
||||
|
@ -485,18 +485,23 @@ msgstr "%s grupper"
|
|||
msgid "groups on %s"
|
||||
msgstr "Gruppe handlingar"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Ugyldig storleik."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -507,76 +512,84 @@ msgstr ""
|
|||
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."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Ugyldig brukarnamn eller passord."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Feil ved å setja brukar."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Uventa skjemasending."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Kallenamn"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "Alle"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -750,8 +763,8 @@ msgstr "Original"
|
|||
msgid "Preview"
|
||||
msgstr "Forhandsvis"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Slett"
|
||||
|
||||
|
@ -800,8 +813,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Nei"
|
||||
|
||||
|
@ -810,9 +824,9 @@ msgstr "Nei"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Lås opp brukaren"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Jau"
|
||||
|
||||
|
@ -921,6 +935,50 @@ msgstr "Stadfestingskode"
|
|||
msgid "Notices"
|
||||
msgstr "Notisar"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Du må være logga inn for å lage ei gruppe."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Notisen har ingen profil"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Du er ikkje medlem av den gruppa."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Det var eit problem med sesjons billetten din."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Denne notisen finst ikkje."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Kan ikkje sletta notisen."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Slett denne notisen"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -957,7 +1015,7 @@ msgstr "Sikker på at du vil sletta notisen?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Kan ikkje sletta notisen."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Slett denne notisen"
|
||||
|
||||
|
@ -1111,7 +1169,7 @@ msgstr "Denne notisen er ikkje ein favoritt!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Legg til i favorittar"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Slikt dokument finst ikkje."
|
||||
|
@ -1126,22 +1184,12 @@ msgstr "Andre val"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Du må være logga inn for å lage ei gruppe."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Du er ikkje medlem av den gruppa."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Denne notisen finst ikkje."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Det var eit problem med sesjons billetten din."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1152,47 +1200,52 @@ msgstr "Bruk dette skjemaet for å redigere gruppa"
|
|||
msgid "Name is required."
|
||||
msgstr "Samme som passord over. Påkrevd."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Kallenamnet er allereie i bruk. Prøv eit anna."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Beskriving"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Heimesida er ikkje ei gyldig internettadresse."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Plassering er for lang (maksimalt 255 teikn)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Kann ikkje oppdatera gruppa."
|
||||
|
@ -2132,11 +2185,11 @@ msgstr "Du må være logga inn for å lage ei gruppe."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Bruk dette skjemaet for å lage ein ny gruppe."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Kunne ikkje lagre favoritt."
|
||||
|
@ -2271,29 +2324,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Du er ikkje medlem av den gruppa."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2815,39 +2868,39 @@ msgstr "Offentleg tidsline, side %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Offentleg tidsline"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Offentleg straum"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Offentleg straum"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Offentleg straum"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2856,7 +2909,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3223,7 +3276,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Du har allereie blokkert denne brukaren."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Lag"
|
||||
|
@ -3285,6 +3338,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Melding til %1$s på %2$s"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Lasta opp brukarbilete."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3331,79 +3389,84 @@ msgstr "Avatar-innstillingar"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Du må være innlogga for å melde deg ut av ei gruppe."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Notisen har ingen profil"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Kallenamn"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Paginering"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Beskriving"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Statistikk"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Sikker på at du vil sletta notisen?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3608,25 +3671,25 @@ msgstr "Notisstraum for %s"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "Utboks for %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3635,7 +3698,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3645,7 +3708,7 @@ msgstr ""
|
|||
"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en."
|
||||
"wikipedia.org/wiki/Micro-blogging)-teneste"
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Svar til %s"
|
||||
|
@ -4332,11 +4395,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Lasta opp brukarbilete."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4463,22 +4521,22 @@ msgstr "Du kan ikkje lengre legge inn notisar på denne sida."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Eit problem oppstod ved lagring av notis."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Eit problem oppstod ved lagring av notis."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Databasefeil, kan ikkje lagra svar: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Melding til %1$s på %2$s"
|
||||
|
@ -4768,11 +4826,11 @@ msgstr "SMS bekreftelse"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "SMS bekreftelse"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5144,20 +5202,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Ingen stadfestingskode."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Logg inn or sida"
|
||||
|
@ -5735,25 +5793,25 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Ingen innhald."
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Lag"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Svar på denne notisen"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Svar"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Melding lagra"
|
||||
|
@ -5902,6 +5960,10 @@ msgstr "Svar på denne notisen"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Svar på denne notisen"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6079,47 +6141,47 @@ msgstr "Melding"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "eit par sekund sidan"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "omtrent eitt minutt sidan"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "~%d minutt sidan"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "omtrent ein time sidan"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "~%d timar sidan"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "omtrent ein dag sidan"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "~%d dagar sidan"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "omtrent ein månad sidan"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "~%d månadar sidan"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "omtrent eitt år sidan"
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:34+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:23+0000\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: pt\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -96,7 +96,7 @@ msgstr "Página não encontrada."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -158,7 +158,7 @@ msgstr ""
|
|||
"Pode tentar [dar um toque em %1$s](../%2$s) a partir do perfil ou [publicar "
|
||||
"qualquer coisa à sua atenção](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -387,8 +387,8 @@ msgstr "Utilizador já é usado. Tente outro."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Utilizador não é válido."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -400,8 +400,8 @@ msgstr "Página de ínicio não é uma URL válida."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Nome completo demasiado longo (máx. 255 caracteres)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Descrição demasiado longa (máx. 140 caracteres)."
|
||||
|
@ -478,18 +478,23 @@ msgstr "Grupos de %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "Grupos em %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Tamanho inválido."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -500,77 +505,85 @@ msgstr ""
|
|||
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."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Nome de utilizador ou senha inválidos."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Erro ao configurar utilizador."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Erro na base de dados ao inserir a marca: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Envio inesperado de formulário."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Conta"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Utilizador"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
#, fuzzy
|
||||
msgid "Deny"
|
||||
msgstr "Estilo"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "Todas"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -739,8 +752,8 @@ msgstr "Original"
|
|||
msgid "Preview"
|
||||
msgstr "Antevisão"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Apagar"
|
||||
|
||||
|
@ -790,8 +803,9 @@ msgstr ""
|
|||
"subscrição por este utilizador será cancelada, ele não poderá subscrevê-lo "
|
||||
"de futuro e você não receberá notificações das @-respostas dele."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Não"
|
||||
|
||||
|
@ -799,9 +813,9 @@ msgstr "Não"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Não bloquear este utilizador"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Sim"
|
||||
|
||||
|
@ -906,6 +920,53 @@ msgstr "Conversação"
|
|||
msgid "Notices"
|
||||
msgstr "Notas"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Precisa de iniciar sessão para editar um grupo."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Nota não tem perfil"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Não é membro deste grupo."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Ocorreu um problema com a sua sessão."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Nota não encontrada."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"Tem a certeza de que quer apagar este utilizador? Todos os dados do "
|
||||
"utilizador serão eliminados da base de dados, sem haver cópias."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Não apagar esta nota"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Apagar esta nota"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -940,7 +1001,7 @@ msgstr "Tem a certeza de que quer apagar esta nota?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Não apagar esta nota"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Apagar esta nota"
|
||||
|
||||
|
@ -1084,7 +1145,7 @@ msgstr "Esta nota não é uma favorita!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Adicionar às favoritas"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Documento não encontrado."
|
||||
|
@ -1099,22 +1160,12 @@ msgstr "Outras opções"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Precisa de iniciar sessão para editar um grupo."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Não é membro deste grupo."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Nota não encontrada."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Ocorreu um problema com a sua sessão."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1125,48 +1176,53 @@ msgstr "Use este formulário para editar o grupo."
|
|||
msgid "Name is required."
|
||||
msgstr "Repita a senha acima. Obrigatório."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Nome completo demasiado longo (máx. 255 caracteres)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Utilizador já é usado. Tente outro."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Descrição"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "A URL ‘%s’ do avatar é inválida."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Localidade demasiado longa (máx. 255 caracteres)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
#, fuzzy
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr "A URL ‘%s’ do avatar é inválida."
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Não foi possível actualizar o grupo."
|
||||
|
@ -2106,11 +2162,11 @@ msgstr "Tem de iniciar uma sessão para criar o grupo."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Use este formulário para criar um grupo novo."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Não foi possível criar sinónimos."
|
||||
|
@ -2246,29 +2302,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Não é um membro desse grupo."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2775,19 +2831,19 @@ msgstr "Notas públicas, página %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Notas públicas"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Fonte de Notas Públicas (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Fonte de Notas Públicas (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Fonte de Notas Públicas (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
|
@ -2796,11 +2852,11 @@ msgstr ""
|
|||
"Estas são as notas públicas do site %%site.name%% mas ninguém publicou nada "
|
||||
"ainda."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Seja a primeira pessoa a publicar!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
|
@ -2808,7 +2864,7 @@ msgstr ""
|
|||
"Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a "
|
||||
"publicar!"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2821,7 +2877,7 @@ msgstr ""
|
|||
"[StatusNet](http://status.net/). [Registe-se agora](%%action.register%%) "
|
||||
"para partilhar notas sobre si, família e amigos! ([Saber mais](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3190,7 +3246,7 @@ msgstr "Não pode repetir a sua própria nota."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Já repetiu essa nota."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Repetida"
|
||||
|
||||
|
@ -3256,6 +3312,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Respostas a %1$s em %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr "Não pode impedir notas públicas neste site."
|
||||
|
@ -3300,79 +3360,84 @@ msgstr "Gravar configurações do site"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Precisa de iniciar uma sessão para deixar um grupo."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Nota não tem perfil"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Paginação"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
#, fuzzy
|
||||
msgid "Authorize URL"
|
||||
msgstr "Autor"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Tem a certeza de que quer apagar esta nota?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3590,12 +3655,12 @@ msgstr "Fonte de notas para %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF para %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "Estas são as notas de %1$s, mas %2$s ainda não publicou nenhuma."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3603,7 +3668,7 @@ msgstr ""
|
|||
"Viu algo de interessante ultimamente? Como ainda não publicou nenhuma nota, "
|
||||
"esta seria uma óptima altura para começar :)"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3612,7 +3677,7 @@ msgstr ""
|
|||
"Pode tentar dar um toque em %1$s ou [publicar algo à sua atenção](%%%%action."
|
||||
"newnotice%%%%?status_textarea=%2$s)."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3626,7 +3691,7 @@ msgstr ""
|
|||
"register%%) para seguir as notas de **%s** e de muitos mais! ([Saber mais](%%"
|
||||
"doc.help%%))"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3637,7 +3702,7 @@ msgstr ""
|
|||
"(http://en.wikipedia.org/wiki/Micro-blogging) baseado no programa de "
|
||||
"Software Livre [StatusNet](http://status.net/). "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Repetência de %s"
|
||||
|
@ -4316,10 +4381,6 @@ msgstr ""
|
|||
"Este site utiliza o %1$s versão %2$s, (c) 2008-2010 StatusNet, Inc. e "
|
||||
"colaboradores."
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr "Colaboradores"
|
||||
|
@ -4456,22 +4517,22 @@ msgstr "Está proibido de publicar notas neste site."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Problema na gravação da nota."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Problema na gravação da nota."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "%1$s dá-lhe as boas-vindas, @%2$s!"
|
||||
|
@ -4748,11 +4809,11 @@ msgstr "Configuração das localizações"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Configuração do estilo"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5155,19 +5216,19 @@ msgstr ""
|
|||
"tracks - ainda não implementado.\n"
|
||||
"tracking - ainda não implementado.\n"
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Ficheiro de configuração não encontrado. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr "Procurei ficheiros de configuração nos seguintes sítios: "
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr "Talvez queira correr o instalador para resolver esta questão."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Ir para o instalador."
|
||||
|
||||
|
@ -5813,23 +5874,23 @@ msgstr "O"
|
|||
msgid "at"
|
||||
msgstr "coords."
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "no contexto"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Repetida por"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Responder a esta nota"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Responder"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Nota repetida"
|
||||
|
||||
|
@ -5970,6 +6031,10 @@ msgstr "Repetir esta nota?"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Repetir esta nota"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr "Bloquear notas públicas"
|
||||
|
@ -6135,47 +6200,47 @@ msgstr "Mensagem"
|
|||
msgid "Moderate"
|
||||
msgstr "Moderar"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "há alguns segundos"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "há cerca de um minuto"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "há cerca de %d minutos"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "há cerca de uma hora"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "há cerca de %d horas"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "há cerca de um dia"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "há cerca de %d dias"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "há cerca de um mês"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "há cerca de %d meses"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "há cerca de um ano"
|
||||
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:37+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:27+0000\n"
|
||||
"Language-Team: Brazilian Portuguese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: pt-br\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -97,7 +97,7 @@ msgstr "Esta página não existe."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -161,7 +161,7 @@ msgstr ""
|
|||
"[publicar alguma coisa que desperte seu interesse](%%%%action.newnotice%%%%?"
|
||||
"status_textarea=%3$s)."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -393,8 +393,8 @@ msgstr "Esta identificação já está em uso. Tente outro."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Não é uma identificação válida."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -406,8 +406,8 @@ msgstr "A URL informada não é válida."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Nome completo muito extenso (máx. 255 caracteres)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Descrição muito extensa (máximo %d caracteres)."
|
||||
|
@ -484,18 +484,23 @@ msgstr "Grupos de %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "grupos no %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
msgstr "Requisição errada."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Tamanho inválido."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -507,23 +512,23 @@ 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."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Nome de usuário e/ou senha inválido(s)!"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr ""
|
||||
"Erro no banco de dados durante a exclusão do aplicativo OAuth do usuário."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr ""
|
||||
"Erro no banco de dados durante a inserção do aplicativo OAuth do usuário."
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
|
@ -532,53 +537,61 @@ msgstr ""
|
|||
"O token de requisição %s foi autorizado. Por favor, troque-o por um token de "
|
||||
"acesso."
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, fuzzy, php-format
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr "O token de requisição %s foi negado."
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Submissão inesperada de formulário."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr "Uma aplicação gostaria de se conectar à sua conta"
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr "Permitir ou negar o acesso"
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Conta"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Usuário"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "Negar"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "Permitir"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr "Permitir ou negar o acesso às informações da sua conta."
|
||||
|
||||
|
@ -748,8 +761,8 @@ msgstr "Original"
|
|||
msgid "Preview"
|
||||
msgstr "Visualização"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Excluir"
|
||||
|
||||
|
@ -800,8 +813,9 @@ msgstr ""
|
|||
"nenhuma notificação acerca de qualquer citação (@usuário) que ele fizer de "
|
||||
"você."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Não"
|
||||
|
||||
|
@ -809,9 +823,9 @@ msgstr "Não"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Não bloquear este usuário"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Sim"
|
||||
|
||||
|
@ -915,6 +929,52 @@ msgstr "Conversa"
|
|||
msgid "Notices"
|
||||
msgstr "Mensagens"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Você precisa estar autenticado para editar uma aplicação."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Informação da aplicação"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Você não é o dono desta aplicação."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Ocorreu um problema com o seu token de sessão."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Editar a aplicação"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"Tem certeza que deseja excluir este usuário? Isso irá eliminar todos os "
|
||||
"dados deste usuário do banco de dados, sem cópia de segurança."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Não excluir esta mensagem."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Ícone para esta aplicação"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -949,7 +1009,7 @@ msgstr "Tem certeza que deseja excluir esta mensagem?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Não excluir esta mensagem."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Excluir esta mensagem"
|
||||
|
||||
|
@ -1093,7 +1153,7 @@ msgstr "Esta mensagem não é uma favorita!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Adicionar às favoritas"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Esse documento não existe."
|
||||
|
@ -1107,20 +1167,11 @@ msgstr "Editar a aplicação"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Você precisa estar autenticado para editar uma aplicação."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Você não é o dono desta aplicação."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "Essa aplicação não existe."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Ocorreu um problema com o seu token de sessão."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "Use este formulário para editar a sua aplicação."
|
||||
|
@ -1129,43 +1180,48 @@ msgstr "Use este formulário para editar a sua aplicação."
|
|||
msgid "Name is required."
|
||||
msgstr "O nome é obrigatório."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "O nome é muito extenso (máx. 255 caracteres)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Esta identificação já está em uso. Tente outro."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "A descrição é obrigatória."
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr "A URL da fonte é muito extensa."
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "A URL da fonte não é válida."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr "A organização é obrigatória."
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "A organização é muito extensa (máx. 255 caracteres)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr "O site da organização é obrigatório."
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr "O retorno é muito extenso."
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr "A URL de retorno não é válida."
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr "Não foi possível atualizar a aplicação."
|
||||
|
||||
|
@ -2109,11 +2165,11 @@ msgstr "Você deve estar autenticado para registrar uma aplicação."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Utilize este formulário para registrar uma nova aplicação."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr "A URL da fonte é obrigatória."
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr "Não foi possível criar a aplicação."
|
||||
|
||||
|
@ -2249,28 +2305,28 @@ msgstr "Aplicações que você registrou"
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr "Você ainda não registrou nenhuma aplicação."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr "Aplicações conectadas"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr "Você permitiu que as seguintes aplicações acessem a sua conta."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Você não é um usuário dessa aplicação."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr "Não foi possível revogar o acesso para a aplicação: "
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr "Você não autorizou nenhuma aplicação a usar a sua conta."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
"Os desenvolvedores podem editar as configurações de registro para suas "
|
||||
|
@ -2775,19 +2831,19 @@ msgstr "Mensagens públicas, pág. %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Mensagens públicas"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Fonte de mensagens públicas (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Fonte de mensagens públicas (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Fonte de mensagens públicas (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
|
@ -2796,11 +2852,11 @@ msgstr ""
|
|||
"Esse é o fluxo de mensagens públicas de %%site.name%%, mas ninguém publicou "
|
||||
"nada ainda."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Seja o primeiro a publicar!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
|
@ -2808,7 +2864,7 @@ msgstr ""
|
|||
"Por que você não [registra uma conta](%%action.register%%) pra ser o "
|
||||
"primeiro a publicar?"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2821,7 +2877,7 @@ msgstr ""
|
|||
"[Cadastre-se agora](%%action.register%%) para compartilhar notícias sobre "
|
||||
"você com seus amigos, família e colegas! ([Saiba mais](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3190,7 +3246,7 @@ msgstr "Você não pode repetir sua própria mensagem."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Você já repetiu essa mensagem."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Repetida"
|
||||
|
||||
|
@ -3257,6 +3313,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Respostas para %1$s no %2$s"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr "Você não pode colocar usuários deste site em isolamento."
|
||||
|
@ -3300,71 +3360,71 @@ msgstr "Salvar as configurações do site"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Você deve estar autenticado para visualizar uma aplicação."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr "Perfil da aplicação"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr "Ícone"
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "Organização"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Estatísticas"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
#: actions/showapplication.php:203
|
||||
#, fuzzy, php-format
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "criado por %1$s - %2$s acessa por padrão - %3$d usuários"
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr "Ações da aplicação"
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr "Restaurar a chave e o segredo"
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr "Informação da aplicação"
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr "Chave do consumidor"
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr "Segredo do consumidor"
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr "URL do token de requisição"
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr "URL do token de acesso"
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr "Autorizar a URL"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
|
@ -3372,6 +3432,11 @@ msgstr ""
|
|||
"Nota: Nós suportamos assinaturas HMAC-SHA1. Nós não suportamos o método de "
|
||||
"assinatura em texto plano."
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Tem certeza que deseja excluir esta mensagem?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3589,14 +3654,14 @@ msgstr "Fonte de mensagens de %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF de %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
"Este é o fluxo público de mensagens de %1$s, mas %2$s não publicou nada "
|
||||
"ainda."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3604,7 +3669,7 @@ msgstr ""
|
|||
"Viu alguma coisa interessante recentemente? Você ainda não publicou nenhuma "
|
||||
"mensagem. Que tal começar agora? :)"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3613,7 +3678,7 @@ msgstr ""
|
|||
"Você pode tentar chamar a atenção de %1$s ou [publicar alguma coisa que "
|
||||
"desperte seu interesse](%%%%action.newnotice%%%%?status_textarea=%2$s)."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3627,7 +3692,7 @@ msgstr ""
|
|||
"acompanhar as mensagens de **%s** e muito mais! ([Saiba mais](%%%%doc.help%%%"
|
||||
"%))"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3638,7 +3703,7 @@ msgstr ""
|
|||
"pt.wikipedia.org/wiki/Micro-blogging) baseado no software livre [StatusNet]"
|
||||
"(http://status.net/). "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Repetição de %s"
|
||||
|
@ -4318,10 +4383,6 @@ msgstr ""
|
|||
"Este site funciona sobre %1$s versão %2$s, Copyright 2008-2010 StatusNet, "
|
||||
"Inc. e colaboradores."
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr "Colaboradores"
|
||||
|
@ -4455,22 +4516,22 @@ msgstr "Você está proibido de publicar mensagens neste site."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Problema no salvamento da mensagem."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Problema no salvamento da mensagem."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Erro no banco de dados na inserção da reposta: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Bem vindo(a) a %1$s, @%2$s!"
|
||||
|
@ -4749,11 +4810,11 @@ msgstr "Configuração dos caminhos"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Configuração da aparência"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5155,19 +5216,19 @@ msgstr ""
|
|||
"tracks - não implementado ainda\n"
|
||||
"tracking - não implementado ainda\n"
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Não foi encontrado nenhum arquivo de configuração. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr "Eu procurei pelos arquivos de configuração nos seguintes lugares: "
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr "Você pode querer executar o instalador para corrigir isto."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Ir para o instalador."
|
||||
|
||||
|
@ -5815,23 +5876,23 @@ msgstr "O"
|
|||
msgid "at"
|
||||
msgstr "em"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "no contexto"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Repetida por"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Responder a esta mensagem"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Responder"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Mensagem repetida"
|
||||
|
||||
|
@ -5972,6 +6033,10 @@ msgstr "Repetir esta mensagem?"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Repetir esta mensagem"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr "Isolamento"
|
||||
|
@ -6137,47 +6202,47 @@ msgstr "Mensagem"
|
|||
msgid "Moderate"
|
||||
msgstr "Moderar"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "alguns segundos atrás"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "cerca de 1 minuto atrás"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "cerca de %d minutos atrás"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "cerca de 1 hora atrás"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "cerca de %d horas atrás"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "cerca de 1 dia atrás"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "cerca de %d dias atrás"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "cerca de 1 mês atrás"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "cerca de %d meses atrás"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "cerca de 1 ano atrás"
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# Translation of StatusNet to Russian
|
||||
#
|
||||
# Author@translatewiki.net: Brion
|
||||
# Author@translatewiki.net: Kirill
|
||||
# Author@translatewiki.net: Lockal
|
||||
# Author@translatewiki.net: Rubin
|
||||
# Author@translatewiki.net: Александр Сигачёв
|
||||
|
@ -11,12 +12,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:40+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:30+0000\n"
|
||||
"Language-Team: Russian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ru\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -97,7 +98,7 @@ msgstr "Нет такой страницы"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -159,7 +160,7 @@ msgstr ""
|
|||
"что-нибудь для привлечения его или её внимания](%%%%action.newnotice%%%%?"
|
||||
"status_textarea=%3$s)."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -392,8 +393,8 @@ msgstr "Такое имя уже используется. Попробуйте
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Неверное имя."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -405,8 +406,8 @@ msgstr "URL Главной страницы неверен."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Полное имя слишком длинное (не больше 255 знаков)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Слишком длинное описание (максимум %d символов)"
|
||||
|
@ -483,18 +484,22 @@ msgstr "Группы %s"
|
|||
msgid "groups on %s"
|
||||
msgstr "группы на %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
msgstr "Неверный запрос."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr "Не задан параметр oauth_token."
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
msgid "Invalid token."
|
||||
msgstr "Неправильный токен"
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -505,19 +510,19 @@ msgstr "Неверный запрос."
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Неверное имя или пароль."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Ошибка базы данных при удалении пользователя приложения OAuth."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Ошибка базы данных при добавлении пользователя приложения OAuth."
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
|
@ -525,53 +530,65 @@ msgid ""
|
|||
msgstr ""
|
||||
"Ключ запроса %s авторизован. Пожалуйста, обменяйте его на ключ доступа."
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgstr "Ключ запроса %s отклонён."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr "Запрос токена %s был запрещен и аннулирован."
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Нетиповое подтверждение формы."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr "Приложение хочет соединиться с вашей учётной записью"
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr "Разрешить или запретить доступ"
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
"Приложение <strong>%1$s</strong> от <strong>%2$s</strong> просит разрешение "
|
||||
"на<strong>%3$s</strong> данных вашей учётной записи%4$s . Вы должны "
|
||||
"предоставлять разрешение на доступ к вашей учётной записи %4$s только тем "
|
||||
"сторонним приложениям, которым вы доверяете."
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Имя"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "Запретить"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "Разрешить"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr "Разрешить или запретить доступ к информации вашей учётной записи."
|
||||
|
||||
|
@ -741,8 +758,8 @@ msgstr "Оригинал"
|
|||
msgid "Preview"
|
||||
msgstr "Просмотр"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Удалить"
|
||||
|
||||
|
@ -792,8 +809,9 @@ msgstr ""
|
|||
"будет отписан от вас без возможности подписаться в будущем, а вам не будут "
|
||||
"приходить уведомления об @-ответах от него."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Нет"
|
||||
|
||||
|
@ -801,9 +819,9 @@ msgstr "Нет"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Не блокировать этого пользователя"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Да"
|
||||
|
||||
|
@ -907,6 +925,47 @@ msgstr "Дискуссия"
|
|||
msgid "Notices"
|
||||
msgstr "Записи"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Вы должны войти в систему, чтобы удалить приложение."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
msgid "Application not found."
|
||||
msgstr "Приложение не найдено."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Вы не являетесь владельцем этого приложения."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
msgid "Delete application"
|
||||
msgstr "Удалить приложение"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"Вы уверены, что хотите удалить это приложение? Это очистит все данные о "
|
||||
"применении из базы данных, включая все существующие подключения "
|
||||
"пользователей."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Не удаляйте это приложение"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
msgid "Delete this application"
|
||||
msgstr "Удалить это приложение"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -941,7 +1000,7 @@ msgstr "Вы уверены, что хотите удалить эту запи
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Не удалять эту запись"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Удалить эту запись"
|
||||
|
||||
|
@ -1085,7 +1144,7 @@ msgstr "Эта запись не входит в число ваших люби
|
|||
msgid "Add to favorites"
|
||||
msgstr "Добавить в любимые"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Нет такого документа «%s»"
|
||||
|
@ -1098,20 +1157,11 @@ msgstr "Изменить приложение"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Вы должны авторизоваться, чтобы изменить приложение."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Вы не являетесь владельцем этого приложения."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "Нет такого приложения."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "Воспользуйтесь этой формой, чтобы изменить приложение."
|
||||
|
@ -1120,43 +1170,47 @@ msgstr "Воспользуйтесь этой формой, чтобы изме
|
|||
msgid "Name is required."
|
||||
msgstr "Имя обязательно."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Имя слишком длинное (не больше 255 знаков)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "Описание обязательно."
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr "URL источника слишком длинный."
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "URL источника недействителен."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr "Организация обязательна."
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Слишком длинное название организации (максимум 255 знаков)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr "Домашняя страница организации обязательна."
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr "Обратный вызов слишком длинный."
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr "URL-адрес обратного вызова недействителен."
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr "Не удаётся обновить приложение."
|
||||
|
||||
|
@ -2099,11 +2153,11 @@ msgstr "Вы должны авторизоваться, чтобы зареги
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Используйте эту форму для создания нового приложения."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr "URL источника обязателен."
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr "Не удаётся создать приложение."
|
||||
|
||||
|
@ -2236,28 +2290,28 @@ msgstr "Приложения, которые вы зарегистрировал
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr "Вы пока не зарегистрировали ни одного приложения."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr "Подключённые приложения"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr "Вы разрешили доступ к учётной записи следующим приложениям."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Вы не являетесь пользователем этого приложения."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr "Не удаётся отозвать права для приложения: "
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr "Вы не разрешили приложениям использовать вашу учётную запись."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr "Разработчики могут изменять настройки регистрации своих приложений "
|
||||
|
||||
|
@ -2757,30 +2811,30 @@ msgstr "Общая лента, страница %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Общая лента"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Лента публичного потока (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Лента публичного потока (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Лента публичного потока (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr "Это общая лента %%site.name%%, однако пока никто ничего не отправил."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Создайте первую запись!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
|
@ -2788,7 +2842,7 @@ msgstr ""
|
|||
"Почему бы не [зарегистрироваться](%%action.register%%), чтобы стать первым "
|
||||
"отправителем?"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2802,7 +2856,7 @@ msgstr ""
|
|||
"register%%), чтобы держать в курсе своих событий поклонников, друзей, "
|
||||
"родственников и коллег! ([Читать далее](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3168,7 +3222,7 @@ msgstr "Вы не можете повторить собственную зап
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Вы уже повторили эту запись."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Повторено"
|
||||
|
||||
|
@ -3234,6 +3288,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Ответы на записи %1$s на %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr ""
|
||||
|
@ -3249,9 +3307,8 @@ msgid "Sessions"
|
|||
msgstr "Сессии"
|
||||
|
||||
#: actions/sessionsadminpanel.php:65
|
||||
#, fuzzy
|
||||
msgid "Session settings for this StatusNet site."
|
||||
msgstr "Настройки оформления для этого сайта StatusNet."
|
||||
msgstr "Настройки сессии для этого сайта StatusNet."
|
||||
|
||||
#: actions/sessionsadminpanel.php:175
|
||||
msgid "Handle sessions"
|
||||
|
@ -3278,71 +3335,71 @@ msgstr "Сохранить настройки сайта"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Вы должны авторизоваться, чтобы просматривать приложения."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr "Профиль приложения"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr "Иконка"
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Имя"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "Организация"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "создано %1$s — %2$s доступ по умолчанию — %3$d польз."
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз."
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr "Действия приложения"
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr "Сбросить ключ и секретную фразу"
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr "Информация о приложении"
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr "Потребительский ключ"
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr "Секретная фраза потребителя"
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr "URL ключа запроса"
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr "URL ключа доступа"
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr "URL авторизации"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
|
@ -3350,6 +3407,11 @@ msgstr ""
|
|||
"Примечание: Мы поддерживаем подписи HMAC-SHA1. Мы не поддерживаем метод "
|
||||
"подписи открытым текстом."
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Вы уверены, что хотите удалить эту запись?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3566,12 +3628,12 @@ msgstr "Лента записей для %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF для %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "Это лента %1$s, однако %2$s пока ничего не отправил."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3579,7 +3641,7 @@ msgstr ""
|
|||
"Видели недавно что-нибудь интересное? Вы ещё не отправили ни одной записи, "
|
||||
"сейчас хорошее время для начала :)"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3589,7 +3651,7 @@ msgstr ""
|
|||
"привлечения его или её внимания](%%%%action.newnotice%%%%?status_textarea=%2"
|
||||
"$s)."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3604,7 +3666,7 @@ msgstr ""
|
|||
"сообщения участника **%s** и иметь доступ ко множеству других возможностей! "
|
||||
"([Читать далее](%%%%doc.help%%%%))"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3616,7 +3678,7 @@ msgstr ""
|
|||
"использованием свободного программного обеспечения [StatusNet](http://status."
|
||||
"net/)."
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Повтор за %s"
|
||||
|
@ -4297,10 +4359,6 @@ msgstr ""
|
|||
"Этот сайт создан на основе %1$s версии %2$s, Copyright 2008-2010 StatusNet, "
|
||||
"Inc. и участники."
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr "Разработчики"
|
||||
|
@ -4434,21 +4492,21 @@ msgstr "Вам запрещено поститься на этом сайте (
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Проблемы с сохранением записи."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Проблемы с сохранением входящих сообщений группы."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Ошибка баз данных при вставке ответа для %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Добро пожаловать на %1$s, @%2$s!"
|
||||
|
@ -4636,8 +4694,8 @@ msgid ""
|
|||
"s, available under the [GNU Affero General Public License](http://www.fsf."
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
msgstr ""
|
||||
"Этот сервис работает при помощи [StatusNet](http://status.net/) - "
|
||||
"программного обеспечения для микроблогинга, версии %s, доступного под "
|
||||
"Этот сервис работает при помощи [StatusNet](http://status.net/) — "
|
||||
"программного обеспечения для микроблоггинга, версии %s, доступного под "
|
||||
"лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/"
|
||||
"licenses/agpl-3.0.html)."
|
||||
|
||||
|
@ -4723,17 +4781,16 @@ msgid "Paths configuration"
|
|||
msgstr "Конфигурация путей"
|
||||
|
||||
#: lib/adminpanelaction.php:337
|
||||
#, fuzzy
|
||||
msgid "Sessions configuration"
|
||||
msgstr "Конфигурация оформления"
|
||||
msgstr "Конфигурация сессий"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
"API ресурса требует доступ для чтения и записи, но у вас есть только доступ "
|
||||
"для чтения."
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5135,19 +5192,19 @@ msgstr ""
|
|||
"tracks — пока не реализовано.\n"
|
||||
"tracking — пока не реализовано.\n"
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Конфигурационный файл не найден. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr "Конфигурационные файлы искались в следующих местах: "
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr "Возможно, вы решите запустить установщик для исправления этого."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Перейти к установщику"
|
||||
|
||||
|
@ -5793,23 +5850,23 @@ msgstr "з. д."
|
|||
msgid "at"
|
||||
msgstr "на"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "в контексте"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Повторено"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Ответить на эту запись"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Ответить"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Запись повторена"
|
||||
|
||||
|
@ -5950,6 +6007,10 @@ msgstr "Повторить эту запись?"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Повторить эту запись"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr "Ни задан пользователь для однопользовательского режима."
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr "Песочница"
|
||||
|
@ -6115,47 +6176,47 @@ msgstr "Сообщение"
|
|||
msgid "Moderate"
|
||||
msgstr "Модерировать"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "пару секунд назад"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "около минуты назад"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "около %d минут(ы) назад"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "около часа назад"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "около %d часа(ов) назад"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "около дня назад"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "около %d дня(ей) назад"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "около месяца назад"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "около %d месяца(ев) назад"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "около года назад"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -90,7 +90,7 @@ msgstr ""
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -147,7 +147,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -369,8 +369,8 @@ msgstr ""
|
|||
msgid "Not a valid nickname."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -382,8 +382,8 @@ msgstr ""
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
@ -460,18 +460,22 @@ msgstr ""
|
|||
msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
msgid "Invalid token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -482,72 +486,80 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -716,8 +728,8 @@ msgstr ""
|
|||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
@ -764,8 +776,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
|
@ -773,9 +786,9 @@ msgstr ""
|
|||
msgid "Do not block this user"
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
|
@ -879,6 +892,44 @@ msgstr ""
|
|||
msgid "Notices"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
msgid "Application not found."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
msgid "Delete application"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
msgid "Do not delete this application"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
msgid "Delete this application"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -911,7 +962,7 @@ msgstr ""
|
|||
msgid "Do not delete this notice"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1051,7 +1102,7 @@ msgstr ""
|
|||
msgid "Add to favorites"
|
||||
msgstr ""
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr ""
|
||||
|
@ -1064,20 +1115,11 @@ msgstr ""
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr ""
|
||||
|
@ -1086,43 +1128,47 @@ msgstr ""
|
|||
msgid "Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr ""
|
||||
|
||||
|
@ -1976,11 +2022,11 @@ msgstr ""
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2105,28 +2151,28 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2618,36 +2664,36 @@ msgstr ""
|
|||
msgid "Public timeline"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2656,7 +2702,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2985,7 +3031,7 @@ msgstr ""
|
|||
msgid "You already repeated that notice."
|
||||
msgstr ""
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3045,6 +3091,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr ""
|
||||
|
@ -3087,76 +3137,80 @@ msgstr ""
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3356,25 +3410,25 @@ msgstr ""
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3383,7 +3437,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3391,7 +3445,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr ""
|
||||
|
@ -4031,10 +4085,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4152,21 +4202,21 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
@ -4435,11 +4485,11 @@ msgstr ""
|
|||
msgid "Sessions configuration"
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -4795,19 +4845,19 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5358,23 +5408,23 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5515,6 +5565,10 @@ msgstr ""
|
|||
msgid "Repeat this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5680,47 +5734,47 @@ msgstr ""
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:45+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:34+0000\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: sv\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -94,7 +94,7 @@ msgstr "Ingen sådan sida"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -107,7 +107,7 @@ msgstr "Ingen sådan användare."
|
|||
#: actions/all.php:84
|
||||
#, php-format
|
||||
msgid "%1$s and friends, page %2$d"
|
||||
msgstr "%1$s blockerade profiler, sida %2$d"
|
||||
msgstr "%1$s och vänner, sida %2$d"
|
||||
|
||||
#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115
|
||||
#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115
|
||||
|
@ -156,7 +156,7 @@ msgstr ""
|
|||
"någonting för hans eller hennes uppmärksamhet](%%%%action.newnotice%%%%?"
|
||||
"status_textarea=%3$s)."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -280,7 +280,7 @@ msgstr "Hävning av blockering av användare misslyckades."
|
|||
#: actions/apidirectmessage.php:89
|
||||
#, php-format
|
||||
msgid "Direct messages from %s"
|
||||
msgstr "Direktmeddelande från %s"
|
||||
msgstr "Direktmeddelanden från %s"
|
||||
|
||||
#: actions/apidirectmessage.php:93
|
||||
#, php-format
|
||||
|
@ -383,8 +383,8 @@ msgstr "Smeknamnet används redan. Försök med ett annat."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Inte ett giltigt smeknamn."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -396,8 +396,8 @@ msgstr "Hemsida är inte en giltig URL."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Fullständigt namn är för långt (max 255 tecken)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Beskrivning är för lång (max 140 tecken)."
|
||||
|
@ -474,18 +474,22 @@ msgstr "%s grupper"
|
|||
msgid "groups on %s"
|
||||
msgstr "grupper på %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
msgstr "Dålig förfrågan."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr "Ingen oauth_token-parameter angiven."
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
msgid "Invalid token."
|
||||
msgstr "Ogiltig token."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -496,72 +500,83 @@ msgstr "Dålig förfrågan."
|
|||
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."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Ogiltigt smeknamn / lösenord!"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Databasfel vid borttagning av OAuth-applikationsanvändare."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Databasfel vid infogning av OAuth-applikationsanvändare."
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr "Begäran-token %s har godkänts. Byt ut den mot en åtkomst-token."
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgstr "Begäran-token %s har nekats."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr "Begäran-token %s har nekats och återkallats."
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Oväntat inskick av formulär."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr "En applikation skulle vilja ansluta till ditt konto"
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr "Tillåt eller neka åtkomst"
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
"Applikationen <strong>%1$s</strong> av <strong>%2$s</strong> vill att "
|
||||
"möjligheten att <strong>%3$s</strong> din %4$s kontoinformation. Du bör bara "
|
||||
"ge tillgång till ditt %4$s-konto till tredje-parter du litar på."
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Smeknamn"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Lösenord"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "Neka"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "Tillåt"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr "Tillåt eller neka åtkomst till din kontoinformation."
|
||||
|
||||
|
@ -731,8 +746,8 @@ msgstr "Orginal"
|
|||
msgid "Preview"
|
||||
msgstr "Förhandsgranska"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Ta bort"
|
||||
|
||||
|
@ -782,8 +797,9 @@ msgstr ""
|
|||
"prenumeration på dig tas bort, de kommer inte kunna prenumerera på dig i "
|
||||
"framtiden och du kommer inte bli underrättad om några @-svar från dem."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Nej"
|
||||
|
||||
|
@ -791,9 +807,9 @@ msgstr "Nej"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Blockera inte denna användare"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Ja"
|
||||
|
||||
|
@ -898,6 +914,47 @@ msgstr "Konversationer"
|
|||
msgid "Notices"
|
||||
msgstr "Notiser"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Du måste vara inloggad för att ta bort en applikation."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
msgid "Application not found."
|
||||
msgstr "Applikation hittades inte."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Du är inte ägaren av denna applikation."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Det var ett problem med din sessions-token."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
msgid "Delete application"
|
||||
msgstr "Ta bort applikation"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"Är du säker på att du vill ta bort denna applikation? Detta kommer rensa "
|
||||
"bort all data om applikationen från databasen, inklusive alla befintliga "
|
||||
"användaranslutningar."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Ta inte bort denna applikation"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
msgid "Delete this application"
|
||||
msgstr "Ta bort denna applikation"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -932,7 +989,7 @@ msgstr "Är du säker på att du vill ta bort denna notis?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Ta inte bort denna notis"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Ta bort denna notis"
|
||||
|
||||
|
@ -1076,7 +1133,7 @@ msgstr "Denna notis är inte en favorit!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Lägg till i favoriter"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Inget sådant dokument \"%s\""
|
||||
|
@ -1089,20 +1146,11 @@ msgstr "Redigera applikation"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Du måste vara inloggad för att redigera en applikation."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Du är inte ägaren av denna applikation."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "Ingen sådan applikation."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Det var ett problem med din sessions-token."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "Använd detta formulär för att redigera din applikation."
|
||||
|
@ -1111,43 +1159,47 @@ msgstr "Använd detta formulär för att redigera din applikation."
|
|||
msgid "Name is required."
|
||||
msgstr "Namn krävs."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Namnet är för långt (max 255 tecken)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Namnet används redan. Prova ett annat."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "Beskrivning krävs."
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr "URL till källa är för lång."
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "URL till källa är inte giltig."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr "Organisation krävs."
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Organisation är för lång (max 255 tecken)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr "Hemsida för organisation krävs."
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr "Anrop är för lång."
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr "URL för anrop är inte giltig."
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr "Kunde inte uppdatera applikation."
|
||||
|
||||
|
@ -2078,11 +2130,11 @@ msgstr "Du måste vara inloggad för att registrera en applikation."
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Använd detta formulär för att registrera en ny applikation."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr "URL till källa krävs."
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr "Kunde inte skapa applikation."
|
||||
|
||||
|
@ -2217,28 +2269,28 @@ msgstr "Applikationer du har registrerat"
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr "Du har inte registrerat några applikationer än."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr "Anslutna applikationer"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr "Du har tillåtit följande applikationer att komma åt ditt konto."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Du är inte en användare av den applikationen."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr "Kunde inte återkalla åtkomst för applikation: "
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr "Du har inte tillåtit några applikationer att använda ditt konto."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
"Utvecklare kan redigera registreringsinställningarna för sina applikationer "
|
||||
|
@ -2740,19 +2792,19 @@ msgstr "Publik tidslinje, sida %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Publik tidslinje"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Publikt flöde av ström (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Publikt flöde av ström (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Publikt flöde av ström (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
|
@ -2761,11 +2813,11 @@ msgstr ""
|
|||
"Detta är den publika tidslinjen för %%site.name%% men ingen har postat något "
|
||||
"än."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Bli först att posta!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
|
@ -2773,7 +2825,7 @@ msgstr ""
|
|||
"Varför inte [registrera ett konto](%%action.register%%) och bli först att "
|
||||
"posta!"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2786,7 +2838,7 @@ msgstr ""
|
|||
"net/). [Gå med nu](%%action.register%%) för att dela notiser om dig själv "
|
||||
"med vänner, familj och kollegor! ([Läs mer](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3155,7 +3207,7 @@ msgstr "Du kan inte upprepa din egna notis."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Du har redan upprepat denna notis."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Upprepad"
|
||||
|
||||
|
@ -3221,6 +3273,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Svar till %1$s på %2$s"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr "Du kan inte flytta användare till sandlådan på denna webbplats."
|
||||
|
@ -3235,9 +3291,8 @@ msgid "Sessions"
|
|||
msgstr "Sessioner"
|
||||
|
||||
#: actions/sessionsadminpanel.php:65
|
||||
#, fuzzy
|
||||
msgid "Session settings for this StatusNet site."
|
||||
msgstr "Utseendeinställningar för denna StatusNet-webbplats."
|
||||
msgstr "Sessionsinställningar för denna StatusNet-webbplats."
|
||||
|
||||
#: actions/sessionsadminpanel.php:175
|
||||
msgid "Handle sessions"
|
||||
|
@ -3264,71 +3319,71 @@ msgstr "Spara webbplatsinställningar"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Du måste vara inloggad för att se en applikation."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr "Applikationsprofil"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr "Ikon"
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Namn"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "Organisation"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Beskrivning"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "skapad av %1$s - %2$s standardåtkomst - %3$d användare"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "Skapad av %1$s - %2$s standardåtkomst - %3$d användare"
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr "Åtgärder för applikation"
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr "Återställ nyckel & hemlighet"
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr "Information om applikation"
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr "Nyckel för konsument"
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr "Hemlighet för konsument"
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr "URL för begäran-token"
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr "URL för åtkomst-token"
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr "Tillåt URL"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
|
@ -3336,6 +3391,11 @@ msgstr ""
|
|||
"Notera: Vi stöjder HMAC-SHA1-signaturer. Vi stödjer inte metoden med "
|
||||
"klartextsignatur."
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Är du säker på att du vill ta bort denna notis?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3552,12 +3612,12 @@ msgstr "Flöde av notiser för %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF för %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "Detta är tidslinjen för %1$s men %2$s har inte postat något än."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3565,7 +3625,7 @@ msgstr ""
|
|||
"Sett något intressant nyligen? Du har inte postat några notiser än. Varför "
|
||||
"inte börja nu?"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3574,7 +3634,7 @@ msgstr ""
|
|||
"Du kan prova att knuffa %1$s eller [posta något för hans eller hennes "
|
||||
"uppmärksamhet](%%%%action.newnotice%%%%?status_textarea=%2$s)."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3587,7 +3647,7 @@ msgstr ""
|
|||
"[StatusNet](http://status.net/). [Gå med nu](%%%%action.register%%%%) för "
|
||||
"att följa **%s**s notiser och många fler! ([Läs mer](%%%%doc.help%%%%))"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3598,7 +3658,7 @@ msgstr ""
|
|||
"wikipedia.org/wiki/Micro-blogging)tjänst baserad på den fria programvaran "
|
||||
"[StatusNet](http://status.net/). "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Upprepning av %s"
|
||||
|
@ -4278,10 +4338,6 @@ msgstr ""
|
|||
"Denna webbplats drivs med %1$s version %2$s, Copyright 2008-2010 StatusNet, "
|
||||
"Inc. och medarbetare."
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr "Medarbetare"
|
||||
|
@ -4415,21 +4471,21 @@ msgstr "Du är utestängd från att posta notiser på denna webbplats."
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Problem med att spara notis."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Problem med att spara gruppinkorg."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Databasfel vid infogning av svar: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Välkommen till %1$s, @%2$s!"
|
||||
|
@ -4701,16 +4757,15 @@ msgid "Paths configuration"
|
|||
msgstr "Konfiguration av sökvägar"
|
||||
|
||||
#: lib/adminpanelaction.php:337
|
||||
#, fuzzy
|
||||
msgid "Sessions configuration"
|
||||
msgstr "Konfiguration av utseende"
|
||||
msgstr "Konfiguration av sessioner"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
"API-resursen kräver läs- och skrivrättigheter, men du har bara läsrättighet."
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5110,19 +5165,19 @@ msgstr ""
|
|||
"tracks - inte implementerat än.\n"
|
||||
"tracking - inte implementerat än.\n"
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Ingen konfigurationsfil hittades. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr "Jag letade efter konfigurationsfiler på följande platser: "
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr "Du kanske vill köra installeraren för att åtgärda detta."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Gå till installeraren."
|
||||
|
||||
|
@ -5766,23 +5821,23 @@ msgstr "V"
|
|||
msgid "at"
|
||||
msgstr "på"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "i sammanhang"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Upprepad av"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Svara på denna notis"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Svara"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Notis upprepad"
|
||||
|
||||
|
@ -5923,6 +5978,10 @@ msgstr "Upprepa denna notis?"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Upprepa denna notis"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr "Ingen enskild användare definierad för enanvändarläge."
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr "Flytta till sandlådan"
|
||||
|
@ -6088,47 +6147,47 @@ msgstr "Meddelande"
|
|||
msgid "Moderate"
|
||||
msgstr "Moderera"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "ett par sekunder sedan"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "för nån minut sedan"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "för %d minuter sedan"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "för en timma sedan"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "för %d timmar sedan"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "för en dag sedan"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "för %d dagar sedan"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "för en månad sedan"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "för %d månader sedan"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "för ett år sedan"
|
||||
|
||||
|
|
|
@ -8,12 +8,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:48+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:37+0000\n"
|
||||
"Language-Team: Telugu\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: te\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -95,7 +95,7 @@ msgstr "అటువంటి పేజీ లేదు"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -152,7 +152,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -381,8 +381,8 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "సరైన పేరు కాదు."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -394,8 +394,8 @@ msgstr "హోమ్ పేజీ URL సరైనది కాదు."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "వివరణ చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)."
|
||||
|
@ -472,18 +472,23 @@ msgstr "%s గుంపులు"
|
|||
msgid "groups on %s"
|
||||
msgstr "%s పై గుంపులు"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
msgstr "తప్పుడు అభ్యర్థన."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "తప్పుడు పరిమాణం."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -494,74 +499,82 @@ msgstr "తప్పుడు అభ్యర్థన."
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "తప్పుడు పేరు / సంకేతపదం!"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు"
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "ఖాతా"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "పేరు"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "సంకేతపదం"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "తిరస్కరించు"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "అనుమతించు"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -579,14 +592,12 @@ msgid "No such notice."
|
|||
msgstr "అటువంటి సందేశమేమీ లేదు."
|
||||
|
||||
#: actions/apistatusesretweet.php:83
|
||||
#, fuzzy
|
||||
msgid "Cannot repeat your own notice."
|
||||
msgstr "ఈ లైసెన్సుకి అంగీకరించకపోతే మీరు నమోదుచేసుకోలేరు."
|
||||
msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు."
|
||||
|
||||
#: actions/apistatusesretweet.php:91
|
||||
#, fuzzy
|
||||
msgid "Already repeated that notice."
|
||||
msgstr "ఈ నోటీసుని తొలగించు"
|
||||
msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు."
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
msgid "Status deleted."
|
||||
|
@ -733,8 +744,8 @@ msgstr "అసలు"
|
|||
msgid "Preview"
|
||||
msgstr "మునుజూపు"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "తొలగించు"
|
||||
|
||||
|
@ -781,8 +792,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "కాదు"
|
||||
|
||||
|
@ -790,9 +802,9 @@ msgstr "కాదు"
|
|||
msgid "Do not block this user"
|
||||
msgstr "ఈ వాడుకరిని నిరోధించకు"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "అవును"
|
||||
|
||||
|
@ -898,6 +910,46 @@ msgstr "సంభాషణ"
|
|||
msgid "Notices"
|
||||
msgstr "సందేశాలు"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "ఉపకరణాలని తొలగించడానికి మీరు ప్రవేశించి ఉండాలి."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
msgid "Application not found."
|
||||
msgstr "ఉపకరణం కనబడలేదు."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని కాదు."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
msgid "Delete application"
|
||||
msgstr "ఉపకరణ తొలగింపు"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"మీరు నిజంగానే ఈ ఉపకరణాన్ని తొలగించాలనుకుంటున్నారా? ఇది ఆ ఉపకరణం గురించి భోగట్టాని, ప్రస్తుత "
|
||||
"వాడుకరుల అనుసంధానాలతో సహా, డాటాబేసు నుండి తొలగిస్తుంది."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
msgid "Do not delete this application"
|
||||
msgstr "ఈ ఉపకరణాన్ని తొలగించకు"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
msgid "Delete this application"
|
||||
msgstr "ఈ ఉపకరణాన్ని తొలగించు"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -930,7 +982,7 @@ msgstr "మీరు నిజంగానే ఈ నోటీసుని త
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "ఈ నోటీసుని తొలగించకు"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "ఈ నోటీసుని తొలగించు"
|
||||
|
||||
|
@ -1072,7 +1124,7 @@ msgstr "ఈ నోటీసు ఇష్టాంశం కాదు!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "ఇష్టాంశాలకు చేర్చు"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "అటువంటి పత్రమేమీ లేదు."
|
||||
|
@ -1086,20 +1138,11 @@ msgstr "ఉపకరణాన్ని మార్చు"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "ఉపకరణాలని మార్చడానికి మీరు ప్రవేశించి ఉండాలి."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని కాదు."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "అటువంటి ఉపకరణం లేదు."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి."
|
||||
|
@ -1108,44 +1151,49 @@ msgstr "మీ ఉపకరణాన్ని మార్చడానికి
|
|||
msgid "Name is required."
|
||||
msgstr "పేరు తప్పనిసరి."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "వివరణ తప్పనిసరి."
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "హోమ్ పేజీ URL సరైనది కాదు."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr "సంస్థ తప్పనిసరి."
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "సంస్థ పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "గుంపుని తాజాకరించలేకున్నాం."
|
||||
|
@ -1651,6 +1699,10 @@ msgid ""
|
|||
"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
|
||||
"%%%%)"
|
||||
msgstr ""
|
||||
"ఒకే రకమైన ఆసక్తులు ఉన్న వ్యక్తులు కలుసుకోడానికి మరియు మాట్లాడుకోడానికి %%%%site.name%%%% "
|
||||
"గుంపులు వీలుకల్పిస్తాయి. ఒక గుంపులో చేరిన తర్వాత మీరు \"!groupname\" అన్న సంకేతం ద్వారా ఆ "
|
||||
"గుంపు లోని సభ్యులందరికీ సందేశాలని పంపించవచ్చు. మీకు నచ్చిన గుంపు కనబడలేదా? [దాని కోసం వెతకండి](%%"
|
||||
"%%action.groupsearch%%%%) లేదా [మీరే కొత్తది సృష్టించండి!](%%%%action.newgroup%%%%)"
|
||||
|
||||
#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122
|
||||
msgid "Create a new group"
|
||||
|
@ -2014,11 +2066,11 @@ msgstr "ఉపకరణాలని నమోదుచేసుకోడాన
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "కొత్త ఉపకరణాన్ని నమోదుచేసుకోడానికి ఈ ఫారాన్ని ఉపయోగించండి."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "మారుపేర్లని సృష్టించలేకపోయాం."
|
||||
|
@ -2150,28 +2202,28 @@ msgstr "మీరు నమోదు చేసివున్న ఉపకరణ
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr "సంధానిత ఉపకరణాలు"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "మీరు ఆ ఉపకరణం యొక్క వాడుకరి కాదు."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2679,39 +2731,39 @@ msgstr "ప్రజా కాలరేఖ, పేజీ %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "ప్రజా కాలరేఖ"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "ప్రజా వాహిని ఫీడు"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "ప్రజా వాహిని ఫీడు"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "ప్రజా వాహిని ఫీడు"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2720,7 +2772,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3069,7 +3121,7 @@ msgstr "ఈ లైసెన్సుకి అంగీకరించకపో
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "మీరు ఇప్పటికే ఆ వాడుకరిని నిరోధించారు."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "సృష్టితం"
|
||||
|
@ -3133,6 +3185,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "%sకి స్పందనలు"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "స్టేటస్నెట్"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3179,77 +3235,82 @@ msgstr "సైటు అమరికలను భద్రపరచు"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr "ప్రతీకం"
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "పేరు"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "సంస్ధ"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "వివరణ"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "గణాంకాలు"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr "ఉపకరణ చర్యలు"
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr "ఉపకరణ సమాచారం"
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
#, fuzzy
|
||||
msgid "Authorize URL"
|
||||
msgstr "రచయిత"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3449,26 +3510,26 @@ msgstr "%s యొక్క సందేశముల ఫీడు"
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, fuzzy, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "ఇది %s మరియు మిత్రుల కాలరేఖ కానీ ఇంకా ఎవరూ ఏమీ రాయలేదు."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
"ఈమధ్యే ఏదైనా ఆసక్తికరమైనది చూసారా? మీరు ఇంకా నోటీసులేమీ వ్రాయలేదు, మొదలుపెట్టడానికి ఇదే మంచి సమయం :)"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3477,7 +3538,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3485,7 +3546,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "%s యొక్క పునరావృతం"
|
||||
|
@ -3765,12 +3826,12 @@ msgstr "%1$s చందాదార్లు, పేజీ %2$d"
|
|||
|
||||
#: actions/subscribers.php:63
|
||||
msgid "These are the people who listen to your notices."
|
||||
msgstr ""
|
||||
msgstr "వీళ్ళు మీ నోటీసులని వినే ప్రజలు."
|
||||
|
||||
#: actions/subscribers.php:67
|
||||
#, php-format
|
||||
msgid "These are the people who listen to %s's notices."
|
||||
msgstr ""
|
||||
msgstr "వీళ్ళు %s యొక్క నోటీసులని వినే ప్రజలు."
|
||||
|
||||
#: actions/subscribers.php:108
|
||||
msgid ""
|
||||
|
@ -4001,7 +4062,7 @@ msgstr "వాడుకరులను కొత్త వారిని ఆహ
|
|||
|
||||
#: actions/userauthorization.php:105
|
||||
msgid "Authorize subscription"
|
||||
msgstr ""
|
||||
msgstr "చందాని అధీకరించండి"
|
||||
|
||||
#: actions/userauthorization.php:110
|
||||
msgid ""
|
||||
|
@ -4137,10 +4198,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "స్టేటస్నెట్"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4260,22 +4317,22 @@ msgstr "ఈ సైటులో నోటీసులు రాయడం ను
|
|||
msgid "Problem saving notice."
|
||||
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "@%2$s, %1$sకి స్వాగతం!"
|
||||
|
@ -4556,11 +4613,11 @@ msgstr "SMS నిర్ధారణ"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "రూపకల్పన స్వరూపణం"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -4929,20 +4986,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "నిర్ధారణ సంకేతం లేదు."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5523,24 +5580,24 @@ msgstr "ప"
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "సందర్భంలో"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "సృష్టితం"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "ఈ నోటీసుపై స్పందించండి"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "స్పందించండి"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "నోటీసుని తొలగించాం."
|
||||
|
@ -5687,6 +5744,10 @@ msgstr "ఈ నోటీసుపై స్పందించండి"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "ఈ నోటీసుపై స్పందించండి"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5860,47 +5921,47 @@ msgstr "సందేశం"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "కొన్ని క్షణాల క్రితం"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "ఓ నిమిషం క్రితం"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "%d నిమిషాల క్రితం"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "ఒక గంట క్రితం"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "%d గంటల క్రితం"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "ఓ రోజు క్రితం"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "%d రోజుల క్రితం"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "ఓ నెల క్రితం"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "%d నెలల క్రితం"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "ఒక సంవత్సరం క్రితం"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:51+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:40+0000\n"
|
||||
"Language-Team: Turkish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: tr\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -100,7 +100,7 @@ msgstr "Böyle bir durum mesajı yok."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -157,7 +157,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -393,8 +393,8 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Geçersiz bir takma ad."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -406,8 +406,8 @@ msgstr "Başlangıç sayfası adresi geçerli bir URL değil."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Tam isim çok uzun (azm: 255 karakter)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Hakkında bölümü çok uzun (azm 140 karakter)."
|
||||
|
@ -487,18 +487,23 @@ msgstr ""
|
|||
msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Geçersiz büyüklük."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -509,76 +514,84 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Geçersiz kullanıcı adı veya parola."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Kullanıcı ayarlamada hata oluştu."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Cevap eklenirken veritabanı hatası: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Beklenmeğen form girdisi."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "Hakkında"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Takma ad"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Parola"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -755,8 +768,8 @@ msgstr ""
|
|||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
@ -806,8 +819,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
|
@ -816,9 +830,9 @@ msgstr ""
|
|||
msgid "Do not block this user"
|
||||
msgstr "Böyle bir kullanıcı yok."
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
|
@ -928,6 +942,50 @@ msgstr "Yer"
|
|||
msgid "Notices"
|
||||
msgstr "Durum mesajları"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Kullanıcı güncellenemedi."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Bize o profili yollamadınız"
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Böyle bir durum mesajı yok."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Böyle bir durum mesajı yok."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -961,7 +1019,7 @@ msgstr ""
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Böyle bir durum mesajı yok."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1114,7 +1172,7 @@ msgstr ""
|
|||
msgid "Add to favorites"
|
||||
msgstr ""
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Böyle bir belge yok."
|
||||
|
@ -1128,22 +1186,12 @@ msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Bize o profili yollamadınız"
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Böyle bir durum mesajı yok."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr ""
|
||||
|
@ -1152,47 +1200,52 @@ msgstr ""
|
|||
msgid "Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Tam isim çok uzun (azm: 255 karakter)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Takma ad kullanımda. Başka bir tane deneyin."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Abonelikler"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Başlangıç sayfası adresi geçerli bir URL değil."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Yer bilgisi çok uzun (azm: 255 karakter)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Kullanıcı güncellenemedi."
|
||||
|
@ -2101,11 +2154,11 @@ msgstr ""
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Avatar bilgisi kaydedilemedi"
|
||||
|
@ -2234,29 +2287,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Bize o profili yollamadınız"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2779,39 +2832,39 @@ msgstr "Genel zaman çizgisi"
|
|||
msgid "Public timeline"
|
||||
msgstr "Genel zaman çizgisi"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Genel Durum Akış RSS Beslemesi"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Genel Durum Akış RSS Beslemesi"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Genel Durum Akış RSS Beslemesi"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2820,7 +2873,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3162,7 +3215,7 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız."
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Zaten giriş yapmış durumdasıznız!"
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Yarat"
|
||||
|
@ -3224,6 +3277,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "%s için cevaplar"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Avatar güncellendi."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3269,80 +3327,84 @@ msgstr "Ayarlar"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Takma ad"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Yer"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
#, fuzzy
|
||||
msgid "Description"
|
||||
msgstr "Abonelikler"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "İstatistikler"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3547,25 +3609,25 @@ msgstr "%s için durum RSS beslemesi"
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3574,7 +3636,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3582,7 +3644,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "%s için cevaplar"
|
||||
|
@ -4254,11 +4316,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Avatar güncellendi."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4382,22 +4439,22 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Durum mesajını kaydederken hata oluştu."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Durum mesajını kaydederken hata oluştu."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Cevap eklenirken veritabanı hatası: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
@ -4691,11 +4748,11 @@ msgstr "Eposta adresi onayı"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Eposta adresi onayı"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5067,20 +5124,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Onay kodu yok."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5659,26 +5716,26 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "İçerik yok!"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Yarat"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
#, fuzzy
|
||||
msgid "Reply"
|
||||
msgstr "cevapla"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Durum mesajları"
|
||||
|
@ -5826,6 +5883,10 @@ msgstr "Böyle bir durum mesajı yok."
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Böyle bir durum mesajı yok."
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -6003,47 +6064,47 @@ msgstr ""
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "birkaç saniye önce"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "yaklaşık bir dakika önce"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "yaklaşık %d dakika önce"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "yaklaşık bir saat önce"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "yaklaşık %d saat önce"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "yaklaşık bir gün önce"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "yaklaşık %d gün önce"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "yaklaşık bir ay önce"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "yaklaşık %d ay önce"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "yaklaşık bir yıl önce"
|
||||
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:53+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:43+0000\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: uk\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -97,7 +97,7 @@ msgstr "Немає такої сторінки"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -158,7 +158,7 @@ msgstr ""
|
|||
"Ви можете [«розштовхати» %1$s](../%2$s) зі сторінки його профілю або [щось "
|
||||
"йому написати](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -388,8 +388,8 @@ msgstr "Це ім’я вже використовується. Спробуйт
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Це недійсне ім’я користувача."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -401,8 +401,8 @@ msgstr "Веб-сторінка має недійсну URL-адресу."
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Повне ім’я задовге (255 знаків максимум)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Опис надто довгий (%d знаків максимум)."
|
||||
|
@ -479,18 +479,22 @@ msgstr "%s групи"
|
|||
msgid "groups on %s"
|
||||
msgstr "групи на %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
msgstr "Невірний запит."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr "Жодного параметру oauth_token не забезпечено."
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
msgid "Invalid token."
|
||||
msgstr "Невірний токен."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -502,19 +506,19 @@ msgid "There was a problem with your session token. Try again, please."
|
|||
msgstr ""
|
||||
"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Недійсне ім’я / пароль!"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Помилка бази даних при видаленні користувача OAuth-додатку."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Помилка бази даних при додаванні користувача OAuth-додатку."
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
|
@ -523,53 +527,65 @@ msgstr ""
|
|||
"Токен запиту %s було авторизовано. Будь ласка, обміняйте його на токен "
|
||||
"доступу."
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgstr "Токен запиту %s було відхилено."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr "Токен запиту %s було скасовано і відхилено."
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Несподіване представлення форми."
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr "Запит на дозвіл під’єднатися до Вашого облікового запису"
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr "Дозволити або заборонити доступ"
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
"Додаток <strong>%1$s</strong> від <strong>%2$s</strong> запитує дозвіл на "
|
||||
"<strong>%3$s</strong> дані Вашого акаунту %4$s. Ви повинні надавати дозвіл "
|
||||
"на доступ до Вашого акаунту %4$s лише тим стороннім додаткам, яким Ви "
|
||||
"довіряєте."
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "Акаунт"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Ім’я користувача"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr "Відхилити"
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr "Дозволити"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr "Дозволити або заборонити доступ до Вашого облікового запису."
|
||||
|
||||
|
@ -740,8 +756,8 @@ msgstr "Оригінал"
|
|||
msgid "Preview"
|
||||
msgstr "Перегляд"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr "Видалити"
|
||||
|
||||
|
@ -791,8 +807,9 @@ msgstr ""
|
|||
"відписано від Вас, він не зможе підписитасть до Вас у майбутньому і Ви "
|
||||
"більше не отримуватимете жодних дописів від нього."
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Ні"
|
||||
|
||||
|
@ -800,9 +817,9 @@ msgstr "Ні"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Не блокувати цього користувача"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Так"
|
||||
|
||||
|
@ -906,6 +923,47 @@ msgstr "Розмова"
|
|||
msgid "Notices"
|
||||
msgstr "Дописи"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Ви маєте спочатку увійти, аби мати змогу видалити додаток."
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
msgid "Application not found."
|
||||
msgstr "Додаток не виявлено."
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Ви не є власником цього додатку."
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Виникли певні проблеми з токеном поточної сесії."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
msgid "Delete application"
|
||||
msgstr "Видалити додаток"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
"Впевнені, що бажаєте видалити цей додаток? У базі даних буде знищено всю "
|
||||
"інформацію стосовно нього, включно із даними про під’єднаних до цього "
|
||||
"додатку користувачів."
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Не видаляти додаток"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
msgid "Delete this application"
|
||||
msgstr "Видалити додаток"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -938,7 +996,7 @@ msgstr "Ви впевненні, що бажаєте видалити цей д
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Не видаляти цей допис"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr "Видалити допис"
|
||||
|
||||
|
@ -1082,7 +1140,7 @@ msgstr "Цей допис не є обраним!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "Додати до обраних"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Немає такого документа «%s»"
|
||||
|
@ -1095,20 +1153,11 @@ msgstr "Керувати додатками"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Ви маєте спочатку увійти, аби мати змогу керувати додатком."
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Ви не є власником цього додатку."
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
msgid "No such application."
|
||||
msgstr "Такого додатку немає."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Виникли певні проблеми з токеном поточної сесії."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr "Скористайтесь цією формою, щоб відредагувати додаток."
|
||||
|
@ -1117,43 +1166,47 @@ msgstr "Скористайтесь цією формою, щоб відреда
|
|||
msgid "Name is required."
|
||||
msgstr "Потрібне ім’я."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Ім’я задовге (255 знаків максимум)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Це ім’я вже використовується. Спробуйте інше."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
msgid "Description is required."
|
||||
msgstr "Потрібен опис."
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr "URL-адреса надто довга."
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "URL-адреса не є дійсною."
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr "Потрібна організація."
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Назва організації надто довга (255 знаків максимум)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr "Потрібна домашня сторінка організації."
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr "Форма зворотнього дзвінка надто довга."
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr "URL-адреса для зворотнього дзвінка не є дійсною."
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
msgid "Could not update application."
|
||||
msgstr "Не вдалося оновити додаток."
|
||||
|
||||
|
@ -2087,11 +2140,11 @@ msgstr "Ви маєте спочатку увійти, аби мати змог
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "Скористайтесь цією формою, щоб зареєструвати новий додаток."
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr "Потрібна URL-адреса."
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
msgid "Could not create application."
|
||||
msgstr "Не вдалося створити додаток."
|
||||
|
||||
|
@ -2225,29 +2278,29 @@ msgstr "Додатки, які Ви зареєстрували"
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr "Поки що Ви не зареєстрували жодних додатків."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr "Під’єднані додатки"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
"Ви маєте дозволити наступним додаткам доступ до Вашого облікового запису."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Ви не є користувачем даного додатку."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr "Не вдалося скасувати доступ для додатку: "
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr "Ви не дозволили жодним додаткам використовувати Ваш акаунт."
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr "Розробники можуть змінити налаштування реєстрації для їхніх додатків "
|
||||
|
||||
|
@ -2749,19 +2802,19 @@ msgstr "Загальний стрічка, сторінка %d"
|
|||
msgid "Public timeline"
|
||||
msgstr "Загальна стрічка"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Стрічка публічних дописів (RSS 1.0)"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Стрічка публічних дописів (RSS 2.0)"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Стрічка публічних дописів (Atom)"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
|
@ -2769,11 +2822,11 @@ msgid ""
|
|||
msgstr ""
|
||||
"Це публічна стрічка дописів сайту %%site.name%%, але вона поки що порожня."
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr "Станьте першим! Напишіть щось!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
|
@ -2781,7 +2834,7 @@ msgstr ""
|
|||
"Чому б не [зареєструватись](%%action.register%%) і не зробити свій перший "
|
||||
"допис!"
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2795,7 +2848,7 @@ msgstr ""
|
|||
"розділити своє життя з друзями, родиною і колегами! ([Дізнатися більше](%%"
|
||||
"doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3161,7 +3214,7 @@ msgstr "Ви не можете вторувати своїм власним до
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Ви вже вторували цьому допису."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
msgid "Repeated"
|
||||
msgstr "Вторування"
|
||||
|
||||
|
@ -3227,6 +3280,10 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Відповіді до %1$s на %2$s!"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
msgid "You cannot sandbox users on this site."
|
||||
msgstr "Ви не можете нікого ізолювати на цьому сайті."
|
||||
|
@ -3241,9 +3298,8 @@ msgid "Sessions"
|
|||
msgstr "Сесії"
|
||||
|
||||
#: actions/sessionsadminpanel.php:65
|
||||
#, fuzzy
|
||||
msgid "Session settings for this StatusNet site."
|
||||
msgstr "Налаштування дизайну для цього сайту StatusNet."
|
||||
msgstr "Налаштування сесії для цього сайту StatusNet."
|
||||
|
||||
#: actions/sessionsadminpanel.php:175
|
||||
msgid "Handle sessions"
|
||||
|
@ -3270,71 +3326,71 @@ msgstr "Зберегти налаштування сайту"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Ви повинні спочатку увійти, аби переглянути додаток."
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr "Профіль додатку"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr "Іконка"
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
msgid "Name"
|
||||
msgstr "Ім’я"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
msgid "Organization"
|
||||
msgstr "Організація"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "створено %1$s — %2$s доступ за замовч. — %3$d користувачів"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів"
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr "Можливості додатку"
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr "Призначити новий ключ і таємне слово"
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr "Інфо додатку"
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr "Ключ споживача"
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr "Таємно слово споживача"
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr "URL-адреса токена запиту"
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr "URL-адреса токена дозволу"
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr "Авторизувати URL-адресу"
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
|
@ -3342,6 +3398,11 @@ msgstr ""
|
|||
"До уваги: Всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо "
|
||||
"шифрування підписів відкритим текстом."
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Ви впевненні, що бажаєте видалити цей допис?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3558,12 +3619,12 @@ msgstr "Стрічка дописів для %s (Atom)"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "FOAF для %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "Це стрічка дописів %1$s, але %2$s ще нічого не написав."
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
|
@ -3571,7 +3632,7 @@ msgstr ""
|
|||
"Побачили щось цікаве нещодавно? Ви ще нічого не написали і це слушна нагода "
|
||||
"аби розпочати! :)"
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
|
@ -3580,7 +3641,7 @@ msgstr ""
|
|||
"Ви можете «розштовхати» %1$s або [щось йому написати](%%%%action.newnotice%%%"
|
||||
"%?status_textarea=%2$s)."
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3594,7 +3655,7 @@ msgstr ""
|
|||
"register%%) зараз і слідкуйте за дописами **%s**, також на Вас чекає багато "
|
||||
"іншого! ([Дізнатися більше](%%doc.help%%))"
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3605,7 +3666,7 @@ msgstr ""
|
|||
"(http://uk.wikipedia.org/wiki/Мікроблоґ), який працює на вільному "
|
||||
"програмному забезпеченні [StatusNet](http://status.net/). "
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Вторування %s"
|
||||
|
@ -4285,10 +4346,6 @@ msgstr ""
|
|||
"Цей сайт працює на %1$s, версія %2$s. Авторські права 2008-2010 StatusNet, "
|
||||
"Inc. і розробники."
|
||||
|
||||
#: actions/version.php:157
|
||||
msgid "StatusNet"
|
||||
msgstr "StatusNet"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr "Розробники"
|
||||
|
@ -4422,21 +4479,21 @@ msgstr "Вам заборонено надсилати дописи до цьо
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Проблема при збереженні допису."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Проблема при збереженні вхідних дописів для групи."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Помилка бази даних при додаванні відповіді: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Вітаємо на %1$s, @%2$s!"
|
||||
|
@ -4708,17 +4765,16 @@ msgid "Paths configuration"
|
|||
msgstr "Конфігурація шляху"
|
||||
|
||||
#: lib/adminpanelaction.php:337
|
||||
#, fuzzy
|
||||
msgid "Sessions configuration"
|
||||
msgstr "Конфігурація дизайну"
|
||||
msgstr "Конфігурація сесій"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
"API-ресурс вимагає дозвіл типу «читання-запис», але у вас є лише доступ для "
|
||||
"читання."
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5118,19 +5174,19 @@ msgstr ""
|
|||
"tracks — наразі не виконується\n"
|
||||
"tracking — наразі не виконується\n"
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Файлу конфігурації не знайдено. "
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr "Шукав файли конфігурації в цих місцях: "
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr "Запустіть файл інсталяції, аби полагодити це."
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr "Іти до файлу інсталяції."
|
||||
|
||||
|
@ -5775,23 +5831,23 @@ msgstr "Зах."
|
|||
msgid "at"
|
||||
msgstr "в"
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
msgid "in context"
|
||||
msgstr "в контексті"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
msgid "Repeated by"
|
||||
msgstr "Вторуванні"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Відповісти на цей допис"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Відповісти"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
msgid "Notice repeated"
|
||||
msgstr "Допис вторували"
|
||||
|
||||
|
@ -5932,6 +5988,10 @@ msgstr "Повторити цей допис?"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Вторувати цьому допису"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr "Користувача для однокористувацького режиму не визначено."
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr "Пісочниця"
|
||||
|
@ -6097,47 +6157,47 @@ msgstr "Повідомлення"
|
|||
msgid "Moderate"
|
||||
msgstr "Модерувати"
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "мить тому"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "хвилину тому"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "близько %d хвилин тому"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "годину тому"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "близько %d годин тому"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "день тому"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "близько %d днів тому"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "місяць тому"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "близько %d місяців тому"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "рік тому"
|
||||
|
||||
|
|
|
@ -7,12 +7,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:56+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:46+0000\n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: vi\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -99,7 +99,7 @@ msgstr "Không có tin nhắn nào."
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -156,7 +156,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -395,8 +395,8 @@ msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "Biệt hiệu không hợp lệ."
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -408,8 +408,8 @@ msgstr "Trang chủ không phải là URL"
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Tên đầy đủ quá dài (tối đa là 255 ký tự)."
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "Lý lịch quá dài (không quá 140 ký tự)"
|
||||
|
@ -489,18 +489,23 @@ msgstr "%s và nhóm"
|
|||
msgid "groups on %s"
|
||||
msgstr "Mã nhóm"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "Kích thước không hợp lệ."
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -511,76 +516,84 @@ msgstr ""
|
|||
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."
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "Tên đăng nhập hoặc mật khẩu không hợp lệ."
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "Lỗi xảy ra khi tạo thành viên."
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "Bất ngờ gửi mẫu thông tin. "
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "Giới thiệu"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "Biệt danh"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "Mật khẩu"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -758,8 +771,8 @@ msgstr ""
|
|||
msgid "Preview"
|
||||
msgstr "Xem trước"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
#, fuzzy
|
||||
msgid "Delete"
|
||||
msgstr "Xóa tin nhắn"
|
||||
|
@ -811,8 +824,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "Không"
|
||||
|
||||
|
@ -821,9 +835,9 @@ msgstr "Không"
|
|||
msgid "Do not block this user"
|
||||
msgstr "Bỏ chặn người dùng này"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "Có"
|
||||
|
||||
|
@ -932,6 +946,51 @@ msgstr "Không có mã số xác nhận."
|
|||
msgid "Notices"
|
||||
msgstr "Tin nhắn"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những "
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "Tin nhắn không có hồ sơ cá nhân"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Bạn chưa cập nhật thông tin riêng"
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa."
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "Không có tin nhắn nào."
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "Không thể xóa tin nhắn này."
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "Xóa tin nhắn"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -966,7 +1025,7 @@ msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "Không thể xóa tin nhắn này."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
#, fuzzy
|
||||
msgid "Delete this notice"
|
||||
msgstr "Xóa tin nhắn"
|
||||
|
@ -1128,7 +1187,7 @@ msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của b
|
|||
msgid "Add to favorites"
|
||||
msgstr "Tìm kiếm các tin nhắn ưa thích của %s"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "Không có tài liệu nào."
|
||||
|
@ -1143,23 +1202,12 @@ msgstr "Tin nhắn không có hồ sơ cá nhân"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những "
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "Bạn chưa cập nhật thông tin riêng"
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "Không có tin nhắn nào."
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa."
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr ""
|
||||
|
@ -1169,47 +1217,52 @@ msgstr ""
|
|||
msgid "Name is required."
|
||||
msgstr "Cùng mật khẩu ở trên. Bắt buộc."
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "Tên đầy đủ quá dài (tối đa là 255 ký tự)."
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "Mô tả"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "Trang chủ không phải là URL"
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "Tên khu vực quá dài (không quá 255 ký tự)."
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "Không thể cập nhật thành viên."
|
||||
|
@ -2182,11 +2235,11 @@ msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "Không thể tạo favorite."
|
||||
|
@ -2323,29 +2376,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "Bạn chưa cập nhật thông tin riêng"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2878,39 +2931,39 @@ msgstr "Dòng tin công cộng"
|
|||
msgid "Public timeline"
|
||||
msgstr "Dòng tin công cộng"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "Dòng tin công cộng"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "Dòng tin công cộng"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "Dòng tin công cộng"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2919,7 +2972,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3281,7 +3334,7 @@ msgstr "Bạn không thể đăng ký nếu không đồng ý các điều kho
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "Bạn đã theo những người này:"
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Tạo"
|
||||
|
@ -3343,6 +3396,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "%s chào mừng bạn "
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Hình đại diện đã được cập nhật."
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3389,79 +3447,84 @@ msgstr "Thay đổi hình đại diện"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những "
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "Tin nhắn không có hồ sơ cá nhân"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "Biệt danh"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "Thư mời đã gửi"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
msgid "Description"
|
||||
msgstr "Mô tả"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "Số liệu thống kê"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3668,25 +3731,25 @@ msgstr "Dòng tin nhắn cho %s"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "Hộp thư đi của %s"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3695,7 +3758,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3703,7 +3766,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "Trả lời cho %s"
|
||||
|
@ -4402,11 +4465,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "Hình đại diện đã được cập nhật."
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4533,22 +4591,22 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%s (%s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "%s chào mừng bạn "
|
||||
|
@ -4850,11 +4908,11 @@ msgstr "Xác nhận SMS"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "Xác nhận SMS"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5231,20 +5289,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Không có mã số xác nhận."
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5884,26 +5942,26 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Không có nội dung!"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Tạo"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
#, fuzzy
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Trả lời tin nhắn này"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr "Trả lời"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Tin đã gửi"
|
||||
|
@ -6058,6 +6116,10 @@ msgstr "Trả lời tin nhắn này"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "Trả lời tin nhắn này"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6244,47 +6306,47 @@ msgstr "Tin mới nhất"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "vài giây trước"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "1 phút trước"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "%d phút trước"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "1 giờ trước"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "%d giờ trước"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "1 ngày trước"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "%d ngày trước"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "1 tháng trước"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "%d tháng trước"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "1 năm trước"
|
||||
|
||||
|
|
|
@ -10,12 +10,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:42:59+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:49+0000\n"
|
||||
"Language-Team: Simplified Chinese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: zh-hans\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -101,7 +101,7 @@ msgstr "没有该页面"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -158,7 +158,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -393,8 +393,8 @@ msgstr "昵称已被使用,换一个吧。"
|
|||
msgid "Not a valid nickname."
|
||||
msgstr "不是有效的昵称。"
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -406,8 +406,8 @@ msgstr "主页的URL不正确。"
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "全名过长(不能超过 255 个字符)。"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "描述过长(不能超过140字符)。"
|
||||
|
@ -487,18 +487,23 @@ msgstr "%s 群组"
|
|||
msgid "groups on %s"
|
||||
msgstr "组动作"
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "大小不正确。"
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -509,76 +514,84 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "会话标识有问题,请重试。"
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "用户名或密码不正确。"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "保存用户设置时出错。"
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "添加标签时数据库出错:%s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr "未预料的表单提交。"
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
msgid "Account"
|
||||
msgstr "帐号"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "昵称"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
#, fuzzy
|
||||
msgid "Allow"
|
||||
msgstr "全部"
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -753,8 +766,8 @@ msgstr "原来的"
|
|||
msgid "Preview"
|
||||
msgstr "预览"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
#, fuzzy
|
||||
msgid "Delete"
|
||||
msgstr "删除"
|
||||
|
@ -805,8 +818,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr "否"
|
||||
|
||||
|
@ -815,9 +829,9 @@ msgstr "否"
|
|||
msgid "Do not block this user"
|
||||
msgstr "取消阻止次用户"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr "是"
|
||||
|
||||
|
@ -928,6 +942,51 @@ msgstr "确认码"
|
|||
msgid "Notices"
|
||||
msgstr "通告"
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "您必须登录才能创建小组。"
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "通告没有关联个人信息"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "您未告知此个人信息"
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "会话标识有问题,请重试。"
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "没有这份通告。"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "无法删除通告。"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "删除通告"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -962,7 +1021,7 @@ msgstr "确定要删除这条消息吗?"
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "无法删除通告。"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
#, fuzzy
|
||||
msgid "Delete this notice"
|
||||
msgstr "删除通告"
|
||||
|
@ -1117,7 +1176,7 @@ msgstr "此通告未被收藏!"
|
|||
msgid "Add to favorites"
|
||||
msgstr "加入收藏"
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "没有这份文档。"
|
||||
|
@ -1132,23 +1191,12 @@ msgstr "其他选项"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr "您必须登录才能创建小组。"
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "您未告知此个人信息"
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "没有这份通告。"
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "会话标识有问题,请重试。"
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
#, fuzzy
|
||||
msgid "Use this form to edit your application."
|
||||
|
@ -1159,47 +1207,52 @@ msgstr "使用这个表单来编辑组"
|
|||
msgid "Name is required."
|
||||
msgstr "相同的密码。此项必填。"
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "全名过长(不能超过 255 个字符)。"
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "昵称已被使用,换一个吧。"
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "描述"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "主页的URL不正确。"
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "位置过长(不能超过255个字符)。"
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "无法更新组"
|
||||
|
@ -2138,11 +2191,11 @@ msgstr "您必须登录才能创建小组。"
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr "使用此表格创建组。"
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "无法创建收藏。"
|
||||
|
@ -2273,29 +2326,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "您未告知此个人信息"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2817,39 +2870,39 @@ msgstr "公开的时间表"
|
|||
msgid "Public timeline"
|
||||
msgstr "公开的时间表"
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr "公开的聚合"
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr "公开的聚合"
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "公开的聚合"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2858,7 +2911,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3215,7 +3268,7 @@ msgstr "您必须同意此授权方可注册。"
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "您已成功阻止该用户:"
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "创建"
|
||||
|
@ -3277,6 +3330,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "发送给 %1$s 的 %2$s 消息"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "头像已更新。"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3323,80 +3381,85 @@ msgstr "头像设置"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr "您必须登录才能邀请其他人使用 %s"
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
#, fuzzy
|
||||
msgid "Application profile"
|
||||
msgstr "通告没有关联个人信息"
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "昵称"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "分页"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
#, fuzzy
|
||||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr "统计"
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr "确定要删除这条消息吗?"
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3604,25 +3667,25 @@ msgstr "%s 的通告聚合"
|
|||
msgid "FOAF for %s"
|
||||
msgstr "%s 的发件箱"
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, fuzzy, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr "这是 %s 和好友的时间线,但是没有任何人发布内容。"
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3631,7 +3694,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3641,7 +3704,7 @@ msgstr ""
|
|||
"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]"
|
||||
"(http://en.wikipedia.org/wiki/Micro-blogging)"
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, fuzzy, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "%s 的回复"
|
||||
|
@ -4329,11 +4392,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "头像已更新。"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4459,22 +4517,22 @@ msgstr "在这个网站你被禁止发布消息。"
|
|||
msgid "Problem saving notice."
|
||||
msgstr "保存通告时出错。"
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "保存通告时出错。"
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "添加回复时数据库出错:%s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "发送给 %1$s 的 %2$s 消息"
|
||||
|
@ -4773,11 +4831,11 @@ msgstr "SMS短信确认"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "SMS短信确认"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -5146,20 +5204,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "没有验证码"
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "登入本站"
|
||||
|
@ -5751,27 +5809,27 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "没有内容!"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "创建"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
#, fuzzy
|
||||
msgid "Reply to this notice"
|
||||
msgstr "无法删除通告。"
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
#, fuzzy
|
||||
msgid "Reply"
|
||||
msgstr "回复"
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "消息已发布。"
|
||||
|
@ -5924,6 +5982,10 @@ msgstr "无法删除通告。"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "无法删除通告。"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
#, fuzzy
|
||||
msgid "Sandbox"
|
||||
|
@ -6109,47 +6171,47 @@ msgstr "新消息"
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr "几秒前"
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr "一分钟前"
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr "%d 分钟前"
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr "一小时前"
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr "%d 小时前"
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr "一天前"
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr "%d 天前"
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr "一个月前"
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr "%d 个月前"
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr "一年前"
|
||||
|
||||
|
|
|
@ -7,12 +7,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-01-30 23:41+0000\n"
|
||||
"PO-Revision-Date: 2010-01-30 23:43:02+0000\n"
|
||||
"POT-Creation-Date: 2010-02-04 10:31+0000\n"
|
||||
"PO-Revision-Date: 2010-02-04 10:33:52+0000\n"
|
||||
"Language-Team: Traditional Chinese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61734); Translate extension (2010-01-16)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (r61969); Translate extension (2010-01-16)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: zh-hant\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
@ -97,7 +97,7 @@ msgstr "無此通知"
|
|||
#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
|
||||
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
|
||||
#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38
|
||||
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
|
||||
#: actions/showfavorites.php:105 actions/userbyid.php:74
|
||||
#: actions/usergroups.php:91 actions/userrss.php:38 actions/xrds.php:71
|
||||
#: lib/command.php:163 lib/command.php:302 lib/command.php:355
|
||||
|
@ -154,7 +154,7 @@ msgid ""
|
|||
"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:211
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||
|
@ -386,8 +386,8 @@ msgstr "此暱稱已有人使用。再試試看別的吧。"
|
|||
msgid "Not a valid nickname."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:212
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:200
|
||||
#: actions/apigroupcreate.php:196 actions/editapplication.php:215
|
||||
#: actions/editgroup.php:195 actions/newapplication.php:203
|
||||
#: actions/newgroup.php:139 actions/profilesettings.php:222
|
||||
#: actions/register.php:217
|
||||
msgid "Homepage is not a valid URL."
|
||||
|
@ -399,8 +399,8 @@ msgstr "個人首頁位址錯誤"
|
|||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "全名過長(最多255字元)"
|
||||
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:187
|
||||
#: actions/newapplication.php:169
|
||||
#: actions/apigroupcreate.php:213 actions/editapplication.php:190
|
||||
#: actions/newapplication.php:172
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "自我介紹過長(共140個字元)"
|
||||
|
@ -479,18 +479,23 @@ msgstr ""
|
|||
msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:108 actions/apioauthauthorize.php:114
|
||||
msgid "Bad request."
|
||||
#: actions/apioauthauthorize.php:101
|
||||
msgid "No oauth_token parameter provided."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:134 actions/avatarsettings.php:268
|
||||
#: actions/apioauthauthorize.php:106
|
||||
#, fuzzy
|
||||
msgid "Invalid token."
|
||||
msgstr "尺寸錯誤"
|
||||
|
||||
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
|
||||
#: actions/deletenotice.php:157 actions/disfavor.php:74
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
|
||||
#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54
|
||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66
|
||||
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:139
|
||||
#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
|
||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||
#: actions/profilesettings.php:194 actions/recoverpassword.php:337
|
||||
#: actions/register.php:165 actions/remotesubscribe.php:77
|
||||
|
@ -501,76 +506,84 @@ msgstr ""
|
|||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:146
|
||||
#: actions/apioauthauthorize.php:135
|
||||
#, fuzzy
|
||||
msgid "Invalid nickname / password!"
|
||||
msgstr "使用者名稱或密碼無效"
|
||||
|
||||
#: actions/apioauthauthorize.php:170
|
||||
#: actions/apioauthauthorize.php:159
|
||||
#, fuzzy
|
||||
msgid "Database error deleting OAuth application user."
|
||||
msgstr "使用者設定發生錯誤"
|
||||
|
||||
#: actions/apioauthauthorize.php:196
|
||||
#: actions/apioauthauthorize.php:185
|
||||
#, fuzzy
|
||||
msgid "Database error inserting OAuth application user."
|
||||
msgstr "增加回覆時,資料庫發生錯誤: %s"
|
||||
|
||||
#: actions/apioauthauthorize.php:231
|
||||
#: actions/apioauthauthorize.php:214
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The request token %s has been authorized. Please exchange it for an access "
|
||||
"token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:241
|
||||
#: actions/apioauthauthorize.php:227
|
||||
#, php-format
|
||||
msgid "The request token %s has been denied."
|
||||
msgid "The request token %s has been denied and revoked."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:246 actions/avatarsettings.php:281
|
||||
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
|
||||
#: actions/designadminpanel.php:103 actions/editapplication.php:139
|
||||
#: actions/emailsettings.php:256 actions/grouplogo.php:319
|
||||
#: actions/imsettings.php:220 actions/newapplication.php:121
|
||||
#: actions/oauthconnectionssettings.php:151 actions/recoverpassword.php:44
|
||||
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
|
||||
#: actions/smssettings.php:248 lib/designsettings.php:304
|
||||
msgid "Unexpected form submission."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:273
|
||||
#: actions/apioauthauthorize.php:259
|
||||
msgid "An application would like to connect to your account"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:290
|
||||
#: actions/apioauthauthorize.php:276
|
||||
msgid "Allow or deny access"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:320 lib/action.php:441
|
||||
#: actions/apioauthauthorize.php:292
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like "
|
||||
"the ability to <strong>%3$s</strong> your %4$s account data. You should only "
|
||||
"give access to your %4$s account to third parties you trust."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:310 lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "關於"
|
||||
|
||||
#: actions/apioauthauthorize.php:323 actions/login.php:230
|
||||
#: actions/apioauthauthorize.php:313 actions/login.php:230
|
||||
#: actions/profilesettings.php:106 actions/register.php:424
|
||||
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152
|
||||
#: lib/userprofile.php:131
|
||||
msgid "Nickname"
|
||||
msgstr "暱稱"
|
||||
|
||||
#: actions/apioauthauthorize.php:326 actions/login.php:233
|
||||
#: actions/apioauthauthorize.php:316 actions/login.php:233
|
||||
#: actions/register.php:429 lib/accountsettingsaction.php:116
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:338
|
||||
#: actions/apioauthauthorize.php:328
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:344
|
||||
#: actions/apioauthauthorize.php:334
|
||||
msgid "Allow"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apioauthauthorize.php:361
|
||||
#: actions/apioauthauthorize.php:351
|
||||
msgid "Allow or deny access to your account information."
|
||||
msgstr ""
|
||||
|
||||
|
@ -745,8 +758,8 @@ msgstr ""
|
|||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:608
|
||||
#: actions/avatarsettings.php:149 actions/showapplication.php:252
|
||||
#: lib/deleteuserform.php:66 lib/noticelist.php:624
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
@ -796,8 +809,9 @@ msgid ""
|
|||
"will not be notified of any @-replies from them."
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:143 actions/deletenotice.php:145
|
||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||
#: actions/block.php:143 actions/deleteapplication.php:153
|
||||
#: actions/deletenotice.php:145 actions/deleteuser.php:147
|
||||
#: actions/groupblock.php:178
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
|
@ -806,9 +820,9 @@ msgstr ""
|
|||
msgid "Do not block this user"
|
||||
msgstr "無此使用者"
|
||||
|
||||
#: actions/block.php:144 actions/deletenotice.php:146
|
||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||
#: lib/repeatform.php:132
|
||||
#: actions/block.php:144 actions/deleteapplication.php:158
|
||||
#: actions/deletenotice.php:146 actions/deleteuser.php:148
|
||||
#: actions/groupblock.php:179 lib/repeatform.php:132
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
|
@ -918,6 +932,50 @@ msgstr "地點"
|
|||
msgid "Notices"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:63
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to delete an application."
|
||||
msgstr "無法更新使用者"
|
||||
|
||||
#: actions/deleteapplication.php:71
|
||||
#, fuzzy
|
||||
msgid "Application not found."
|
||||
msgstr "確認碼遺失"
|
||||
|
||||
#: actions/deleteapplication.php:78 actions/editapplication.php:77
|
||||
#: actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "無法連結到伺服器:%s"
|
||||
|
||||
#: actions/deleteapplication.php:102 actions/editapplication.php:127
|
||||
#: actions/newapplication.php:110 actions/showapplication.php:118
|
||||
#: lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147
|
||||
#, fuzzy
|
||||
msgid "Delete application"
|
||||
msgstr "無此通知"
|
||||
|
||||
#: actions/deleteapplication.php:149
|
||||
msgid ""
|
||||
"Are you sure you want to delete this application? This will clear all data "
|
||||
"about the application from the database, including all existing user "
|
||||
"connections."
|
||||
msgstr ""
|
||||
|
||||
#: actions/deleteapplication.php:156
|
||||
#, fuzzy
|
||||
msgid "Do not delete this application"
|
||||
msgstr "無此通知"
|
||||
|
||||
#: actions/deleteapplication.php:160
|
||||
#, fuzzy
|
||||
msgid "Delete this application"
|
||||
msgstr "請在140個字以內描述你自己與你的興趣"
|
||||
|
||||
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
|
||||
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
|
||||
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
|
||||
|
@ -951,7 +1009,7 @@ msgstr ""
|
|||
msgid "Do not delete this notice"
|
||||
msgstr "無此通知"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:608
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:624
|
||||
msgid "Delete this notice"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1102,7 +1160,7 @@ msgstr ""
|
|||
msgid "Add to favorites"
|
||||
msgstr ""
|
||||
|
||||
#: actions/doc.php:155
|
||||
#: actions/doc.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "No such document \"%s\""
|
||||
msgstr "無此文件"
|
||||
|
@ -1116,22 +1174,12 @@ msgstr "無此通知"
|
|||
msgid "You must be logged in to edit an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:77 actions/showapplication.php:94
|
||||
#, fuzzy
|
||||
msgid "You are not the owner of this application."
|
||||
msgstr "無法連結到伺服器:%s"
|
||||
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:163
|
||||
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
|
||||
#: actions/showapplication.php:87
|
||||
#, fuzzy
|
||||
msgid "No such application."
|
||||
msgstr "無此通知"
|
||||
|
||||
#: actions/editapplication.php:127 actions/newapplication.php:110
|
||||
#: actions/showapplication.php:118 lib/action.php:1195
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:161
|
||||
msgid "Use this form to edit your application."
|
||||
msgstr ""
|
||||
|
@ -1140,47 +1188,52 @@ msgstr ""
|
|||
msgid "Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:162
|
||||
#: actions/editapplication.php:180 actions/newapplication.php:165
|
||||
#, fuzzy
|
||||
msgid "Name is too long (max 255 chars)."
|
||||
msgstr "全名過長(最多255字元)"
|
||||
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:165
|
||||
#: actions/editapplication.php:183 actions/newapplication.php:162
|
||||
#, fuzzy
|
||||
msgid "Name already in use. Try another one."
|
||||
msgstr "此暱稱已有人使用。再試試看別的吧。"
|
||||
|
||||
#: actions/editapplication.php:186 actions/newapplication.php:168
|
||||
#, fuzzy
|
||||
msgid "Description is required."
|
||||
msgstr "所有訂閱"
|
||||
|
||||
#: actions/editapplication.php:191
|
||||
#: actions/editapplication.php:194
|
||||
msgid "Source URL is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:197 actions/newapplication.php:182
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#, fuzzy
|
||||
msgid "Source URL is not valid."
|
||||
msgstr "個人首頁位址錯誤"
|
||||
|
||||
#: actions/editapplication.php:200 actions/newapplication.php:185
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
msgid "Organization is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:203 actions/newapplication.php:188
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#, fuzzy
|
||||
msgid "Organization is too long (max 255 chars)."
|
||||
msgstr "地點過長(共255個字)"
|
||||
|
||||
#: actions/editapplication.php:206 actions/newapplication.php:191
|
||||
#: actions/editapplication.php:209 actions/newapplication.php:194
|
||||
msgid "Organization homepage is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:215 actions/newapplication.php:203
|
||||
#: actions/editapplication.php:218 actions/newapplication.php:206
|
||||
msgid "Callback is too long."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:222 actions/newapplication.php:212
|
||||
#: actions/editapplication.php:225 actions/newapplication.php:215
|
||||
msgid "Callback URL is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: actions/editapplication.php:255
|
||||
#: actions/editapplication.php:258
|
||||
#, fuzzy
|
||||
msgid "Could not update application."
|
||||
msgstr "無法更新使用者"
|
||||
|
@ -2063,11 +2116,11 @@ msgstr ""
|
|||
msgid "Use this form to register a new application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:173
|
||||
#: actions/newapplication.php:176
|
||||
msgid "Source URL is required."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newapplication.php:255 actions/newapplication.php:264
|
||||
#: actions/newapplication.php:258 actions/newapplication.php:267
|
||||
#, fuzzy
|
||||
msgid "Could not create application."
|
||||
msgstr "無法存取個人圖像資料"
|
||||
|
@ -2193,29 +2246,29 @@ msgstr ""
|
|||
msgid "You have not registered any applications yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:71
|
||||
#: actions/oauthconnectionssettings.php:72
|
||||
msgid "Connected applications"
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:87
|
||||
#: actions/oauthconnectionssettings.php:83
|
||||
msgid "You have allowed the following applications to access you account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:170
|
||||
#: actions/oauthconnectionssettings.php:175
|
||||
#, fuzzy
|
||||
msgid "You are not a user of that application."
|
||||
msgstr "無法連結到伺服器:%s"
|
||||
|
||||
#: actions/oauthconnectionssettings.php:180
|
||||
#: actions/oauthconnectionssettings.php:186
|
||||
msgid "Unable to revoke access for app: "
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:192
|
||||
#: actions/oauthconnectionssettings.php:198
|
||||
#, php-format
|
||||
msgid "You have not authorized any applications to use your account."
|
||||
msgstr ""
|
||||
|
||||
#: actions/oauthconnectionssettings.php:205
|
||||
#: actions/oauthconnectionssettings.php:211
|
||||
msgid "Developers can edit the registration settings for their applications "
|
||||
msgstr ""
|
||||
|
||||
|
@ -2725,37 +2778,37 @@ msgstr ""
|
|||
msgid "Public timeline"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:151
|
||||
#: actions/public.php:159
|
||||
msgid "Public Stream Feed (RSS 1.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:155
|
||||
#: actions/public.php:163
|
||||
msgid "Public Stream Feed (RSS 2.0)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:159
|
||||
#: actions/public.php:167
|
||||
#, fuzzy
|
||||
msgid "Public Stream Feed (Atom)"
|
||||
msgstr "%s的公開內容"
|
||||
|
||||
#: actions/public.php:179
|
||||
#: actions/public.php:187
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the public timeline for %%site.name%% but no one has posted anything "
|
||||
"yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
#: actions/public.php:190
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:186
|
||||
#: actions/public.php:194
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Why not [register an account](%%action.register%%) and be the first to post!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:233
|
||||
#: actions/public.php:241
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -2764,7 +2817,7 @@ msgid ""
|
|||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/public.php:238
|
||||
#: actions/public.php:246
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
|
||||
|
@ -3098,7 +3151,7 @@ msgstr ""
|
|||
msgid "You already repeated that notice."
|
||||
msgstr "無此使用者"
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:626
|
||||
#: actions/repeat.php:114 lib/noticelist.php:642
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "新增"
|
||||
|
@ -3160,6 +3213,11 @@ msgstr ""
|
|||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "&s的微型部落格"
|
||||
|
||||
#: actions/rsd.php:146 actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "更新個人圖像"
|
||||
|
||||
#: actions/sandbox.php:65 actions/unsandbox.php:65
|
||||
#, fuzzy
|
||||
msgid "You cannot sandbox users on this site."
|
||||
|
@ -3204,79 +3262,83 @@ msgstr "線上即時通設定"
|
|||
msgid "You must be logged in to view an application."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:158
|
||||
#: actions/showapplication.php:157
|
||||
msgid "Application profile"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:160 lib/applicationeditform.php:180
|
||||
#: actions/showapplication.php:159 lib/applicationeditform.php:180
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:170 actions/version.php:195
|
||||
#: actions/showapplication.php:169 actions/version.php:195
|
||||
#: lib/applicationeditform.php:195
|
||||
#, fuzzy
|
||||
msgid "Name"
|
||||
msgstr "暱稱"
|
||||
|
||||
#: actions/showapplication.php:179 lib/applicationeditform.php:222
|
||||
#: actions/showapplication.php:178 lib/applicationeditform.php:222
|
||||
#, fuzzy
|
||||
msgid "Organization"
|
||||
msgstr "地點"
|
||||
|
||||
#: actions/showapplication.php:188 actions/version.php:198
|
||||
#: actions/showapplication.php:187 actions/version.php:198
|
||||
#: lib/applicationeditform.php:209 lib/groupeditform.php:172
|
||||
#, fuzzy
|
||||
msgid "Description"
|
||||
msgstr "所有訂閱"
|
||||
|
||||
#: actions/showapplication.php:193 actions/showgroup.php:429
|
||||
#: actions/showapplication.php:192 actions/showgroup.php:429
|
||||
#: lib/profileaction.php:174
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:204
|
||||
#: actions/showapplication.php:203
|
||||
#, php-format
|
||||
msgid "created by %1$s - %2$s access by default - %3$d users"
|
||||
msgid "Created by %1$s - %2$s access by default - %3$d users"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:214
|
||||
#: actions/showapplication.php:213
|
||||
msgid "Application actions"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:233
|
||||
#: actions/showapplication.php:236
|
||||
msgid "Reset key & secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:241
|
||||
#: actions/showapplication.php:261
|
||||
msgid "Application info"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:243
|
||||
#: actions/showapplication.php:263
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:248
|
||||
#: actions/showapplication.php:268
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:253
|
||||
#: actions/showapplication.php:273
|
||||
msgid "Request token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:258
|
||||
#: actions/showapplication.php:278
|
||||
msgid "Access token URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:263
|
||||
#: actions/showapplication.php:283
|
||||
msgid "Authorize URL"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:268
|
||||
#: actions/showapplication.php:288
|
||||
msgid ""
|
||||
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
|
||||
"signature method."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showapplication.php:309
|
||||
msgid "Are you sure you want to reset your consumer key and secret?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showfavorites.php:79
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s's favorite notices, page %2$d"
|
||||
|
@ -3480,25 +3542,25 @@ msgstr ""
|
|||
msgid "FOAF for %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:191
|
||||
#: actions/showstream.php:200
|
||||
#, php-format
|
||||
msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:196
|
||||
#: actions/showstream.php:205
|
||||
msgid ""
|
||||
"Seen anything interesting recently? You haven't posted any notices yet, now "
|
||||
"would be a good time to start :)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:198
|
||||
#: actions/showstream.php:207
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You can try to nudge %1$s or [post something to his or her attention](%%%%"
|
||||
"action.newnotice%%%%?status_textarea=%2$s)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:234
|
||||
#: actions/showstream.php:243
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3507,7 +3569,7 @@ msgid ""
|
|||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:239
|
||||
#: actions/showstream.php:248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
|
@ -3515,7 +3577,7 @@ msgid ""
|
|||
"[StatusNet](http://status.net/) tool. "
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:296
|
||||
#: actions/showstream.php:305
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr ""
|
||||
|
@ -4176,11 +4238,6 @@ msgid ""
|
|||
"Inc. and contributors."
|
||||
msgstr ""
|
||||
|
||||
#: actions/version.php:157
|
||||
#, fuzzy
|
||||
msgid "StatusNet"
|
||||
msgstr "更新個人圖像"
|
||||
|
||||
#: actions/version.php:161
|
||||
msgid "Contributors"
|
||||
msgstr ""
|
||||
|
@ -4304,22 +4361,22 @@ msgstr ""
|
|||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:790
|
||||
#: classes/Notice.php:788
|
||||
#, fuzzy
|
||||
msgid "Problem saving group inbox."
|
||||
msgstr "儲存使用者發生錯誤"
|
||||
|
||||
#: classes/Notice.php:850
|
||||
#: classes/Notice.php:848
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "增加回覆時,資料庫發生錯誤: %s"
|
||||
|
||||
#: classes/Notice.php:1233
|
||||
#: classes/Notice.php:1231
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:382
|
||||
#: classes/User.php:385
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
@ -4607,11 +4664,11 @@ msgstr "確認信箱"
|
|||
msgid "Sessions configuration"
|
||||
msgstr "確認信箱"
|
||||
|
||||
#: lib/apiauth.php:99
|
||||
#: lib/apiauth.php:95
|
||||
msgid "API resource requires read-write access, but you only have read access."
|
||||
msgstr ""
|
||||
|
||||
#: lib/apiauth.php:279
|
||||
#: lib/apiauth.php:273
|
||||
#, php-format
|
||||
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
|
||||
msgstr ""
|
||||
|
@ -4973,20 +5030,20 @@ msgid ""
|
|||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:131
|
||||
#: lib/common.php:135
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "無確認碼"
|
||||
|
||||
#: lib/common.php:132
|
||||
#: lib/common.php:136
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:134
|
||||
#: lib/common.php:138
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:135
|
||||
#: lib/common.php:139
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -5559,25 +5616,25 @@ msgstr ""
|
|||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:531
|
||||
#: lib/noticelist.php:547
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "無內容"
|
||||
|
||||
#: lib/noticelist.php:556
|
||||
#: lib/noticelist.php:572
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "新增"
|
||||
|
||||
#: lib/noticelist.php:582
|
||||
#: lib/noticelist.php:598
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:583
|
||||
#: lib/noticelist.php:599
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:625
|
||||
#: lib/noticelist.php:641
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "更新個人圖像"
|
||||
|
@ -5724,6 +5781,10 @@ msgstr "無此通知"
|
|||
msgid "Repeat this notice"
|
||||
msgstr "無此通知"
|
||||
|
||||
#: lib/router.php:665
|
||||
msgid "No single user defined for single-user mode."
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
@ -5898,47 +5959,47 @@ msgstr ""
|
|||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:868
|
||||
#: lib/util.php:867
|
||||
msgid "a few seconds ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:870
|
||||
#: lib/util.php:869
|
||||
msgid "about a minute ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:872
|
||||
#: lib/util.php:871
|
||||
#, php-format
|
||||
msgid "about %d minutes ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:874
|
||||
#: lib/util.php:873
|
||||
msgid "about an hour ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:876
|
||||
#: lib/util.php:875
|
||||
#, php-format
|
||||
msgid "about %d hours ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:878
|
||||
#: lib/util.php:877
|
||||
msgid "about a day ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:880
|
||||
#: lib/util.php:879
|
||||
#, php-format
|
||||
msgid "about %d days ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:882
|
||||
#: lib/util.php:881
|
||||
msgid "about a month ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:884
|
||||
#: lib/util.php:883
|
||||
#, php-format
|
||||
msgid "about %d months ago"
|
||||
msgstr ""
|
||||
|
||||
#: lib/util.php:886
|
||||
#: lib/util.php:885
|
||||
msgid "about a year ago"
|
||||
msgstr ""
|
||||
|
||||
|
|
160
plugins/Adsense/AdsensePlugin.php
Normal file
160
plugins/Adsense/AdsensePlugin.php
Normal file
|
@ -0,0 +1,160 @@
|
|||
<?php
|
||||
/**
|
||||
* StatusNet, the distributed open-source microblogging tool
|
||||
*
|
||||
* Plugin for Google Adsense
|
||||
*
|
||||
* 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 Ads
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@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);
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin to add Google Adsense to StatusNet sites
|
||||
*
|
||||
* This plugin lets you add Adsense ad units to your StatusNet site.
|
||||
*
|
||||
* We support the 4 ad sizes for the Universal Ad Platform (UAP):
|
||||
*
|
||||
* Medium Rectangle
|
||||
* (Small) Rectangle
|
||||
* Leaderboard
|
||||
* Wide Skyscraper
|
||||
*
|
||||
* They fit in different places on the default theme. Some themes
|
||||
* might interact quite poorly with this plugin.
|
||||
*
|
||||
* To enable advertising, you must sign up with Google Adsense and
|
||||
* get a client ID.
|
||||
*
|
||||
* https://www.google.com/adsense/
|
||||
*
|
||||
* You'll also need to create an Adsense for Content unit in one
|
||||
* of the four sizes described above. At the end of the process,
|
||||
* note the "google_ad_client" and "google_ad_slot" values in the
|
||||
* resultant Javascript.
|
||||
*
|
||||
* Add the plugin to config.php like so:
|
||||
*
|
||||
* addPlugin('Adsense', array('client' => 'Your client ID',
|
||||
* 'rectangle' => 'slot'));
|
||||
*
|
||||
* Here, your client ID is the value of google_ad_client and the
|
||||
* slot is the value of google_ad_slot. Note that if you create
|
||||
* a different size, you'll need to provide different arguments:
|
||||
* 'mediumRectangle', 'leaderboard', or 'wideSkyscraper'.
|
||||
*
|
||||
* If for some reason your ad server is different from the default,
|
||||
* use the 'adScript' parameter to set the full path to the ad script.
|
||||
*
|
||||
* @category Plugin
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@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/
|
||||
*
|
||||
* @seeAlso UAPPlugin
|
||||
*/
|
||||
|
||||
class AdsensePlugin extends UAPPlugin
|
||||
{
|
||||
public $adScript = 'http://pagead2.googlesyndication.com/pagead/show_ads.js';
|
||||
public $client = null;
|
||||
|
||||
/**
|
||||
* Show a medium rectangle 'ad'
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showMediumRectangle($action)
|
||||
{
|
||||
$this->showAdsenseCode($action, 300, 250, $this->mediumRectangle);
|
||||
}
|
||||
|
||||
/**
|
||||
* Show a rectangle 'ad'
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showRectangle($action)
|
||||
{
|
||||
$this->showAdsenseCode($action, 180, 150, $this->rectangle);
|
||||
}
|
||||
|
||||
/**
|
||||
* Show a wide skyscraper ad
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showWideSkyscraper($action)
|
||||
{
|
||||
$this->showAdsenseCode($action, 160, 600, $this->wideSkyscraper);
|
||||
}
|
||||
|
||||
/**
|
||||
* Show a leaderboard ad
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showLeaderboard($action)
|
||||
{
|
||||
$this->showAdsenseCode($action, 728, 90, $this->leaderboard);
|
||||
}
|
||||
|
||||
/**
|
||||
* Output the bits of JavaScript code to show Adsense
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
* @param integer $width Width of the block
|
||||
* @param integer $height Height of the block
|
||||
* @param string $slot Slot identifier
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showAdsenseCode($action, $width, $height, $slot)
|
||||
{
|
||||
$code = 'google_ad_client = "'.$this->client.'"; ';
|
||||
$code .= 'google_ad_slot = "'.$slot.'"; ';
|
||||
$code .= 'google_ad_width = '.$width.'; ';
|
||||
$code .= 'google_ad_height = '.$height.'; ';
|
||||
|
||||
$action->inlineScript($code);
|
||||
|
||||
$action->script($this->adScript);
|
||||
}
|
||||
}
|
|
@ -71,7 +71,7 @@ class GeonamesPlugin extends Plugin
|
|||
$loc = $this->getCache(array('name' => $name,
|
||||
'language' => $language));
|
||||
|
||||
if (!empty($loc)) {
|
||||
if ($loc !== false) {
|
||||
$location = $loc;
|
||||
return false;
|
||||
}
|
||||
|
@ -87,12 +87,20 @@ class GeonamesPlugin extends Plugin
|
|||
return true;
|
||||
}
|
||||
|
||||
if (count($geonames) == 0) {
|
||||
// no results
|
||||
$this->setCache(array('name' => $name,
|
||||
'language' => $language),
|
||||
null);
|
||||
return true;
|
||||
}
|
||||
|
||||
$n = $geonames[0];
|
||||
|
||||
$location = new Location();
|
||||
|
||||
$location->lat = (string)$n->lat;
|
||||
$location->lon = (string)$n->lng;
|
||||
$location->lat = $this->canonical($n->lat);
|
||||
$location->lon = $this->canonical($n->lng);
|
||||
$location->names[$language] = (string)$n->name;
|
||||
$location->location_id = (string)$n->geonameId;
|
||||
$location->location_ns = self::LOCATION_NS;
|
||||
|
@ -125,7 +133,7 @@ class GeonamesPlugin extends Plugin
|
|||
|
||||
$loc = $this->getCache(array('id' => $id));
|
||||
|
||||
if (!empty($loc)) {
|
||||
if ($loc !== false) {
|
||||
$location = $loc;
|
||||
return false;
|
||||
}
|
||||
|
@ -157,8 +165,9 @@ class GeonamesPlugin extends Plugin
|
|||
|
||||
$location->location_id = (string)$last->geonameId;
|
||||
$location->location_ns = self::LOCATION_NS;
|
||||
$location->lat = (string)$last->lat;
|
||||
$location->lon = (string)$last->lng;
|
||||
$location->lat = $this->canonical($last->lat);
|
||||
$location->lon = $this->canonical($last->lng);
|
||||
|
||||
$location->names[$language] = implode(', ', array_reverse($parts));
|
||||
|
||||
$this->setCache(array('id' => (string)$last->geonameId),
|
||||
|
@ -186,13 +195,15 @@ class GeonamesPlugin extends Plugin
|
|||
|
||||
function onLocationFromLatLon($lat, $lon, $language, &$location)
|
||||
{
|
||||
$lat = rtrim($lat, "0");
|
||||
$lon = rtrim($lon, "0");
|
||||
// Make sure they're canonical
|
||||
|
||||
$lat = $this->canonical($lat);
|
||||
$lon = $this->canonical($lon);
|
||||
|
||||
$loc = $this->getCache(array('lat' => $lat,
|
||||
'lon' => $lon));
|
||||
|
||||
if (!empty($loc)) {
|
||||
if ($loc !== false) {
|
||||
$location = $loc;
|
||||
return false;
|
||||
}
|
||||
|
@ -207,6 +218,14 @@ class GeonamesPlugin extends Plugin
|
|||
return true;
|
||||
}
|
||||
|
||||
if (count($geonames) == 0) {
|
||||
// no results
|
||||
$this->setCache(array('lat' => $lat,
|
||||
'lon' => $lon),
|
||||
null);
|
||||
return true;
|
||||
}
|
||||
|
||||
$n = $geonames[0];
|
||||
|
||||
$parts = array();
|
||||
|
@ -225,8 +244,8 @@ class GeonamesPlugin extends Plugin
|
|||
|
||||
$location->location_id = (string)$n->geonameId;
|
||||
$location->location_ns = self::LOCATION_NS;
|
||||
$location->lat = (string)$lat;
|
||||
$location->lon = (string)$lon;
|
||||
$location->lat = $this->canonical($n->lat);
|
||||
$location->lon = $this->canonical($n->lng);
|
||||
|
||||
$location->names[$language] = implode(', ', $parts);
|
||||
|
||||
|
@ -264,7 +283,7 @@ class GeonamesPlugin extends Plugin
|
|||
$n = $this->getCache(array('id' => $id,
|
||||
'language' => $language));
|
||||
|
||||
if (!empty($n)) {
|
||||
if ($n !== false) {
|
||||
$name = $n;
|
||||
return false;
|
||||
}
|
||||
|
@ -278,6 +297,13 @@ class GeonamesPlugin extends Plugin
|
|||
return false;
|
||||
}
|
||||
|
||||
if (count($geonames) == 0) {
|
||||
$this->setCache(array('id' => $id,
|
||||
'language' => $language),
|
||||
null);
|
||||
return false;
|
||||
}
|
||||
|
||||
$parts = array();
|
||||
|
||||
foreach ($geonames as $level) {
|
||||
|
@ -412,17 +438,29 @@ class GeonamesPlugin extends Plugin
|
|||
throw new Exception("HTTP error code " . $result->code);
|
||||
}
|
||||
|
||||
$document = new SimpleXMLElement($result->getBody());
|
||||
$body = $result->getBody();
|
||||
|
||||
if (empty($document)) {
|
||||
throw new Exception("No results in response");
|
||||
if (empty($body)) {
|
||||
throw new Exception("Empty HTTP body in response");
|
||||
}
|
||||
|
||||
// This will throw an exception if the XML is mal-formed
|
||||
|
||||
$document = new SimpleXMLElement($body);
|
||||
|
||||
// No children, usually no results
|
||||
|
||||
$children = $document->children();
|
||||
|
||||
if (count($children) == 0) {
|
||||
return array();
|
||||
}
|
||||
|
||||
if (isset($document->status)) {
|
||||
throw new Exception("Error #".$document->status['value']." ('".$document->status['message']."')");
|
||||
}
|
||||
|
||||
// Array of elements
|
||||
// Array of elements, >0 elements
|
||||
|
||||
return $document->geoname;
|
||||
}
|
||||
|
@ -438,4 +476,12 @@ class GeonamesPlugin extends Plugin
|
|||
'names for locations based on user-provided lat/long pairs.'));
|
||||
return true;
|
||||
}
|
||||
|
||||
function canonical($coord)
|
||||
{
|
||||
$coord = rtrim($coord, "0");
|
||||
$coord = rtrim($coord, ".");
|
||||
|
||||
return $coord;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -59,6 +59,8 @@ class MemcachePlugin extends Plugin
|
|||
|
||||
public $persistent = null;
|
||||
|
||||
public $defaultExpiry = 86400; // 24h
|
||||
|
||||
/**
|
||||
* Initialize the plugin
|
||||
*
|
||||
|
@ -110,6 +112,9 @@ class MemcachePlugin extends Plugin
|
|||
function onStartCacheSet(&$key, &$value, &$flag, &$expiry, &$success)
|
||||
{
|
||||
$this->_ensureConn();
|
||||
if ($expiry === null) {
|
||||
$expiry = $this->defaultExpiry;
|
||||
}
|
||||
$success = $this->_conn->set($key, $value, $flag, $expiry);
|
||||
Event::handle('EndCacheSet', array($key, $value, $flag,
|
||||
$expiry));
|
||||
|
|
165
plugins/OpenX/OpenXPlugin.php
Normal file
165
plugins/OpenX/OpenXPlugin.php
Normal file
|
@ -0,0 +1,165 @@
|
|||
<?php
|
||||
/**
|
||||
* StatusNet, the distributed open-source microblogging tool
|
||||
*
|
||||
* Plugin for OpenX ad server
|
||||
*
|
||||
* 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 Ads
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@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);
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin for OpenX Ad Server
|
||||
*
|
||||
* This plugin supports the OpenX ad server, http://www.openx.org/
|
||||
*
|
||||
* We support the 4 ad sizes for the Universal Ad Platform (UAP):
|
||||
*
|
||||
* Medium Rectangle
|
||||
* (Small) Rectangle
|
||||
* Leaderboard
|
||||
* Wide Skyscraper
|
||||
*
|
||||
* They fit in different places on the default theme. Some themes
|
||||
* might interact quite poorly with this plugin.
|
||||
*
|
||||
* To enable advertising, you will need an OpenX server. You'll need
|
||||
* to set up a "zone" for your StatusNet site that identifies a
|
||||
* kind of ad you want to place (of the above 4 sizes).
|
||||
*
|
||||
* Add the plugin to config.php like so:
|
||||
*
|
||||
* addPlugin('OpenX', array('adScript' => 'full path to script',
|
||||
* 'rectangle' => 1));
|
||||
*
|
||||
* Here, the 'adScript' parameter is the full path to the OpenX
|
||||
* ad script, like 'http://example.com/www/delivery/ajs.php'. Note
|
||||
* that we don't do any magic to swap between HTTP and HTTPS, so
|
||||
* if you want HTTPS, say so.
|
||||
*
|
||||
* The 'rectangle' parameter is the zone ID for that ad space on
|
||||
* your site. If you've configured another size, try 'mediumRectangle',
|
||||
* 'leaderboard', or 'wideSkyscraper'.
|
||||
*
|
||||
* If for some reason your ad server is different from the default,
|
||||
* use the 'adScript' parameter to set the full path to the ad script.
|
||||
*
|
||||
* @category Ads
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@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/
|
||||
*
|
||||
* @seeAlso UAPPlugin
|
||||
*/
|
||||
|
||||
class OpenXPlugin extends UAPPlugin
|
||||
{
|
||||
public $adScript = null;
|
||||
|
||||
/**
|
||||
* Show a medium rectangle 'ad'
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showMediumRectangle($action)
|
||||
{
|
||||
$this->showAd($action, $this->mediumRectangle);
|
||||
}
|
||||
|
||||
/**
|
||||
* Show a rectangle 'ad'
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showRectangle($action)
|
||||
{
|
||||
$this->showAd($action, $this->rectangle);
|
||||
}
|
||||
|
||||
/**
|
||||
* Show a wide skyscraper ad
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showWideSkyscraper($action)
|
||||
{
|
||||
$this->showAd($action, $this->wideSkyscraper);
|
||||
}
|
||||
|
||||
/**
|
||||
* Show a leaderboard ad
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showLeaderboard($action)
|
||||
{
|
||||
$this->showAd($action, $this->leaderboard);
|
||||
}
|
||||
|
||||
/**
|
||||
* Show an ad using OpenX
|
||||
*
|
||||
* @param Action $action Action being shown
|
||||
* @param integer $zone Zone to show
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
|
||||
protected function showAd($action, $zone)
|
||||
{
|
||||
$scr = <<<ENDOFSCRIPT
|
||||
var m3_u = '%s';
|
||||
var m3_r = Math.floor(Math.random()*99999999999);
|
||||
if (!document.MAX_used) document.MAX_used = ',';
|
||||
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
|
||||
document.write ("?zoneid=%d");
|
||||
document.write ('&cb=' + m3_r);
|
||||
if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
|
||||
document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
|
||||
document.write ("&loc=" + escape(window.location));
|
||||
if (document.referrer) document.write ("&referer=" + escape(document.referrer));
|
||||
if (document.context) document.write ("&context=" + escape(document.context));
|
||||
if (document.mmm_fo) document.write ("&mmm_fo=1");
|
||||
document.write ("'><\/scr"+"ipt>");
|
||||
ENDOFSCRIPT;
|
||||
|
||||
$action->inlineScript(sprintf($scr, $this->adScript, $zone));
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -87,7 +87,7 @@ class RealtimePlugin extends Plugin
|
|||
$scripts = $this->_getScripts();
|
||||
|
||||
foreach ($scripts as $script) {
|
||||
$action->script(common_path($script));
|
||||
$action->script($script);
|
||||
}
|
||||
|
||||
$user = common_current_user();
|
||||
|
@ -307,7 +307,7 @@ class RealtimePlugin extends Plugin
|
|||
|
||||
function _getScripts()
|
||||
{
|
||||
return array('plugins/Realtime/realtimeupdate.js');
|
||||
return array(common_path('plugins/Realtime/realtimeupdate.js'));
|
||||
}
|
||||
|
||||
function _updateInitialize($timeline, $user_id)
|
||||
|
|
|
@ -95,9 +95,7 @@ RealtimeUpdate = {
|
|||
$("#notices_primary .notice:first").css({display:"none"});
|
||||
$("#notices_primary .notice:first").fadeIn(1000);
|
||||
|
||||
SN.U.FormXHR($('#'+noticeItemID+' .form_favor'));
|
||||
SN.U.NoticeReplyTo($('#'+noticeItemID));
|
||||
SN.U.FormXHR($('#'+noticeItemID+' .form_repeat'));
|
||||
SN.U.NoticeWithAttachment($('#'+noticeItemID));
|
||||
},
|
||||
|
||||
|
@ -180,7 +178,7 @@ console.log(data);
|
|||
|
||||
ni = ni+"</div>";
|
||||
|
||||
"</li>";
|
||||
ni = ni+"</li>";
|
||||
return ni;
|
||||
},
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<?php
|
||||
/**
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
||||
* Copyright (C) 2008-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
|
||||
|
@ -262,7 +262,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon
|
|||
$notice->is_local = Notice::GATEWAY;
|
||||
|
||||
if (Event::handle('StartNoticeSave', array(&$notice))) {
|
||||
$id = $notice->insert();
|
||||
$notice->insert();
|
||||
Event::handle('EndNoticeSave', array($notice));
|
||||
}
|
||||
|
||||
|
@ -270,17 +270,41 @@ class TwitterStatusFetcher extends ParallelizingDaemon
|
|||
|
||||
Inbox::insertNotice($flink->user_id, $notice->id);
|
||||
|
||||
$notice->blowCaches();
|
||||
$notice->blowOnInsert();
|
||||
|
||||
return $notice;
|
||||
}
|
||||
|
||||
/**
|
||||
* Look up a Profile by profileurl field. Profile::staticGet() was
|
||||
* not working consistently.
|
||||
*
|
||||
* @param string $url the profile url
|
||||
*
|
||||
* @return mixed the first profile with that url, or null
|
||||
*/
|
||||
|
||||
function getProfileByUrl($nickname, $profileurl)
|
||||
{
|
||||
$profile = new Profile();
|
||||
$profile->nickname = $nickname;
|
||||
$profile->profileurl = $profileurl;
|
||||
$profile->limit(1);
|
||||
|
||||
if ($profile->find()) {
|
||||
$profile->fetch();
|
||||
return $profile;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
function ensureProfile($user)
|
||||
{
|
||||
// check to see if there's already a profile for this user
|
||||
|
||||
$profileurl = 'http://twitter.com/' . $user->screen_name;
|
||||
$profile = Profile::staticGet('profileurl', $profileurl);
|
||||
$profile = $this->getProfileByUrl($user->screen_name, $profileurl);
|
||||
|
||||
if (!empty($profile)) {
|
||||
common_debug($this->name() .
|
||||
|
@ -292,6 +316,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon
|
|||
return $profile->id;
|
||||
|
||||
} else {
|
||||
|
||||
common_debug($this->name() . ' - Adding profile and remote profile ' .
|
||||
"for Twitter user: $profileurl.");
|
||||
|
||||
|
@ -306,7 +331,11 @@ class TwitterStatusFetcher extends ParallelizingDaemon
|
|||
$profile->profileurl = $profileurl;
|
||||
$profile->created = common_sql_now();
|
||||
|
||||
$id = $profile->insert();
|
||||
try {
|
||||
$id = $profile->insert();
|
||||
} catch(Exception $e) {
|
||||
common_log(LOG_WARNING, $this->name . ' Couldn\'t insert profile - ' . $e->getMessage());
|
||||
}
|
||||
|
||||
if (empty($id)) {
|
||||
common_log_db_error($profile, 'INSERT', __FILE__);
|
||||
|
@ -326,7 +355,11 @@ class TwitterStatusFetcher extends ParallelizingDaemon
|
|||
$remote_pro->uri = $profileurl;
|
||||
$remote_pro->created = common_sql_now();
|
||||
|
||||
$rid = $remote_pro->insert();
|
||||
try {
|
||||
$rid = $remote_pro->insert();
|
||||
} catch (Exception $e) {
|
||||
common_log(LOG_WARNING, $this->name() . ' Couldn\'t save remote profile - ' . $e->getMessage());
|
||||
}
|
||||
|
||||
if (empty($rid)) {
|
||||
common_log_db_error($profile, 'INSERT', __FILE__);
|
||||
|
@ -446,7 +479,7 @@ class TwitterStatusFetcher extends ParallelizingDaemon
|
|||
if ($this->fetchAvatar($url, $filename)) {
|
||||
$this->newAvatar($id, $size, $mediatype, $filename);
|
||||
} else {
|
||||
common_log(LOG_WARNING, $this->id() .
|
||||
common_log(LOG_WARNING, $id() .
|
||||
" - Problem fetching Avatar: $url");
|
||||
}
|
||||
}
|
||||
|
@ -507,7 +540,11 @@ class TwitterStatusFetcher extends ParallelizingDaemon
|
|||
|
||||
$avatar->created = common_sql_now();
|
||||
|
||||
$id = $avatar->insert();
|
||||
try {
|
||||
$id = $avatar->insert();
|
||||
} catch (Exception $e) {
|
||||
common_log(LOG_WARNING, $this->name() . ' Couldn\'t insert avatar - ' . $e->getMessage());
|
||||
}
|
||||
|
||||
if (empty($id)) {
|
||||
common_log_db_error($avatar, 'INSERT', __FILE__);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/*
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
||||
* Copyright (C) 2008-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
|
||||
|
@ -295,8 +295,17 @@ function format_status($notice)
|
|||
$statustxt = preg_replace('/^@/', ' @', $notice->content);
|
||||
|
||||
// Convert !groups to #hashes
|
||||
|
||||
// XXX: Make this an optional setting?
|
||||
|
||||
$statustxt = preg_replace('/(^|\s)!([A-Za-z0-9]{1,64})/', "\\1#\\2", $statustxt);
|
||||
|
||||
if (mb_strlen($statustxt) > 140) {
|
||||
$noticeUrl = common_shorten_url($notice->uri);
|
||||
$urlLen = mb_strlen($noticeUrl);
|
||||
$statustxt = mb_substr($statustxt, 0, 140 - ($urlLen + 3)) . ' … ' . $noticeUrl;
|
||||
}
|
||||
|
||||
return $statustxt;
|
||||
}
|
||||
|
||||
|
|
|
@ -182,21 +182,6 @@ class UserFlagPlugin extends Plugin
|
|||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add our plugin's CSS to page output
|
||||
*
|
||||
* @param Action $action action being shown
|
||||
*
|
||||
* @return boolean hook result
|
||||
*/
|
||||
|
||||
function onEndShowStatusNetStyles($action)
|
||||
{
|
||||
$action->cssLink(common_path('plugins/UserFlag/userflag.css'),
|
||||
null, 'screen, projection, tv');
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize any flagging buttons on the page
|
||||
*
|
||||
|
@ -208,8 +193,8 @@ class UserFlagPlugin extends Plugin
|
|||
function onEndShowScripts($action)
|
||||
{
|
||||
$action->inlineScript('if ($(".form_entity_flag").length > 0) { '.
|
||||
'SN.U.FormXHR($(".form_entity_flag")); '.
|
||||
'}');
|
||||
'$(".form_entity_flag").bind("click", function() {'.
|
||||
'SN.U.FormXHR($(this)); return false; }); }');
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ class ClearFlagForm extends ProfileActionForm
|
|||
|
||||
function formClass()
|
||||
{
|
||||
return 'form_entity_clearflag';
|
||||
return 'form_user_clearflag';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
.entity_flag input.submit,
|
||||
.entity_flag p {
|
||||
background:url(icon_flag.gif) 5px 5px no-repeat;
|
||||
}
|
92
plugins/UserLimitPlugin.php
Normal file
92
plugins/UserLimitPlugin.php
Normal file
|
@ -0,0 +1,92 @@
|
|||
<?php
|
||||
/**
|
||||
* StatusNet, the distributed open-source microblogging tool
|
||||
*
|
||||
* Plugin to limit number of users that can register (best for cloud providers)
|
||||
*
|
||||
* 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 Action
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@status.net>
|
||||
* @copyright 2009 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);
|
||||
}
|
||||
|
||||
/**
|
||||
* Plugin to limit number of users that can register (best for cloud providers)
|
||||
*
|
||||
* For cloud providers whose freemium model is based on how many
|
||||
* users can register. We use it on the StatusNet Cloud.
|
||||
*
|
||||
* @category Plugin
|
||||
* @package StatusNet
|
||||
* @author Evan Prodromou <evan@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/
|
||||
*
|
||||
* @seeAlso Location
|
||||
*/
|
||||
|
||||
class UserLimitPlugin extends Plugin
|
||||
{
|
||||
public $maxUsers = null;
|
||||
|
||||
function onStartUserRegister(&$user, &$profile)
|
||||
{
|
||||
$this->_checkMaxUsers();
|
||||
return true;
|
||||
}
|
||||
|
||||
function onStartRegistrationTry($action)
|
||||
{
|
||||
$this->_checkMaxUsers();
|
||||
return true;
|
||||
}
|
||||
|
||||
function _checkMaxUsers()
|
||||
{
|
||||
if (!is_null($this->maxUsers)) {
|
||||
|
||||
$cls = new User();
|
||||
|
||||
$cnt = $cls->count();
|
||||
|
||||
if ($cnt >= $this->maxUsers) {
|
||||
$msg = sprintf(_('Cannot register; maximum number of users (%d) reached.'),
|
||||
$this->maxUsers);
|
||||
|
||||
throw new ClientException($msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function onPluginVersion(&$versions)
|
||||
{
|
||||
$versions[] = array('name' => 'UserLimit',
|
||||
'version' => STATUSNET_VERSION,
|
||||
'author' => 'Evan Prodromou',
|
||||
'homepage' => 'http://status.net/wiki/Plugin:UserLimit',
|
||||
'description' =>
|
||||
_m('Limit the number of users who can register.'));
|
||||
return true;
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user