mirror of
https://github.com/owncloudarchive/contacts.git
synced 2025-01-30 19:52:17 +01:00
Merge branch 'master' of https://github.com/owncloud/contacts
This commit is contained in:
commit
86fb9df26e
@ -26,7 +26,6 @@ Any issues should be posted in [this repository](https://github.com/owncloud/con
|
||||
|
||||
### Master branch:
|
||||
This branch is still in development. Do not use it in a production environment.
|
||||
To test it you will need the master branch of [owncloud/core](https://github.com/owncloud/core),
|
||||
[owncloud/3rdparty](https://github.com/owncloud/3rdparty) and
|
||||
[owncloud/appframework](https://github.com/owncloud/appframework).
|
||||
To test it you will need the master branch of [owncloud/core](https://github.com/owncloud/core) and
|
||||
[owncloud/3rdparty](https://github.com/owncloud/3rdparty).
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
namespace OCA\Contacts;
|
||||
use \OC\AppFramework\Core\API;
|
||||
|
||||
//require_once __DIR__ . '/../controller/groupcontroller.php';
|
||||
//require_once __DIR__ . '/../lib/controller/pagecontroller.php';
|
||||
\Sabre\VObject\Component::$classMap['VCARD'] = '\OCA\Contacts\VObject\VCard';
|
||||
\Sabre\VObject\Property::$classMap['CATEGORIES'] = 'OCA\Contacts\VObject\GroupProperty';
|
||||
\Sabre\VObject\Property::$classMap['FN'] = '\OC\VObject\StringProperty';
|
||||
@ -20,8 +20,6 @@ use \OC\AppFramework\Core\API;
|
||||
\Sabre\VObject\Property::$classMap['GEO'] = '\OC\VObject\CompoundProperty';
|
||||
\Sabre\VObject\Property::$classMap['ORG'] = '\OC\VObject\CompoundProperty';
|
||||
|
||||
$api = new API('contacts');
|
||||
|
||||
\OC::$server->getNavigationManager()->add(array(
|
||||
'id' => 'contacts',
|
||||
'order' => 10,
|
||||
@ -30,7 +28,8 @@ $api = new API('contacts');
|
||||
'name' => \OCP\Util::getL10N('contacts')->t('Contacts')
|
||||
)
|
||||
);
|
||||
\OC::$server->getNavigationManager()->setActiveEntry('contacts_index');
|
||||
|
||||
$api = new API('contacts');
|
||||
|
||||
$api->connectHook('OC_User', 'post_createUser', '\OCA\Contacts\Hooks', 'userCreated');
|
||||
$api->connectHook('OC_User', 'post_deleteUser', '\OCA\Contacts\Hooks', 'userDeleted');
|
||||
|
@ -11,21 +11,19 @@ namespace OCA\Contacts;
|
||||
use OCA\Contacts\Dispatcher;
|
||||
|
||||
//define the routes
|
||||
//for the index
|
||||
$this->create('contacts_index', '/')
|
||||
->actionInclude('contacts/index.php');
|
||||
// ->action(
|
||||
// function($params){
|
||||
// //
|
||||
// }
|
||||
// );
|
||||
->get()
|
||||
->action(
|
||||
function($params){
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('PageController', 'index');
|
||||
}
|
||||
);
|
||||
|
||||
$this->create('contacts_jsconfig', 'ajax/config.js')
|
||||
->actionInclude('contacts/js/config.php');
|
||||
|
||||
/* TODO: Check what it requires to be a RESTful API. I think maybe {user}
|
||||
shouldn't be in the URI but be authenticated in headers or elsewhere.
|
||||
*/
|
||||
$this->create('contacts_address_books_for_user', 'addressbooks/')
|
||||
->get()
|
||||
->action(
|
||||
@ -42,7 +40,7 @@ $this->create('contacts_address_book_add', 'addressbook/{backend}/add')
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('AddressBookController', 'addAddressBook', $params);
|
||||
$dispatcher->dispatch('AddressBookController', 'addAddressBook');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend'));
|
||||
@ -53,7 +51,7 @@ $this->create('contacts_address_book', 'addressbook/{backend}/{addressBookId}')
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('AddressBookController', 'getAddressBook', $params);
|
||||
$dispatcher->dispatch('AddressBookController', 'getAddressBook');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -64,7 +62,7 @@ $this->create('contacts_address_book_update', 'addressbook/{backend}/{addressBoo
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('AddressBookController', 'updateAddressBook', $params);
|
||||
$dispatcher->dispatch('AddressBookController', 'updateAddressBook');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -75,7 +73,7 @@ $this->create('contacts_address_book_delete', 'addressbook/{backend}/{addressBoo
|
||||
function($params) {
|
||||
$dispatcher = new Dispatcher($params);
|
||||
session_write_close();
|
||||
$dispatcher->dispatch('AddressBookController', 'deleteAddressBook', $params);
|
||||
$dispatcher->dispatch('AddressBookController', 'deleteAddressBook');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -86,7 +84,7 @@ $this->create('contacts_address_book_activate', 'addressbook/{backend}/{addressB
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('AddressBookController', 'activateAddressBook', $params);
|
||||
$dispatcher->dispatch('AddressBookController', 'activateAddressBook');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -97,7 +95,7 @@ $this->create('contacts_address_book_add_contact', 'addressbook/{backend}/{addre
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('AddressBookController', 'addChild', $params);
|
||||
$dispatcher->dispatch('AddressBookController', 'addChild');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -108,7 +106,7 @@ $this->create('contacts_address_book_delete_contact', 'addressbook/{backend}/{ad
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('AddressBookController', 'deleteChild', $params);
|
||||
$dispatcher->dispatch('AddressBookController', 'deleteChild');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId', 'contactId'));
|
||||
@ -119,7 +117,7 @@ $this->create('contacts_address_book_delete_contacts', 'addressbook/{backend}/{a
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('AddressBookController', 'deleteChildren', $params);
|
||||
$dispatcher->dispatch('AddressBookController', 'deleteChildren');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId', 'contactId'));
|
||||
@ -130,7 +128,7 @@ $this->create('contacts_address_book_move_contact', 'addressbook/{backend}/{addr
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('AddressBookController', 'moveChild', $params);
|
||||
$dispatcher->dispatch('AddressBookController', 'moveChild');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId', 'contactId'));
|
||||
@ -141,7 +139,7 @@ $this->create('contacts_import_upload', 'addressbook/{backend}/{addressBookId}/i
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ImportController', 'upload', $params);
|
||||
$dispatcher->dispatch('ImportController', 'upload');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -152,7 +150,7 @@ $this->create('contacts_import_prepare', 'addressbook/{backend}/{addressBookId}/
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ImportController', 'prepare', $params);
|
||||
$dispatcher->dispatch('ImportController', 'prepare');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -163,7 +161,7 @@ $this->create('contacts_import_start', 'addressbook/{backend}/{addressBookId}/im
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ImportController', 'start', $params);
|
||||
$dispatcher->dispatch('ImportController', 'start');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -174,7 +172,7 @@ $this->create('contacts_import_status', 'addressbook/{backend}/{addressBookId}/i
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ImportController', 'status', $params);
|
||||
$dispatcher->dispatch('ImportController', 'status');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -185,7 +183,7 @@ $this->create('contacts_address_book_export', 'addressbook/{backend}/{addressBoo
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ExportController', 'exportAddressBook', $params);
|
||||
$dispatcher->dispatch('ExportController', 'exportAddressBook');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressBookId'));
|
||||
@ -196,7 +194,7 @@ $this->create('contacts_contact_export', 'addressbook/{backend}/{addressBookId}/
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ExportController', 'exportContact', $params);
|
||||
$dispatcher->dispatch('ExportController', 'exportContact');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId'));
|
||||
@ -207,7 +205,7 @@ $this->create('contacts_export_selected', 'exportSelected')
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ExportController', 'exportSelected', $params);
|
||||
$dispatcher->dispatch('ExportController', 'exportSelected');
|
||||
}
|
||||
);
|
||||
|
||||
@ -217,7 +215,7 @@ $this->create('contacts_contact_photo', 'addressbook/{backend}/{addressBookId}/c
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'getPhoto', $params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'getPhoto');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId'));
|
||||
@ -228,7 +226,7 @@ $this->create('contacts_upload_contact_photo', 'addressbook/{backend}/{addressBo
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'uploadPhoto', $params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'uploadPhoto');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId'));
|
||||
@ -239,7 +237,7 @@ $this->create('contacts_cache_contact_photo', 'addressbook/{backend}/{addressBoo
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'cacheCurrentPhoto', $params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'cacheCurrentPhoto');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId'));
|
||||
@ -250,7 +248,7 @@ $this->create('contacts_cache_fs_photo', 'addressbook/{backend}/{addressBookId}/
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'cacheFileSystemPhoto', $params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'cacheFileSystemPhoto');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId'));
|
||||
@ -261,7 +259,7 @@ $this->create('contacts_tmp_contact_photo', 'addressbook/{backend}/{addressBookI
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'getTempPhoto', $params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'getTempPhoto');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId', 'key'));
|
||||
@ -272,7 +270,7 @@ $this->create('contacts_crop_contact_photo', 'addressbook/{backend}/{addressBook
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'cropPhoto', $params);
|
||||
$dispatcher->dispatch('ContactPhotoController', 'cropPhoto');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId', 'key'));
|
||||
@ -284,7 +282,7 @@ $this->create('contacts_contact_patch', 'addressbook/{backend}/{addressBookId}/c
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ContactController', 'patch', $params);
|
||||
$dispatcher->dispatch('ContactController', 'patch');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId'));
|
||||
@ -295,7 +293,7 @@ $this->create('contacts_contact_get', 'addressbook/{backend}/{addressBookId}/con
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ContactController', 'getContact', $params);
|
||||
$dispatcher->dispatch('ContactController', 'getContact');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId'));
|
||||
@ -307,7 +305,7 @@ $this->create('contacts_contact_save_all', 'addressbook/{backend}/{addressBookId
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('ContactController', 'saveContact', $params);
|
||||
$dispatcher->dispatch('ContactController', 'saveContact');
|
||||
}
|
||||
)
|
||||
->requirements(array('backend', 'addressbook', 'contactId'));
|
||||
@ -318,7 +316,7 @@ $this->create('contacts_categories_list', 'groups/')
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('GroupController', 'getGroups', $params);
|
||||
$dispatcher->dispatch('GroupController', 'getGroups');
|
||||
}
|
||||
);
|
||||
|
||||
@ -328,7 +326,7 @@ $this->create('contacts_categories_add', 'groups/add')
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('GroupController', 'addGroup', $params);
|
||||
$dispatcher->dispatch('GroupController', 'addGroup');
|
||||
}
|
||||
);
|
||||
|
||||
@ -338,7 +336,7 @@ $this->create('contacts_categories_delete', 'groups/delete')
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('GroupController', 'deleteGroup', $params);
|
||||
$dispatcher->dispatch('GroupController', 'deleteGroup');
|
||||
}
|
||||
);
|
||||
|
||||
@ -348,7 +346,7 @@ $this->create('contacts_categories_rename', 'groups/rename')
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('GroupController', 'renameGroup', $params);
|
||||
$dispatcher->dispatch('GroupController', 'renameGroup');
|
||||
}
|
||||
);
|
||||
|
||||
@ -358,7 +356,7 @@ $this->create('contacts_categories_addto', 'groups/addto/{categoryId}')
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('GroupController', 'addToGroup', $params);
|
||||
$dispatcher->dispatch('GroupController', 'addToGroup');
|
||||
}
|
||||
);
|
||||
|
||||
@ -368,7 +366,7 @@ $this->create('contacts_categories_removefrom', 'groups/removefrom/{categoryId}'
|
||||
function($params) {
|
||||
session_write_close();
|
||||
$dispatcher = new Dispatcher($params);
|
||||
$dispatcher->dispatch('GroupController', 'removeFromGroup', $params);
|
||||
$dispatcher->dispatch('GroupController', 'removeFromGroup');
|
||||
}
|
||||
)
|
||||
->requirements(array('categoryId'));
|
||||
|
@ -1 +1 @@
|
||||
0.2.80
|
||||
0.2.81
|
165
import.php
165
import.php
@ -1,165 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (c) 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
|
||||
* This file is licensed under the Affero General Public License version 3 or
|
||||
* later.
|
||||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
namespace OCA\Contacts;
|
||||
|
||||
use Sabre\VObject;
|
||||
|
||||
//check for addressbooks rights or create new one
|
||||
ob_start();
|
||||
|
||||
\OCP\JSON::checkLoggedIn();
|
||||
\OCP\App::checkAppEnabled('contacts');
|
||||
\OCP\JSON::callCheck();
|
||||
session_write_close();
|
||||
|
||||
$nl = "\n";
|
||||
|
||||
global $progresskey;
|
||||
$progresskey = 'contacts.import-' . (isset($_GET['progresskey'])?$_GET['progresskey']:'');
|
||||
|
||||
if (isset($_GET['progress']) && $_GET['progress']) {
|
||||
echo \OC_Cache::get($progresskey);
|
||||
die;
|
||||
}
|
||||
|
||||
function writeProgress($pct) {
|
||||
global $progresskey;
|
||||
\OC_Cache::set($progresskey, $pct, 300);
|
||||
}
|
||||
writeProgress('10');
|
||||
$view = null;
|
||||
$inputfile = strtr($_POST['file'], array('/' => '', "\\" => ''));
|
||||
if(\OC\Files\Filesystem::isFileBlacklisted($inputfile)) {
|
||||
\OCP\JSON::error(array('data' => array('message' => 'Upload of blacklisted file: ' . $inputfile)));
|
||||
exit();
|
||||
}
|
||||
if(isset($_POST['fstype']) && $_POST['fstype'] == 'OC_FilesystemView') {
|
||||
$view = \OCP\Files::getStorage('contacts');
|
||||
$file = $view->file_get_contents('/imports/' . $inputfile);
|
||||
} else {
|
||||
$file = \OC\Files\Filesystem::file_get_contents($_POST['path'] . '/' . $inputfile);
|
||||
}
|
||||
if(!$file) {
|
||||
\OCP\JSON::error(array('data' => array('message' => 'Import file was empty.')));
|
||||
exit();
|
||||
}
|
||||
|
||||
$id = $_POST['id'];
|
||||
|
||||
if(!$id) {
|
||||
\OCP\JSON::error(
|
||||
array(
|
||||
'data' => array(
|
||||
'message' => 'Error getting the ID of the address book.',
|
||||
'file'=>\OCP\Util::sanitizeHTML($inputfile)
|
||||
)
|
||||
)
|
||||
);
|
||||
exit();
|
||||
}
|
||||
|
||||
$app = new App();
|
||||
$addressBook = $app->getAddressBook('local', $id);
|
||||
|
||||
//analyse the contacts file
|
||||
writeProgress('40');
|
||||
$file = str_replace(array("\r","\n\n"), array("\n","\n"), $file);
|
||||
$lines = explode($nl, $file);
|
||||
|
||||
$inelement = false;
|
||||
$parts = array();
|
||||
$card = array();
|
||||
foreach($lines as $line) {
|
||||
if(strtoupper(trim($line)) == 'BEGIN:VCARD') {
|
||||
$inelement = true;
|
||||
} elseif (strtoupper(trim($line)) == 'END:VCARD') {
|
||||
$card[] = $line;
|
||||
$parts[] = implode($nl, $card);
|
||||
$card = array();
|
||||
$inelement = false;
|
||||
}
|
||||
if ($inelement === true && trim($line) != '') {
|
||||
$card[] = $line;
|
||||
}
|
||||
}
|
||||
//import the contacts
|
||||
writeProgress('70');
|
||||
$imported = 0;
|
||||
$failed = 0;
|
||||
$partial = 0;
|
||||
if(!count($parts) > 0) {
|
||||
\OCP\JSON::error(
|
||||
array(
|
||||
'data' => array(
|
||||
'message' => 'No contacts to import in '
|
||||
. \OCP\Util::sanitizeHTML($inputfile).'. Please check if the file is corrupted.',
|
||||
'file'=>OCP\Util::sanitizeHTML($inputfile)
|
||||
)
|
||||
)
|
||||
);
|
||||
if(isset($_POST['fstype']) && $_POST['fstype'] == 'OC_FilesystemView') {
|
||||
if(!$view->unlink('/imports/' . $inputfile)) {
|
||||
\OCP\Util::writeLog('contacts',
|
||||
'Import: Error unlinking OC_FilesystemView ' . '/' . \OCP\Util::sanitizeHTML($inputfile),
|
||||
\OCP\Util::ERROR);
|
||||
}
|
||||
}
|
||||
exit();
|
||||
}
|
||||
foreach($parts as $part) {
|
||||
try {
|
||||
$vcard = VObject\Reader::read($part);
|
||||
} catch (VObject\ParseException $e) {
|
||||
try {
|
||||
$vcard = VObject\Reader::read($part, VObject\Reader::OPTION_IGNORE_INVALID_LINES);
|
||||
$partial += 1;
|
||||
\OCP\Util::writeLog('contacts',
|
||||
'Import: Retrying reading card. Error parsing VCard: ' . $e->getMessage(),
|
||||
\OCP\Util::ERROR);
|
||||
} catch (\Exception $e) {
|
||||
$failed += 1;
|
||||
\OCP\Util::writeLog('contacts',
|
||||
'Import: skipping card. Error parsing VCard: ' . $e->getMessage(),
|
||||
\OCP\Util::ERROR);
|
||||
continue; // Ditch cards that can't be parsed by Sabre.
|
||||
}
|
||||
}
|
||||
try {
|
||||
if($addressBook->addChild($vcard)) {
|
||||
$imported += 1;
|
||||
} else {
|
||||
$failed += 1;
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
\OCP\Util::writeLog('contacts', __LINE__ . ' ' .
|
||||
'Error importing vcard: ' . $e->getMessage() . $nl . $vcard->serialize(),
|
||||
\OCP\Util::ERROR);
|
||||
$failed += 1;
|
||||
}
|
||||
}
|
||||
//done the import
|
||||
writeProgress('100');
|
||||
sleep(3);
|
||||
\OC_Cache::remove($progresskey);
|
||||
if(isset($_POST['fstype']) && $_POST['fstype'] == 'OC_FilesystemView') {
|
||||
if(!$view->unlink('/imports/' . $inputfile)) {
|
||||
\OCP\Util::writeLog('contacts',
|
||||
'Import: Error unlinking OC_FilesystemView ' . '/' . $inputfile,
|
||||
\OCP\Util::ERROR);
|
||||
}
|
||||
}
|
||||
\OCP\JSON::success(
|
||||
array(
|
||||
'data' => array(
|
||||
'imported'=>$imported,
|
||||
'failed'=>$failed,
|
||||
'file'=>\OCP\Util::sanitizeHTML($inputfile),
|
||||
)
|
||||
)
|
||||
);
|
59
index.php
59
index.php
@ -1,59 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (c) 2012, 2013 Thomas Tanghus <thomas@tanghus.net>
|
||||
* Copyright (c) 2011 Jakob Sack mail@jakobsack.de
|
||||
* This file is licensed under the Affero General Public License version 3 or
|
||||
* later.
|
||||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
namespace OCA\Contacts;
|
||||
|
||||
// Check if we are a user
|
||||
\OCP\User::checkLoggedIn();
|
||||
\OCP\App::checkAppEnabled('contacts');
|
||||
|
||||
\OCP\App::setActiveNavigationEntry('contacts_index');
|
||||
|
||||
$impp_types = Utils\Properties::getTypesForProperty('IMPP');
|
||||
$adr_types = Utils\Properties::getTypesForProperty('ADR');
|
||||
$phone_types = Utils\Properties::getTypesForProperty('TEL');
|
||||
$email_types = Utils\Properties::getTypesForProperty('EMAIL');
|
||||
$ims = Utils\Properties::getIMOptions();
|
||||
$im_protocols = array();
|
||||
foreach($ims as $name => $values) {
|
||||
$im_protocols[$name] = $values['displayname'];
|
||||
}
|
||||
|
||||
$maxUploadFilesize = \OCP\Util::maxUploadFilesize('/');
|
||||
|
||||
\OCP\Util::addScript('', 'jquery.multiselect');
|
||||
\OCP\Util::addScript('', 'tags');
|
||||
\OCP\Util::addScript('contacts', 'jquery.combobox');
|
||||
\OCP\Util::addScript('contacts', 'modernizr.custom');
|
||||
\OCP\Util::addScript('contacts', 'app');
|
||||
\OCP\Util::addScript('contacts', 'addressbooks');
|
||||
\OCP\Util::addScript('contacts', 'contacts');
|
||||
\OCP\Util::addScript('contacts', 'storage');
|
||||
\OCP\Util::addScript('contacts', 'groups');
|
||||
\OCP\Util::addScript('contacts', 'jquery.ocaddnew');
|
||||
\OCP\Util::addScript('files', 'jquery.fileupload');
|
||||
\OCP\Util::addScript('3rdparty/Jcrop', 'jquery.Jcrop');
|
||||
\OCP\Util::addStyle('3rdparty/fontawesome', 'font-awesome');
|
||||
\OCP\Util::addStyle('contacts', 'font-awesome');
|
||||
\OCP\Util::addStyle('', 'jquery.multiselect');
|
||||
\OCP\Util::addStyle('contacts', 'jquery.combobox');
|
||||
\OCP\Util::addStyle('contacts', 'jquery.ocaddnew');
|
||||
\OCP\Util::addStyle('3rdparty/Jcrop', 'jquery.Jcrop');
|
||||
\OCP\Util::addStyle('contacts', 'contacts');
|
||||
|
||||
$tmpl = new \OCP\Template( "contacts", "contacts", "user" );
|
||||
$tmpl->assign('uploadMaxFilesize', $maxUploadFilesize);
|
||||
$tmpl->assign('uploadMaxHumanFilesize',
|
||||
\OCP\Util::humanFileSize($maxUploadFilesize), false);
|
||||
$tmpl->assign('phone_types', $phone_types);
|
||||
$tmpl->assign('email_types', $email_types);
|
||||
$tmpl->assign('adr_types', $adr_types);
|
||||
$tmpl->assign('impp_types', $impp_types);
|
||||
$tmpl->assign('im_protocols', $im_protocols);
|
||||
$tmpl->printPage();
|
@ -384,7 +384,7 @@ OC.Contacts = OC.Contacts || {};
|
||||
};
|
||||
$.when(
|
||||
self.storage.startImport(
|
||||
data.backend, data.addressbookid,
|
||||
data.backend, data.addressBookId,
|
||||
{filename:data.filename, progresskey:data.progresskey}
|
||||
))
|
||||
.then(function(response) {
|
||||
@ -393,7 +393,7 @@ OC.Contacts = OC.Contacts || {};
|
||||
console.log('Import done');
|
||||
self.$importStatusText.text(t('contacts', 'Imported {imported} contacts. {failed} failed.',
|
||||
{imported:response.data.imported, failed: response.data.failed}));
|
||||
var addressBook = self.find({id:response.data.addressbookid, backend: response.data.backend});
|
||||
var addressBook = self.find({id:response.data.addressBookId, backend: response.data.backend});
|
||||
$(document).trigger('status.addressbook.imported', {
|
||||
addressbook: addressBook
|
||||
});
|
||||
@ -535,7 +535,7 @@ OC.Contacts = OC.Contacts || {};
|
||||
*/
|
||||
AddressBookList.prototype.add = function(name, cb) {
|
||||
console.log('AddressBookList.add', name, typeof cb);
|
||||
var defer = $.Deferred;
|
||||
var defer = $.Deferred();
|
||||
// Check for wrong, duplicate or empty name
|
||||
if(typeof name !== 'string') {
|
||||
throw new TypeError('BadArgument: AddressBookList.add() only takes String arguments.');
|
||||
|
@ -586,6 +586,7 @@ OC.Contacts = OC.Contacts || {
|
||||
if(data.deleteOther) {
|
||||
self.contacts.delayedDelete(mergees);
|
||||
}
|
||||
console.log('merger', merger);
|
||||
self.openContact(merger.getId());
|
||||
}
|
||||
});
|
||||
|
@ -419,7 +419,7 @@ OC.Contacts = OC.Contacts || {};
|
||||
this.setAsSaving(this.$fullelem, true);
|
||||
var data = JSON.stringify(this.data);
|
||||
//console.log('stringified', data);
|
||||
$.when(this.storage.saveAllProperties(this.metadata.backend, this.metadata.parent, this.id, data))
|
||||
$.when(this.storage.saveAllProperties(this.metadata.backend, this.metadata.parent, this.id, {data:this.data}))
|
||||
.then(function(response) {
|
||||
if(!response.error) {
|
||||
self.data = response.data.data;
|
||||
@ -758,8 +758,9 @@ OC.Contacts = OC.Contacts || {};
|
||||
self.data = response.data.data;
|
||||
self.$groupSelect.multiselect('enable');
|
||||
// Add contact to current group
|
||||
if(self.groupprops && self.groupprops.currentgroup.id !== 'all'
|
||||
&& self.groupprops.currentgroup.id !== 'fav') {
|
||||
if(self.groupprops
|
||||
&& ['all', 'fav', 'uncategorized'].indexOf(self.groupprops.currentgroup.id) === -1
|
||||
) {
|
||||
if(!self.data.CATEGORIES) {
|
||||
self.addToGroup(self.groupprops.currentgroup.name);
|
||||
$(document).trigger('request.contact.addtogroup', {
|
||||
@ -1860,7 +1861,7 @@ OC.Contacts = OC.Contacts || {};
|
||||
$(document).bind('status.contact.added', function(e, data) {
|
||||
self.length += 1;
|
||||
self.contacts[String(data.id)] = data.contact;
|
||||
self.insertContact(data.contact.renderListItem(true));
|
||||
//self.insertContact(data.contact.renderListItem(true));
|
||||
});
|
||||
$(document).bind('status.contact.moved', function(e, data) {
|
||||
var contact = data.contact;
|
||||
|
@ -7,6 +7,7 @@ OC.Contacts = OC.Contacts || {};
|
||||
this.getAllResponseHeaders = jqXHR.getAllResponseHeaders;
|
||||
this.getResponseHeader = jqXHR.getResponseHeader;
|
||||
this.statusCode = jqXHR.status;
|
||||
this.error = false;
|
||||
// 204 == No content
|
||||
// 304 == Not modified
|
||||
if(!response) {
|
||||
@ -29,8 +30,7 @@ OC.Contacts = OC.Contacts || {};
|
||||
this.message = t('contacts', 'Server error! Please inform system administator');
|
||||
}
|
||||
} else {
|
||||
this.error = false;
|
||||
this.data = response.data || response;
|
||||
this.data = response;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: ach\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
1161
l10n/ady/contacts.po
Normal file
1161
l10n/ady/contacts.po
Normal file
@ -0,0 +1,1161 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ady\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:298
|
||||
msgid "Uploading..."
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:301 js/loader.js:68
|
||||
msgid "Importing..."
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:324
|
||||
msgid "Preparing..."
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:372
|
||||
msgid "Imported {count} of {total} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:394
|
||||
msgid "Imported {imported} contacts. {failed} failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:550
|
||||
msgid "An address book called {name} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:584
|
||||
msgid "Failed adding address book: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:626
|
||||
msgid "Failed loading address books: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:215
|
||||
msgid "Indexing contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:225
|
||||
msgid "Unrecoverable error loading address books: {msg}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:226
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:589
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:21
|
||||
msgid "Please choose the addressbook"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:22 templates/contacts.php:29
|
||||
msgid "Import into..."
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:31
|
||||
msgid "Error loading import template"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:48
|
||||
msgid "Import contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:61 templates/contacts.php:25
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:92
|
||||
msgid "Import done"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:95 templates/contacts.php:91 templates/contacts.php:322
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:25 js/settings.js:45 js/settings.js:75 js/settings.js:112
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:75
|
||||
msgid "Displayname cannot be empty."
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:97 templates/settings.php:26
|
||||
msgid "Show CardDav link"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:98 templates/settings.php:29
|
||||
msgid "Show read-only VCF link"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:99 templates/contacts.php:57 templates/contacts.php:78
|
||||
#: templates/contacts.php:323 templates/settings.php:40
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:101 templates/contacts.php:467 templates/settings.php:45
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:102 templates/contacts.php:58 templates/contacts.php:77
|
||||
#: templates/contacts.php:268 templates/contacts.php:275
|
||||
#: templates/contacts.php:282 templates/contacts.php:289
|
||||
#: templates/contacts.php:337 templates/contacts.php:468
|
||||
#: templates/settings.php:50
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:159 templates/settings.php:66
|
||||
msgid "More..."
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:162
|
||||
msgid "Less..."
|
||||
msgstr ""
|
||||
|
||||
#: js/storage.js:29
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:152
|
||||
msgid "You do not have permissions to see this contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:159
|
||||
msgid "Contact not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:186
|
||||
msgid "You do not have permissions to see these contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:213
|
||||
msgid "You do not have permissions add contacts to the address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:216
|
||||
msgid "The backend for this address book does not support adding contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:240 lib/addressbook.php:266 lib/contact.php:248
|
||||
msgid "You do not have permissions to delete this contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:243 lib/addressbook.php:269
|
||||
msgid "The backend for this address book does not support deleting contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:290
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:332
|
||||
msgid "The backend for this address book does not support updating"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:358
|
||||
msgid "You don't have permissions to update the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:369
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:114 lib/contact.php:161
|
||||
msgid "You do not have permissions to see this contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:263
|
||||
msgid "You do not have permissions to update this contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:274
|
||||
msgid "The backend for this contact does not support updating it"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:292
|
||||
msgid "This backend not support adding contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:402 lib/contact.php:419
|
||||
msgid "Property not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:467
|
||||
msgid " Missing IM parameter for: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:475
|
||||
msgid "Unknown IM: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:788
|
||||
msgid "{name}'s Birthday"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:110
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:69
|
||||
msgid "Error getting user photo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:87
|
||||
#: lib/controller/importcontroller.php:36
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:95
|
||||
#: lib/controller/importcontroller.php:44
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:96
|
||||
#: lib/controller/importcontroller.php:45
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:97
|
||||
#: lib/controller/importcontroller.php:47
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:98
|
||||
#: lib/controller/importcontroller.php:48
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:99
|
||||
#: lib/controller/importcontroller.php:49
|
||||
msgid "No file was uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:100
|
||||
#: lib/controller/importcontroller.php:50
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:115
|
||||
msgid "Couldn't load temporary image: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:124
|
||||
#: lib/controller/contactphotocontroller.php:159
|
||||
msgid "Couldn't save temporary image: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:188
|
||||
msgid "No photo path was submitted."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:195
|
||||
msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:57 lib/controller/groupcontroller.php:79
|
||||
msgid "No group name given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:64
|
||||
msgid "Error adding group."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:127
|
||||
msgid "No group name to rename from given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:131
|
||||
msgid "No group name to rename to given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:137
|
||||
msgid "Error renaming group."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:175
|
||||
#: lib/controller/groupcontroller.php:223
|
||||
msgid "Group ID missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:180
|
||||
msgid "Group name missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:185
|
||||
#: lib/controller/groupcontroller.php:228
|
||||
msgid "Contact ID missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:51
|
||||
msgid "Failed to write to disk"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:62
|
||||
msgid "Not enough storage available"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:70
|
||||
msgid "Attempt to upload blacklisted file:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:92
|
||||
msgid "Error uploading contacts to storage."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:137
|
||||
msgid "Error moving file to imports folder."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:154
|
||||
msgid "You do not have permissions to import into this address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:162
|
||||
msgid "File name missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:167
|
||||
#: lib/controller/importcontroller.php:283
|
||||
msgid "Progress key missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:173
|
||||
msgid "Attempt to access blacklisted file:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:215
|
||||
msgid "No contacts found in: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/settingscontroller.php:35
|
||||
msgid "No key is given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/settingscontroller.php:39
|
||||
msgid "No value is given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/settingscontroller.php:50
|
||||
msgid "Could not set preference: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/searchprovider.php:24
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/jsonserializer.php:104 lib/utils/properties.php:155
|
||||
#: lib/utils/properties.php:168 lib/utils/properties.php:175
|
||||
#: lib/utils/properties.php:190
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/jsonserializer.php:107
|
||||
msgid "HomePage"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:66
|
||||
msgid "Jabber"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:71
|
||||
msgid "Internet call"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:76
|
||||
msgid "AIM"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:81
|
||||
msgid "MSN"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:86
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:91
|
||||
msgid "GoogleTalk"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:96
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:101
|
||||
msgid "XMPP"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:106
|
||||
msgid "ICQ"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:111
|
||||
msgid "Yahoo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:116
|
||||
msgid "Skype"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:121
|
||||
msgid "QQ"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:126
|
||||
msgid "GaduGadu"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:153 lib/utils/properties.php:161
|
||||
#: lib/utils/properties.php:172 lib/utils/properties.php:189
|
||||
msgid "Work"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:154 lib/utils/properties.php:159
|
||||
#: lib/utils/properties.php:173
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:160
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:162
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:163
|
||||
msgid "Voice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:164
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:165
|
||||
msgid "Fax"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:166
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:167
|
||||
msgid "Pager"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:174
|
||||
msgid "Internet"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:187
|
||||
msgid "Friends"
|
||||
msgstr ""
|
||||
|
||||
#: lib/utils/properties.php:188
|
||||
msgid "Family"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:6
|
||||
msgid "New Contact"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:10
|
||||
msgid "Group name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:10
|
||||
msgid "New Group"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:19
|
||||
msgid "Address books"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:22 templates/contacts.php:47
|
||||
#: templates/contacts.php:67
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:22
|
||||
msgid "Add Address Book"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:31 templates/contacts.php:32
|
||||
msgid "Select file..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:45 templates/contacts.php:65
|
||||
msgid "(De-)select all"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:46 templates/contacts.php:66
|
||||
msgid "Sort order"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:48 templates/contacts.php:68
|
||||
msgid "First- Lastname"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:49 templates/contacts.php:69
|
||||
msgid "Last-, Firstname"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:53 templates/contacts.php:80
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:55 templates/contacts.php:82
|
||||
msgid "Favorite"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:56 templates/contacts.php:83
|
||||
msgid "Merge selected"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:92
|
||||
msgid "Keyboard shortcuts"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:94
|
||||
msgid "Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:97
|
||||
msgid "Next contact in list"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:99
|
||||
msgid "Previous contact in list"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:101
|
||||
msgid "Expand/collapse current addressbook"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:103
|
||||
msgid "Next addressbook"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:105
|
||||
msgid "Previous addressbook"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:109
|
||||
msgid "Actions"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:112
|
||||
msgid "Refresh contacts list"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:114
|
||||
msgid "Add new contact"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:116
|
||||
msgid "Add new addressbook"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:118
|
||||
msgid "Delete current contact"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:124
|
||||
msgid ""
|
||||
"<h3>You have no contacts in your address book or your address book is "
|
||||
"disabled.</h3><p>Add a new contact or import existing contacts from a VCF "
|
||||
"file.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:127
|
||||
msgid "Add contact"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:174
|
||||
msgid "Delete group"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:175
|
||||
msgid "Rename group"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:183
|
||||
msgid "Which contact should the data be merged into?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:191
|
||||
msgid "Delete the other(s) after successful merge?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:203
|
||||
msgid "Compose mail"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:225
|
||||
msgid "Delete current photo"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:226
|
||||
msgid "Edit current photo"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:227
|
||||
msgid "Upload new photo"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:228
|
||||
msgid "Select photo from ownCloud"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:239 templates/contacts.php:240
|
||||
msgid "First name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:244 templates/contacts.php:245
|
||||
msgid "Additional names"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:249 templates/contacts.php:250
|
||||
msgid "Last name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:257
|
||||
msgid "Select groups"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:260
|
||||
msgid "Select address book"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:264 templates/contacts.php:328
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:267
|
||||
msgid "Enter nickname"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:271 templates/contacts.php:327
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:274
|
||||
msgid "Enter title"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:278 templates/contacts.php:326
|
||||
msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:281
|
||||
msgid "Enter organization"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:285 templates/contacts.php:329
|
||||
msgid "Birthday"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:316
|
||||
msgid "Notes go here..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:323
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:331
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:332
|
||||
msgid "Instant Messaging"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:333
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:334
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:335
|
||||
msgid "Web site"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:337
|
||||
msgid "Delete contact"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:351 templates/contacts.php:366
|
||||
#: templates/contacts.php:380 templates/contacts.php:405
|
||||
#: templates/contacts.php:443
|
||||
msgid "Preferred"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:353
|
||||
msgid "Please specify a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:353
|
||||
msgid "someone@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:355
|
||||
msgid "Mail to address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:356
|
||||
msgid "Delete email address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:368
|
||||
msgid "Enter phone number"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:370
|
||||
msgid "Delete phone number"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:384
|
||||
msgid "Go to web site"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:385
|
||||
msgid "Delete URL"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:396
|
||||
msgid "View on map"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:397
|
||||
msgid "Delete address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:410
|
||||
msgid "1600 Pennsylvania Avenue, NW"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:411
|
||||
msgid "Street address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:415
|
||||
msgid "20500"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:416
|
||||
msgid "Postal code"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:418
|
||||
msgid "Washington, DC"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:419
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:423
|
||||
msgid "District of Columbia"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:424
|
||||
msgid "State or province"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:428
|
||||
msgid "USA"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:429
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:451
|
||||
msgid "Instant Messenger"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:453
|
||||
msgid "Delete IM"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:461
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:464 templates/settings.php:36
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:465
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:466
|
||||
msgid "CardDAV link"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "CardDAV syncing addresses"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "more info"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:5
|
||||
msgid "Primary address (Kontact et al)"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:7
|
||||
msgid "iOS/OS X"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:11
|
||||
msgid "Addressbooks"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:58
|
||||
msgid "New Address Book"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:59
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:60
|
||||
msgid "Description"
|
||||
msgstr ""
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: af_ZA\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -12,9 +12,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-07 09:33-0400\n"
|
||||
"PO-Revision-Date: 2013-10-05 21:50+0000\n"
|
||||
"Last-Translator: Meesh <M_almohimeed@yahoo.com>\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -22,7 +22,7 @@ msgstr ""
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "جهات الاتصال"
|
||||
|
||||
@ -110,62 +110,62 @@ msgstr "علمية الدمج فشلت."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "عملية الدمج فشلت. خطأ في حفظ جهة الاتصال. "
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "اختر صورة"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "حدث خطأ في شبكة الاتصال أو في الخادم. يرجى إبلاغ المسؤول."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "خطأ في إضافة المجموعة"
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "حدث خطأ أثناء الحذف من المجموعة"
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "حدث خطأ أثناء إعداد {name} كمفضلة ."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "دمج جهات الاتصال"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "الغاء"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "إضافة مجموعة"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "تم"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "تعذر ايجاد جهة الاتصال: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "لا يوجد ملفات مختارة لتحميلها"
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "الملف الذي تحاول تحميله يتجاوز الحد الأقصى لحجم الملف الذي يمكن تحميله على هذا الخادم."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "تعديل صورة الملف الشخصي"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "قص الصورة."
|
||||
|
||||
@ -173,33 +173,33 @@ msgstr "قص الصورة."
|
||||
msgid "Is this correct?"
|
||||
msgstr "هل هذا صحيح؟"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "#المجموعات"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "بعض جهات الأتصال تم تحديدها للحذف لكن لم يتم حذفها بعد. يرجى الانتظار قليلاً حتى يتم حذفها بالكامل."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "إضغط حتى يتم التراجع عن حذف {أرقام} جهات الاتصال"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "ألغاء حذف {num} من جهات الاتصال."
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "اضف"
|
||||
|
||||
@ -382,7 +382,7 @@ msgstr "ليس لديك الصلاحية لتحديث دفتر العناوين
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "ليس لديك الصلاحية لحذف دفتر العناوين."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "تعذر ايجاد دفتر العناوين"
|
||||
|
||||
@ -422,74 +422,78 @@ msgstr "يوم ميلاد {name}'s"
|
||||
msgid "Error creating address book"
|
||||
msgstr "خطأ في إنشاء دفتر العناوين"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "حدث خطأ في تحديث دفتر العناوين"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "ليس لديك الصلاحية لحذف \"%s\" دفتر العناوين"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "حدث خطأ أثناء إزالة دفتر العناوين"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "حدث خطأ أثناء إنشاء جهة اتصال."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "خطأ في حذف جهة الاتصال"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "حدث خطأ أثناء استرداد جهة الاتصال."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "خطأ في حفظ جهة الإتصال."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "حدث خطأ أثناء إزالة جهة اتصال من دفتر العناوين."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "تعذر ايجاد جهة الاتصال"
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "المعلومات الموجودة في ال vCard غير صحيحة. الرجاء إعادة تحديث الصفحة."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "خطأ في تحديث جهات الاتصال"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "حدث خطأ أثناء حفظ جهات الاتصال في الخلفية."
|
||||
|
||||
@ -552,27 +556,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "الملف غير موجود"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "خطأ في تحميل الصورة. "
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "تم إزالة الصورة من ذاكرة التخزين المؤقتة. "
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "خطأ في إنشاء صورة مؤقتة "
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "خطأ في قص الصورة"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "خطأ في تغيير حجم الصورة"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "خطأ في الحصول على ملكية الصورة."
|
||||
|
||||
@ -987,6 +991,10 @@ msgstr "للملاحظات إذهب هنا..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "تصدير كملف VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "الهاتف"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: be\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
"Language: bg_BG\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Контакти"
|
||||
|
||||
@ -108,62 +108,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Отказ"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "ОК"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -171,33 +171,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Добавяне"
|
||||
|
||||
@ -380,7 +380,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -420,74 +420,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -550,27 +554,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -985,6 +989,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,7 +17,7 @@ msgstr ""
|
||||
"Language: bn_BD\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "ঠিকানাপঞ্জী"
|
||||
|
||||
@ -105,62 +105,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "বাতির"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "তথাস্তু"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,33 +168,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "যোগ কর"
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "ফাইলটি অস্তিত্বহীনঃ"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: bs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr "Spasi"
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -13,8 +13,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -23,7 +23,7 @@ msgstr ""
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Contactes"
|
||||
|
||||
@ -111,62 +111,62 @@ msgstr "La combinació ha fallat."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "La combinació ha fallat. Error en desar el contacte."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Selecciona una foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Error de xarxa o del servidor. Informeu a l'administrador."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Error en afegir grup"
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Error en eliminar del grup"
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Error en establir {name} com a preferit."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Combina contactes"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Afegeix grup"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "D'acord"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "El contacte no s'ha trobat: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "No s'han seleccionat fitxers per a la pujada."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "El fitxer que intenteu pujar excedeix la mida màxima de pujada en aquest servidor."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Edita la fotografia de perfil"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Talla la fotografia"
|
||||
|
||||
@ -174,33 +174,33 @@ msgstr "Talla la fotografia"
|
||||
msgid "Is this correct?"
|
||||
msgstr "És correcte?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Error en processar la data: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# grups"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Error en processar l'aniversari {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Heu marcat eliminar alguns contactes, però encara no s'han eliminat. Espereu mentre s'esborren."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Feu clic a desfés eliminació de {num} contactes"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Cancel·la l'eliminació de {num} contactes"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Afegeix"
|
||||
|
||||
@ -383,7 +383,7 @@ msgstr "No teniu permisos per actualitzar la llibreta d'adreces."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "No teniu permisos per esborar la llibreta d'adreces."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "No s'han trobat llibretes d'adreces."
|
||||
|
||||
@ -423,74 +423,78 @@ msgstr "Aniversari de {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Error en crear la llibreta d'adreces"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Error en actualitzar la llibreta d'adreces"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "No teniu permisos per esborar la llibreta d'adreces \"%s\"."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Error en eliminar la llibreta d'adreces"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Error en crear contacte."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Error en eliminar contacte."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Error en obtenir el contacte."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Error en desar el contacte."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Error en eliminar el contacte des d'una altra llibreta d'adreces."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "El contacte no s'ha trobat."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Error en combinar en el contacte."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Error en desar el contacte en el dorsal."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "La propietat nom no està definida."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "La suma de verificació no està definida."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "La informació de la vCard és incorrecta. Carregueu la pàgina de nou."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -553,27 +557,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "El fitxer no existeix:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Error en carregar la imatge."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "La imatge s'ha eliminat de la memòria de cau"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Error en crear la imatge temporal"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Error en retallar la imatge"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Error en modificar la mida de la imatge"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Error en obtenir la propietat PHOTO."
|
||||
|
||||
@ -988,6 +992,10 @@ msgstr "Escriviu notes aquí..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exporta com a VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telèfon"
|
||||
|
@ -73,6 +73,7 @@
|
||||
"Delete" => "Smazat",
|
||||
"More..." => "Více...",
|
||||
"Less..." => "Méně...",
|
||||
"Server error! Please inform system administator" => "Chyba serveru! Prosím informujte systémového správce.",
|
||||
"Failed loading photo: {error}" => "Načtení fotografie se nezdařilo: {error}",
|
||||
"You do not have permissions to see this contacts" => "Nemáte oprávnění pro zobrazení těchto kontaktů",
|
||||
"Contact not found" => "Kontakt nebyl nalezen",
|
||||
@ -109,6 +110,8 @@
|
||||
"Property name is not set." => "Název vlastnosti není nastaven.",
|
||||
"Property checksum is not set." => "Kontrolní součet vlastnosti není nastaven.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "Informace o vCard je neplatná. Obnovte, prosím, stránku.",
|
||||
"Error updating contact" => "Chyba při ukládání kontaktu",
|
||||
"Error saving contact to backend" => "Chyba při zápisu kontaktu do úložiště",
|
||||
"Error getting user photo" => "Chyba při získávání uživatelovy fotky",
|
||||
"No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba",
|
||||
"There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně",
|
||||
@ -227,6 +230,7 @@
|
||||
"Birthday" => "Narozeniny",
|
||||
"Notes go here..." => "Sem vložte poznámky...",
|
||||
"Export as VCF" => "Exportovat jako VCF",
|
||||
"Add field..." => "Přidat položku...",
|
||||
"Phone" => "Telefon",
|
||||
"Email" => "E-mail",
|
||||
"Instant Messaging" => "Komunikátor",
|
||||
|
@ -15,8 +15,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -25,7 +25,7 @@ msgstr ""
|
||||
"Language: cs_CZ\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakty"
|
||||
|
||||
@ -113,62 +113,62 @@ msgstr "Sloučení selhalo."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Sloučení selhalo. Chyba při ukládání kontaktu."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Vybrat fotku"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Chyba sítě či serveru. Kontaktujte prosím správce."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Chyba při přidávání do skupiny"
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Chyba při odebírání ze skupiny"
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Chyba při nastavování {name} jako oblíbený."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Sloučit kontakty"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Přidat skupinu"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Nelze nalézt kontakt: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Žádné soubory nebyly vybrány k nahrání."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Soubor, který se pokoušíte odeslat, přesahuje maximální velikost povolenou na serveru."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Upravit obrázek profilu"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Oříznout fotku"
|
||||
|
||||
@ -176,33 +176,33 @@ msgstr "Oříznout fotku"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Je to správně?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Chyba při parsování data: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "počet skupin"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Chyba parsování narozenin {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Některé kontakty jsou označeny ke smazání, ale ještě smazány nejsou. Počkejte, prosím, na dokončení operace."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Klikněte pro navrácení smazání {num} kontaktů"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Smazání {num} kontaktů zrušeno"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Přidat"
|
||||
|
||||
@ -335,7 +335,7 @@ msgstr "Méně..."
|
||||
|
||||
#: js/storage.js:29
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
msgstr "Chyba serveru! Prosím informujte systémového správce."
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
@ -385,7 +385,7 @@ msgstr "Nemáte oprávnění pro provádění změn v adresáři kontaktů"
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Nemáte oprávnění pro mazání v adresáři kontaktů"
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Adresář kontaktů nenalezen"
|
||||
|
||||
@ -425,76 +425,80 @@ msgstr "Narozeniny {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Chyba při vytváření adresáře kontaktů"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Chyba při změně adresáře kontaktů"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Nemáte oprávnění pro smazání adresáře kontaktů \"%s\""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Chyba při mazání adresáře kontaktů"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Chyba při vytváření kontaktu"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Chyba při mazání kontaktu"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Chyba při otevírání kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Chyba při ukládání kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Chyba při odebírání kontaktu z jiného adresáře kontaktů."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Kontakt se nepodařilo nalézt"
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Chyba při slučování do kontaktu."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Chyba při zápisu kontaktu do úložiště."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Název vlastnosti není nastaven."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Kontrolní součet vlastnosti není nastaven."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informace o vCard je neplatná. Obnovte, prosím, stránku."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
msgstr "Chyba při ukládání kontaktu"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
msgstr "Chyba při zápisu kontaktu do úložiště"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:69
|
||||
msgid "Error getting user photo"
|
||||
@ -555,27 +559,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Soubor neexistuje:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Chyba při načítání obrázku."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Obrázek byl odstraněn z mezipaměti"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Chyba při vytváření dočasného obrázku."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Chyba při ořezávání obrázku."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Chyba při změně velikosti obrázku."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Chyba při získávání vlastností fotky."
|
||||
|
||||
@ -990,6 +994,10 @@ msgstr "Sem vložte poznámky..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exportovat jako VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Přidat položku..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -18,7 +18,7 @@ msgstr ""
|
||||
"Language: cy_GB\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Cysylltiadau"
|
||||
|
||||
@ -106,62 +106,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Diddymu"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Iawn"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -169,33 +169,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Ychwanegu"
|
||||
|
||||
@ -378,7 +378,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -418,74 +418,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -548,27 +552,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -983,6 +987,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -20,9 +20,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-04 14:06+0000\n"
|
||||
"Last-Translator: Sappe\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -30,7 +30,7 @@ msgstr ""
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakter"
|
||||
|
||||
@ -118,62 +118,62 @@ msgstr "Sammenlægning fejlede."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Indfletning lykkedes ikke. Fejl ved gemning af kontakt."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Vælg foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Netværks- eller serverfejl: Informér administrator."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Fejl ved tilføjelse til gruppe."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Fejl ved fjernelse fra gruppe."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Kunne ikke indstille {name} som favorit."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Sammenlæg kontakter"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Annuller"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Tilføj gruppe"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Kunne ikke finde kontakt: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Der er ikke valgt nogen filer at uploade."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Dr."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Redigér profilbillede"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Beskær billede"
|
||||
|
||||
@ -181,33 +181,33 @@ msgstr "Beskær billede"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Er dette korrekt?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# grupper"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Nogle kontakter er markeret til sletning, men er endnu ikke slettet. Vent venligst på, at de bliver slettet."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Klik for at fortryde sletning af {num} kontakter"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "annullerede sletning af {num} kontakter"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Tilføj"
|
||||
|
||||
@ -390,7 +390,7 @@ msgstr "Du har ikke rettigheder til at opdatere denne adressebog"
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Du har ikke rettigheder til at slette denne adressebog"
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Adressebog ikke fundet"
|
||||
|
||||
@ -430,74 +430,78 @@ msgstr "{name}s fødselsdag"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Fejl ved oprettelse af adressebog"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Fejl ved opdatering af adressebog"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Du har ikke tilladelse til at slette \"%s\" adressebog"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Fejl ved sletning af adressebog"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Fejl ved oprettelse af kontaktperson."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Fejl ved sletning af kontaktperson."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Fejl ved hentning af kontaktperson."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Kunne ikke gemme kontaktpersonen."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Fejl ved fjernelse af kontaktperson fra anden adressebog."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Kunne ikke finde kontakt."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Fejl ved indfletning til kontaktperson."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Kunne ikke gemme kontakt på server."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Egenskabsnavn er ikke angivet."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Tjeksum for egenskab er ikke angivet."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informationen om vCard er forkert. Genindlæs siden."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Kunne ikke opdatere kontakt"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Kunne ikke gemme kontakt til server"
|
||||
|
||||
@ -560,27 +564,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Filen eksisterer ikke:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Kunne ikke indlæse billede."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Billedet blev fjernet fra cache"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Kunne ikke oprette midlertidigt billede"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Kunne ikke beskære billedet"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Kunne ikke ændre billedets størrelse"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Fejl ved indlæsning af PHOTO feltet."
|
||||
|
||||
@ -995,6 +999,10 @@ msgstr "Skriv noter her..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exporter som VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -105,6 +105,7 @@
|
||||
"Error saving contact." => "Fehler beim Speichern des Kontaktes.",
|
||||
"Error removing contact from other address book." => "Fehler beim Entfernen des Kontakts aus einem anderen Adressbuch.",
|
||||
"Couldn't find contact." => "Kontakt nicht gefunden.",
|
||||
"No contact data in request." => "Keine Kontaktdaten in der Anfrage.",
|
||||
"Error merging into contact." => "Fehler beim Zusammenführen in Kontakt.",
|
||||
"Error saving contact to backend." => "Fehler beim Speichern eines Kontakts ins Backend.",
|
||||
"Property name is not set." => "Merkmalsname ist nicht angegeben.",
|
||||
@ -230,6 +231,7 @@
|
||||
"Birthday" => "Geburtstag",
|
||||
"Notes go here..." => "Notizen hier hinein...",
|
||||
"Export as VCF" => "Als VCF exportieren",
|
||||
"Add field..." => "Feld hinzufügen...",
|
||||
"Phone" => "Telefon",
|
||||
"Email" => "E-Mail",
|
||||
"Instant Messaging" => "Instant Messaging",
|
||||
|
@ -39,17 +39,17 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 16:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-18 08:30+0000\n"
|
||||
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
|
||||
"Language-Team: German <translations@owncloud.org>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakte"
|
||||
|
||||
@ -137,62 +137,62 @@ msgstr "Zusammenführung fehlgeschlagen. "
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Zusammenführung fehlgeschlagen. Fehler beim Speichern des Kontakts. "
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Wähle ein Foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Netzwerk- oder Serverfehler. Bitte Administrator informieren."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Fehler beim Hinzufügen zur Gruppe."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Fehler beim Entfernen aus Gruppe."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Fehler beim Festlegen von {name} als Favorit."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Kontakte zusammenführen"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Gruppe hinzufügen"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Kontakt nicht gefunden: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Keine Datei(en) zum Hochladen ausgewählt."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Die Datei, die Du hochladen möchtest, überschreitet die maximale Größe für Datei-Uploads auf diesem Server."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Profilbild bearbeiten"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Foto zuschneiden"
|
||||
|
||||
@ -200,33 +200,33 @@ msgstr "Foto zuschneiden"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Ist dies korrekt?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Datum des Fehlers beim Parsen: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# Gruppen"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Fehler beim Auslesen des Geburtstages {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Einige zum Löschen vorgemerkte Kontakte wurden noch nicht gelöscht. Bitte warten."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Klicken um das Löschen von {num} Kontakten rückgängig zu machen."
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Die Löschung von {num} Kontakten wurde abgebrochen"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
|
||||
@ -357,7 +357,7 @@ msgstr "Mehr..."
|
||||
msgid "Less..."
|
||||
msgstr "Weniger..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr "Serverfehler! Bitte informiere den System-Administrator"
|
||||
|
||||
@ -409,7 +409,7 @@ msgstr "Du verfügst nicht über die Rechte, das Adressbuch zu aktualisieren."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Du besitzt nicht die Berechtigungen, dieses Adressbuch zu löschen."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Adressbuch nicht gefunden."
|
||||
|
||||
@ -449,74 +449,78 @@ msgstr "Geburtstag von {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Fehler beim Anlegen eines Adressbuches."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Fehler beim Aktualisieren eines Adressbuches."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Du hast nicht die erforderlichen Rechte, das \"%s\" Adressbuch zu löschen"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Fehler beim Löschen eines Adressbuches."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Fehler beim Anlegen eines Kontakts."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Fehler beim Löschen eines Kontakts."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Fehler beim Empfangen eines Kontakts."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Fehler beim Speichern des Kontaktes."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Fehler beim Entfernen des Kontakts aus einem anderen Adressbuch."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Kontakt nicht gefunden."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr "Keine Kontaktdaten in der Anfrage."
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Fehler beim Zusammenführen in Kontakt."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Fehler beim Speichern eines Kontakts ins Backend."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Merkmalsname ist nicht angegeben."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Merkmalsprüfsumme ist nicht angegeben."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Die Information der vCard ist fehlerhaft. Bitte aktualisiere die Seite."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Fehler beim Aktualisieren eines Kontakts"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Fehler beim Speichern eines Kontakts ins Backend"
|
||||
|
||||
@ -579,27 +583,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Die Datei existiert nicht:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Fehler beim Laden des Bildes."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Das Bild wurde aus dem Zwischenspeicher entfernt"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Fehler beim Erstellen des temporären Bildes"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Fehler beim Zuschneiden des Bildes"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Fehler bei der Größenänderung des Bildes"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Fehler beim Abrufen der PHOTO-Eigenschaft."
|
||||
|
||||
@ -1014,6 +1018,10 @@ msgstr "Notizen hier hinein..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Als VCF exportieren"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Feld hinzufügen..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: de_AT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -39,8 +39,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -49,7 +49,7 @@ msgstr ""
|
||||
"Language: de_CH\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakte"
|
||||
|
||||
@ -137,62 +137,62 @@ msgstr "Zusammenführung fehlgeschlagen."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Zusammenführung fehlgeschlagen. Fehler beim Speichern des Kontakts."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Wählen Sie ein Foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Netzwerk- oder Serverfehler. Bitte informieren Sie den Administrator."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Fehler beim Hinzufügen zur Gruppe."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Fehler beim Löschen aus der Gruppe."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Fehler beim Setzen von {name} als Favorit."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Kontakte zusammenführen"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Fügen Sie eine Gruppe hinzu"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Kontakt {id} nicht gefunden"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Keine Datei(en) zum Hochladen ausgewählt."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Die Datei, die Sie hochladen möchten, überschreitet die maximale Grösse für Datei-Uploads auf diesem Server."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Profilbild bearbeiten"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -200,33 +200,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr "Ist das richtig?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Datum des Fehlers beim Parsen: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# Gruppen"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Einige zum Löschen vorgemerkte Kontakte wurden noch nicht gelöscht. Bitte warten."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Klicken Sie hier um das Löschen von {num} Kontakten rückgängig zu machen"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
|
||||
@ -409,7 +409,7 @@ msgstr "Sie haben nicht die erforderlichen Rechte, dieses Adressbuch zu aktualis
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Sie haben nicht die erforderlichen Rechte, dieses Adressbuch zu löschen."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Adressbuch nicht gefunden"
|
||||
|
||||
@ -449,74 +449,78 @@ msgstr "Geburtstag von {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Fehler beim Anlegen eines Adressbuchs"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Fehler beim aktualisieren des Adressbuchs."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Fehler beim Löschen eines Adressbuchs."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Fehler beim Anlegen eines Kontakts. "
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Fehler beim Löschen eines Kontakts."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Fehler beim Abruf des Kontakts."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Fehler beim Speichern des Kontaktes."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Fehler beim Entfernen des Kontakts aus einem anderen Adressbuch."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Kontakt nicht gefunden."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Fehler beim Zusammenfügen in einen Kontakt. "
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Fehler beim Speichern eines Kontakts ins Backend."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Merkmalsname ist nicht angegeben."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Merkmalsprüfsumme ist nicht angegeben."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Die Information der vCard ist fehlerhaft. Bitte aktualisieren Sie die Seite."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -579,27 +583,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Die Datei existiert nicht:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Fehler beim Laden des Bildes."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Fehler beim Erstellen des temporären Bildes"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Fehler beim Zuschneiden des Bildes"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Fehler bei der Grössenänderung des Bildes"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Fehler beim Abrufen der PHOTO-Eigenschaft."
|
||||
|
||||
@ -1014,6 +1018,10 @@ msgstr "Notizen hier hinein..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Als VCF exportieren"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -105,6 +105,7 @@
|
||||
"Error saving contact." => "Fehler beim Speichern des Kontaktes.",
|
||||
"Error removing contact from other address book." => "Fehler beim Entfernen des Kontakts aus einem anderen Adressbuch.",
|
||||
"Couldn't find contact." => "Kontakt nicht gefunden.",
|
||||
"No contact data in request." => "Keine Kontaktdaten in der Anfrage.",
|
||||
"Error merging into contact." => "Fehler beim Zusammenfügen in einen Kontakt. ",
|
||||
"Error saving contact to backend." => "Fehler beim Speichern eines Kontakts ins Backend.",
|
||||
"Property name is not set." => "Merkmalsname ist nicht angegeben.",
|
||||
@ -230,6 +231,7 @@
|
||||
"Birthday" => "Geburtstag",
|
||||
"Notes go here..." => "Notizen hier hinein...",
|
||||
"Export as VCF" => "Als VCF exportieren",
|
||||
"Add field..." => "Feld hinzufügen...",
|
||||
"Phone" => "Telefon",
|
||||
"Email" => "E-Mail",
|
||||
"Instant Messaging" => "Instant Messaging",
|
||||
|
@ -43,17 +43,17 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 16:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-18 08:30+0000\n"
|
||||
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
|
||||
"Language-Team: German (Germany) <translations@owncloud.org>\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: de_DE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakte"
|
||||
|
||||
@ -141,62 +141,62 @@ msgstr "Zusammenführung fehlgeschlagen."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Zusammenführung fehlgeschlagen. Fehler beim Speichern des Kontakts."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Wählen Sie ein Foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Netzwerk- oder Serverfehler. Bitte informieren Sie den Administrator."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Fehler beim Hinzufügen zur Gruppe."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Fehler beim Löschen aus der Gruppe."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Fehler beim Setzen von {name} als Favorit."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Kontakte zusammenführen"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Fügen Sie eine Gruppe hinzu"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Kontakt {id} nicht gefunden"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Keine Datei(en) zum Hochladen ausgewählt."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Die Datei, die Sie hochladen möchten, überschreitet die maximale Größe für Datei-Uploads auf diesem Server."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Profilbild bearbeiten"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Foto zuschneiden"
|
||||
|
||||
@ -204,33 +204,33 @@ msgstr "Foto zuschneiden"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Ist das richtig?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Datum des Fehlers beim Parsen: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# Gruppen"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Fehler beim Auslesen des Geburtstages {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Einige zum Löschen vorgemerkte Kontakte wurden noch nicht gelöscht. Bitte warten."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Klicken Sie hier um das Löschen von {num} Kontakten rückgängig zu machen"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Die Löschung von {num} Kontakten wurde abgebrochen"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
|
||||
@ -361,7 +361,7 @@ msgstr "Mehr..."
|
||||
msgid "Less..."
|
||||
msgstr "Weniger..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr "Serverfehler! Bitte informieren Sie den System-Administrator"
|
||||
|
||||
@ -413,7 +413,7 @@ msgstr "Sie haben nicht die erforderlichen Rechte, dieses Adressbuch zu aktualis
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Sie haben nicht die erforderlichen Rechte, dieses Adressbuch zu löschen."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Adressbuch nicht gefunden"
|
||||
|
||||
@ -453,74 +453,78 @@ msgstr "Geburtstag von {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Fehler beim Anlegen eines Adressbuchs"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Fehler beim aktualisieren des Adressbuchs."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Sie haben nicht die erforderlichen Rechte, das \"%s\" Adressbuch zu löschen"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Fehler beim Löschen eines Adressbuchs."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Fehler beim Anlegen eines Kontakts. "
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Fehler beim Löschen eines Kontakts."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Fehler beim Abruf des Kontakts."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Fehler beim Speichern des Kontaktes."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Fehler beim Entfernen des Kontakts aus einem anderen Adressbuch."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Kontakt nicht gefunden."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr "Keine Kontaktdaten in der Anfrage."
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Fehler beim Zusammenfügen in einen Kontakt. "
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Fehler beim Speichern eines Kontakts ins Backend."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Merkmalsname ist nicht angegeben."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Merkmalsprüfsumme ist nicht angegeben."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Die Information der vCard ist fehlerhaft. Bitte aktualisieren Sie die Seite."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Fehler beim Aktualisieren eines Kontakts"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Fehler beim Speichern eines Kontakts ins Backend"
|
||||
|
||||
@ -583,27 +587,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Die Datei existiert nicht:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Fehler beim Laden des Bildes."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Das Bild wurde aus dem Zwischenspeicher entfernt"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Fehler beim Erstellen des temporären Bildes"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Fehler beim Zuschneiden des Bildes"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Fehler bei der Größenänderung des Bildes"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Fehler beim Abrufen der PHOTO-Eigenschaft."
|
||||
|
||||
@ -1018,6 +1022,10 @@ msgstr "Notizen hier hinein..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Als VCF exportieren"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Feld hinzufügen..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -32,8 +32,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -42,7 +42,7 @@ msgstr ""
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Επαφές"
|
||||
|
||||
@ -130,62 +130,62 @@ msgstr "Η συγχώνευση απέτυχε. "
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Αποτυχία συγχώνευσης. Σφάλμα αποθήκευσης επαφής."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Επέλεξε φωτογραφία"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Σφάλμα δικτύου ή διακομιστή. Παρακαλώ ενημερώστε το διαχειριστή."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Σφάλμα κατά την προσθήκη σε ομάδα."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Σφάλμα κατά την αφαίρεση από ομάδα."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Συγχώνευση επαφών"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Άκυρο"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Προσθήκη ομάδας"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "ΟΚ"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Αδυναμία εύρεσης επαφής: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Δεν επιλέχτηκαν αρχεία για μεταφόρτωση"
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Το αρχείο που προσπαθείτε να ανεβάσετε υπερβαίνει το μέγιστο μέγεθος για τις προσθήκες αρχείων σε αυτόν τον server."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Επεξεργασία εικόνας προφίλ"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Περικοπή φωτογραφίας"
|
||||
|
||||
@ -193,33 +193,33 @@ msgstr "Περικοπή φωτογραφίας"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Είναι σωστό;"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# ομάδες"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Κάποιες επαφές σημειώθηκαν προς διαγραφή,δεν έχουν διαγραφεί ακόμα. Παρακαλώ περιμένετε μέχρι να διαγραφούν."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Προσθήκη"
|
||||
|
||||
@ -402,7 +402,7 @@ msgstr "Δεν έχετε δικαιώματα ενημέρωσης αυτού
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Δεν έχετε δικαιώματα να διαγράψετε αυτό το βιβλίο διευθύνσεων."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Δε βρέθηκε βιβλίο διευθύνσεων"
|
||||
|
||||
@ -442,74 +442,78 @@ msgstr "Τα Γεννέθλια του/της {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Σφάλμα κατά την δημιουργία βιβλίου διευθύνσεων "
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Σφάλμα κατά την ενημέρωση του βιβλίου διευθύνσεων"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Σφάλμα κατά την διαγραφή βιβλίου διεευθύνσεων "
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Σφάλμα δημιουργίας επαφής."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Σφάλμα διαγραφής επαφής."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Σφάλμα κατά την ανάκτηση της επαφής"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Σφάλμα κατά την αποθήκευση επαφής."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Σφάλμα διαγραφής επαφής από το βιβλίο διευθύνσεων"
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Η επαφή δεν μπόρεσε να βρεθεί."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Οι πληροφορίες σχετικά με vCard είναι εσφαλμένες. Παρακαλώ επαναφορτώστε τη σελίδα."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -572,27 +576,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Το αρχείο δεν υπάρχει"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Σφάλμα φόρτωσης εικόνας"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Σφάλμα κατά την δημιουργία προσωρινής εικόνας"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Σφάλμα κατά την περικοπή εικόνας"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Σφάλμα κατά την αλλαγή μεγέθους εικόνας"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Σφάλμα κατά τη λήψη ιδιοτήτων ΦΩΤΟΓΡΑΦΙΑΣ."
|
||||
|
||||
@ -1007,6 +1011,10 @@ msgstr "Πρόσθεσε τις σημειώσεις εδώ..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Εξαγωγή ως VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Τηλέφωνο"
|
||||
|
@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -18,11 +18,11 @@ msgstr ""
|
||||
"Language: en@pirate\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -70,98 +70,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -169,91 +169,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -378,7 +378,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -418,74 +418,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -548,27 +552,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -983,6 +987,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -73,6 +73,7 @@
|
||||
"Delete" => "Delete",
|
||||
"More..." => "More...",
|
||||
"Less..." => "Less...",
|
||||
"Server error! Please inform system administator" => "Server error! Please inform a system administrator",
|
||||
"Failed loading photo: {error}" => "Failed to load photo: {error}",
|
||||
"You do not have permissions to see this contacts" => "You do not have permission to see these contacts",
|
||||
"Contact not found" => "Contact not found",
|
||||
@ -104,11 +105,14 @@
|
||||
"Error saving contact." => "Error saving contact.",
|
||||
"Error removing contact from other address book." => "Error removing contact from other address book.",
|
||||
"Couldn't find contact." => "Couldn't find contact.",
|
||||
"No contact data in request." => "No contact data in request.",
|
||||
"Error merging into contact." => "Error merging into contact.",
|
||||
"Error saving contact to backend." => "Error saving contact to backend.",
|
||||
"Property name is not set." => "Property name is not set.",
|
||||
"Property checksum is not set." => "Property checksum is not set.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "Information about vCard is incorrect. Please reload the page.",
|
||||
"Error updating contact" => "Error updating contact",
|
||||
"Error saving contact to backend" => "Error saving contact to backend",
|
||||
"Error getting user photo" => "Error getting user photo",
|
||||
"No file was uploaded. Unknown error" => "No file was uploaded. Unknown error",
|
||||
"There is no error, the file uploaded with success" => "There is no error, the file uploaded successfully",
|
||||
@ -227,6 +231,7 @@
|
||||
"Birthday" => "Birthday",
|
||||
"Notes go here..." => "Notes go here...",
|
||||
"Export as VCF" => "Export as VCF",
|
||||
"Add field..." => "Add field...",
|
||||
"Phone" => "Phone",
|
||||
"Email" => "Email",
|
||||
"Instant Messaging" => "Instant Messaging",
|
||||
|
@ -8,9 +8,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-18 16:30+0000\n"
|
||||
"Last-Translator: mnestis <transifex@mnestis.net>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -18,7 +18,7 @@ msgstr ""
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Contacts"
|
||||
|
||||
@ -106,62 +106,62 @@ msgstr "Merge failed."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Merge failed. Error saving contact."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Select photo"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Network or server error. Please inform administrator."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Error adding to group."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Error removing from group."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Error setting {name} as favourite."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Merge contacts"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Add group"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Could not find contact: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "No files selected for upload."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "The file you are trying to upload exceeds the maximum size for file uploads on this server."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Edit profile picture"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Crop photo"
|
||||
|
||||
@ -169,33 +169,33 @@ msgstr "Crop photo"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Is this correct?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Error parsing date: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# groups"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Error parsing birthday {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Click to undo deletion of {num} contacts"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Cancelled deletion of {num} contacts"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Add"
|
||||
|
||||
@ -326,9 +326,9 @@ msgstr "More..."
|
||||
msgid "Less..."
|
||||
msgstr "Less..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
msgstr "Server error! Please inform a system administrator"
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
@ -378,7 +378,7 @@ msgstr "You don't have permission to update the address book."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "You don't have permission to delete the address book."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Address book not found"
|
||||
|
||||
@ -418,76 +418,80 @@ msgstr "{name}'s Birthday"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Error creating address book"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Error updating address book"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "You do not have permission to delete the \"%s\" address book"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Error deleting address book"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Error creating contact."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Error deleting contact."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Error retrieving contact."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Error saving contact."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Error removing contact from other address book."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Couldn't find contact."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr "No contact data in request."
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Error merging into contact."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Error saving contact to backend."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Property name is not set."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Property checksum is not set."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Information about vCard is incorrect. Please reload the page."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
msgstr "Error updating contact"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
msgstr "Error saving contact to backend"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:69
|
||||
msgid "Error getting user photo"
|
||||
@ -548,27 +552,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "File doesn't exist:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Error loading image."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Image has been removed from cache"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Error creating temporary image"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Error cropping image"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Error resizing image"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Error getting PHOTO property."
|
||||
|
||||
@ -983,6 +987,10 @@ msgstr "Notes go here..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Export as VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Add field..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Phone"
|
||||
|
@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontaktoj"
|
||||
|
||||
@ -108,62 +108,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Elekti foton"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Reta aŭ servila eraro. Bonvolu sciigi al la administranto."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Eraro dum aldono al grupo."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Eraro dum forigo el grupo."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Nuligi"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Aldoni grupon"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Akcepti"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Neniu dosiero elektita por alŝuto."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "La dosiero, kiun vi provas alŝuti, transpasas la maksimuman grandon por dosieraj alŝutoj en ĉi tiu servilo."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Redakti profilbildon"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -171,33 +171,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr "Ĉu ĉi tio ĝustas?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Iuj kontaktoj estas markitaj por forigo, sed ankoraŭ ne forigitaj. Bonvolu atendi ĝis ili foriĝos."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Klaku por malfari forigon de {num} kontaktoj"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Aldoni"
|
||||
|
||||
@ -380,7 +380,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -420,74 +420,78 @@ msgstr "Naskiĝtago de {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Eraro dum konserviĝis kontakto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informo pri vCard estas malĝusta. Bonvolu reŝargi la paĝon."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -550,27 +554,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Dosiero ne ekzistas:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Eraro dum ŝargado de bildo."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Eraro dum kreiĝis provizora bildo."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Eraro dum stuciĝis bildo."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Eraro dum aligrandiĝis bildo"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Eraro dum ekhaviĝis la propraĵon PHOTO."
|
||||
|
||||
@ -985,6 +989,10 @@ msgstr "Notoj iras tie ĉi..."
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefono"
|
||||
|
119
l10n/es.php
119
l10n/es.php
@ -8,30 +8,30 @@
|
||||
"Imported {imported} contacts. {failed} failed." => "{imported} contactos importados. Han fallado {failed}.",
|
||||
"An address book called {name} already exists" => "Ya existe una libreta de contactos llamada {name}",
|
||||
"Failed adding address book: {error}" => "Hubo un fallo al agregar la libreta de contactos: {error}",
|
||||
"Failed loading address books: {error}" => "Hubo un fallo al cargar las libretas de contactos: {error}",
|
||||
"Failed loading address books: {error}" => "Se produjo un error al cargar las libretas de contactos: {error}",
|
||||
"Indexing contacts" => "Indexando contactos",
|
||||
"Unrecoverable error loading address books: {msg}" => "Fallo total al cargar las libretas de contactos: {msg}",
|
||||
"Unrecoverable error loading address books: {msg}" => "Error irrecuperable mientras se cargaban las libretas de contactos: {msg}",
|
||||
"Error." => "Error.",
|
||||
"Add to..." => "Añadir a...",
|
||||
"Remove from..." => "Remover de...",
|
||||
"Remove from..." => "Eliminar de...",
|
||||
"Add group..." => "Añadir grupo...",
|
||||
"Invalid URL: \"{url}\"" => "URL no válida: \"{url}\"",
|
||||
"There was an error opening a mail composer." => "Hubo un error al abrir la aplicación de correo electrónico.",
|
||||
"Invalid email: \"{url}\"" => "Correo Inválido: \"{url}\"",
|
||||
"There was an error opening a mail composer." => "Hubo un error mientras se abría el compositor de correo electrónico.",
|
||||
"Invalid email: \"{url}\"" => "Dirección de correo inválida: \"{url}\"",
|
||||
"Merge failed. Cannot find contact: {id}" => "Error en la combinación. No se puede encontrar contacto: {id}",
|
||||
"Merge failed." => "Error en la combinación",
|
||||
"Merge failed. Error saving contact." => "Error en la combinación. Error salvando el contacto.",
|
||||
"Select photo" => "eccionar una foto",
|
||||
"Network or server error. Please inform administrator." => "Error en la red o en el servidor. Por favor informe al administrador.",
|
||||
"Error adding to group." => "Error al añadir al grupo.",
|
||||
"Error removing from group." => "Error al remover del grupo.",
|
||||
"Merge failed." => "Error en la combinación.",
|
||||
"Merge failed. Error saving contact." => "Combinación fallida. Error guardando el contacto.",
|
||||
"Select photo" => "Seleccionar una foto",
|
||||
"Network or server error. Please inform administrator." => "Error en la red o en el servidor. Por favor, informe al administrador.",
|
||||
"Error adding to group." => "Error añadiendo al grupo.",
|
||||
"Error removing from group." => "Error eliminando del grupo.",
|
||||
"Error setting {name} as favorite." => "Error configurando {name} como favorito.",
|
||||
"Merge contacts" => "Combinar contactos",
|
||||
"Cancel" => "Cancelar",
|
||||
"Add group" => "Añadir grupo",
|
||||
"OK" => "Aceptar",
|
||||
"Could not find contact: {id}" => "No se puede encontrar el contacto: {id}",
|
||||
"No files selected for upload." => "No hay ficheros seleccionados para subir",
|
||||
"No files selected for upload." => "No se seleccionaron archivos para subir.",
|
||||
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El fichero que quieres subir excede el tamaño máximo permitido en este servidor.",
|
||||
"Edit profile picture" => "Editar imagen de perfil.",
|
||||
"Crop photo" => "Recortar imagen",
|
||||
@ -48,16 +48,16 @@
|
||||
"Couldn't get contact list." => "No se pudo obtener la lista de contactos.",
|
||||
"Contact is not in this group." => "El contacto no se encuentra en este grupo.",
|
||||
"Contacts are not in this group." => "Los contactos no se encuentran en este grupo.",
|
||||
"Failed renaming group: {error}" => "Error al renombrar el grupo: {error}",
|
||||
"A group named {group} already exists" => "Un grupo llamado {group} ya existe.",
|
||||
"You can drag groups to\narrange them as you like." => "Puedes arrastrar grupos para⏎\narreglarlos como usted quiera.",
|
||||
"Failed adding group: {error}" => "Error agregando el grupo: {error}",
|
||||
"Failed renaming group: {error}" => "Error renombrando el grupo: {error}",
|
||||
"A group named {group} already exists" => "Ya existe un grupo llamado {group}",
|
||||
"You can drag groups to\narrange them as you like." => "Puedes arrastrar grupos para\ncolocarlos como usted quiera.",
|
||||
"Failed adding group: {error}" => "Error añadiendo el grupo: {error}",
|
||||
"All" => "Todos",
|
||||
"Favorites" => "Favoritos",
|
||||
"Shared by {owner}" => "Compartido por {owner}",
|
||||
"Not grouped" => "No agrupado",
|
||||
"Failed loading groups: {error}" => "Error cargando grupos: {error} ",
|
||||
"Please choose the addressbook" => "Por favor escoge la agenda",
|
||||
"Please choose the addressbook" => "Por favor, escoja una libreta de direcciones",
|
||||
"Import into..." => "Importando en...",
|
||||
"Error loading import template" => "Error cargando la plantilla a importar",
|
||||
"Import contacts" => "Importar contactos",
|
||||
@ -65,7 +65,7 @@
|
||||
"Import done" => "Importación realizada",
|
||||
"Close" => "Cerrar",
|
||||
"Error" => "Error",
|
||||
"Displayname cannot be empty." => "El nombre a mostrar no puede estar vacío.",
|
||||
"Displayname cannot be empty." => "El nombre para mostrar no puede estar vacío.",
|
||||
"Show CardDav link" => "Mostrar enlace CardDav",
|
||||
"Show read-only VCF link" => "Mostrar enlace VCF de sólo lectura",
|
||||
"Download" => "Descargar",
|
||||
@ -73,7 +73,7 @@
|
||||
"Delete" => "Eliminar",
|
||||
"More..." => "Más...",
|
||||
"Less..." => "Menos...",
|
||||
"Server error! Please inform system administator" => "Error en el servidor. Sírvase informar al administrador.",
|
||||
"Server error! Please inform system administator" => "Error en el servidor. Por favor, informe al administrador.",
|
||||
"Failed loading photo: {error}" => "Error cargando foto: {error}",
|
||||
"You do not have permissions to see this contacts" => "No tiene permisos para ver este contacto",
|
||||
"Contact not found" => "Contacto no encontrado",
|
||||
@ -92,8 +92,8 @@
|
||||
"The backend for this contact does not support updating it" => "El backend de este contacto no permite actualizarlo",
|
||||
"This backend not support adding contacts" => "Este backend no permite agregar contactos",
|
||||
"Property not found" => "Propiedad no encontrada",
|
||||
" Missing IM parameter for: " => "Falta un parámetro de IM para:",
|
||||
"Unknown IM: " => "MI desconocido:",
|
||||
" Missing IM parameter for: " => "Falta el parámetro de IM para:",
|
||||
"Unknown IM: " => "Servicio IM desconocido:",
|
||||
"{name}'s Birthday" => "Cumpleaños de {name}",
|
||||
"Error creating address book" => "Error creando libreta de direcciones",
|
||||
"Error updating address book" => "Error actualizando libreta de direcciones",
|
||||
@ -102,55 +102,55 @@
|
||||
"Error creating contact." => "Error creando contacto.",
|
||||
"Error deleting contact." => "Error borrando contacto.",
|
||||
"Error retrieving contact." => "Error obteniendo contacto.",
|
||||
"Error saving contact." => "Fallo al salvar un contacto",
|
||||
"Error saving contact." => "Error guardando el contacto.",
|
||||
"Error removing contact from other address book." => "Error borrando contacto desde otra libreta de direcciones.",
|
||||
"Couldn't find contact." => "No se puede encontrar contacto.",
|
||||
"Couldn't find contact." => " No se puede encontrar contacto.",
|
||||
"Error merging into contact." => "Error fusionando en contacto.",
|
||||
"Error saving contact to backend." => "Error guardando contacto en backend.",
|
||||
"Property name is not set." => "Nombre de propiedad no definido.",
|
||||
"Property checksum is not set." => "Verificación de propiedad no definida.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "La información sobre el vCard es incorrecta. Por favor vuelve a cargar la página.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "La información sobre el vCard es incorrecta. Por favor, recargue la página.",
|
||||
"Error updating contact" => "Error actualizando contacto",
|
||||
"Error saving contact to backend" => "Error guardando el contacto",
|
||||
"Error getting user photo" => "Error obteniendo la imagen de usuario",
|
||||
"No file was uploaded. Unknown error" => "No se subió ningún archivo. Error desconocido",
|
||||
"There is no error, the file uploaded with success" => "No hay ningún error, el archivo se ha subido con éxito",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "El archivo subido sobrepasa la directiva upload_max_filesize de php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa la directiva MAX_FILE_SIZE especificada en el formulario HTML",
|
||||
"The uploaded file was only partially uploaded" => "El archivo subido fue sólo subido parcialmente",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "El archivo subido sobrepasa la directiva \"upload_max_filesize\" del archivo PHP.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa la directiva \"MAX_FILE_SIZE\" especificada en el formulario HTML",
|
||||
"The uploaded file was only partially uploaded" => "El archivo ha sido subido parcialmente",
|
||||
"No file was uploaded" => "No se subió ningún archivo",
|
||||
"Missing a temporary folder" => "Falta la carpeta temporal",
|
||||
"Couldn't load temporary image: " => "Fallo no pudo cargara de una imagen temporal",
|
||||
"Couldn't save temporary image: " => "No se pudo salvar una imagen temporal",
|
||||
"Missing a temporary folder" => "Falta una carpeta temporal",
|
||||
"Couldn't load temporary image: " => "No se pudo cargar la imagen temporal:",
|
||||
"Couldn't save temporary image: " => "No se pudo guardar una imagen temporal",
|
||||
"No photo path was submitted." => "No se ha introducido la ruta de la foto.",
|
||||
"File doesn't exist:" => "El archivo no existe:",
|
||||
"Error loading image." => "Error cargando imagen.",
|
||||
"Error loading image." => "Error cargando la imagen.",
|
||||
"Image has been removed from cache" => "La imagen ha sido eliminada de la caché",
|
||||
"Error creating temporary image" => "Fallo al crear la foto temporal",
|
||||
"Error cropping image" => "Fallo al cortar el tamaño de la foto",
|
||||
"Error resizing image" => "Fallo al cambiar de tamaño una foto",
|
||||
"Error getting PHOTO property." => "Fallo al coger las propiedades de la foto .",
|
||||
"No group name given." => "No se ha dado un nombre de grupo",
|
||||
"Error adding group." => "Error al añadir el grupo",
|
||||
"Error creating temporary image" => "Error creando la imagen temporal",
|
||||
"Error cropping image" => "Error al recortar la imagen",
|
||||
"Error resizing image" => "Error redimensionando la imagen.",
|
||||
"Error getting PHOTO property." => "Error obteniendo las propiedades de la foto.",
|
||||
"No group name given." => "No se ha especificado un nombre de grupo.",
|
||||
"Error adding group." => "Error añadiendo el grupo.",
|
||||
"No group name to rename from given." => "No hay nombre de grupo para renombrar el que se ha dado.",
|
||||
"No group name to rename to given." => "No se ha dado un nombre al grupo para renombrar el que se ha dado",
|
||||
"Error renaming group." => "Error renombrando grupo",
|
||||
"Group ID missing from request." => "ID de grupo faltante en la solicitud",
|
||||
"Group name missing from request." => "Falte nombre del grupo en la petición",
|
||||
"Contact ID missing from request." => "ID de contacto faltante en la solicitud",
|
||||
"Failed to write to disk" => "Falló al escribir al disco",
|
||||
"No group name to rename to given." => "No se ha especificado un nombre de grupo para renombrar el que se ha dado",
|
||||
"Error renaming group." => "Error renombrando grupo.",
|
||||
"Group ID missing from request." => "Falta el ID de grupo en la solicitud.",
|
||||
"Group name missing from request." => "Falta el nombre del grupo en la petición.",
|
||||
"Contact ID missing from request." => "Falta el ID de contacto en la solicitud.",
|
||||
"Failed to write to disk" => "Error al escribir al disco",
|
||||
"Not enough storage available" => "No hay suficiente espacio disponible",
|
||||
"Attempt to upload blacklisted file:" => "Intento de subir un fichero en lista negra:",
|
||||
"Error uploading contacts to storage." => "Error al subir contactos al almacenamiento.",
|
||||
"Attempt to upload blacklisted file:" => "Intentó subir un fichero en lista negra:",
|
||||
"Error uploading contacts to storage." => "Error subiendo contactos al almacenamiento.",
|
||||
"Error moving file to imports folder." => "Error moviendo ficheros a la carpeta de importaciones.",
|
||||
"You do not have permissions to import into this address book." => "No tiene permisos para importar en esta libreta de direcciones.",
|
||||
"File name missing from request." => "Falta el nombre del fichero en la petición",
|
||||
"Progress key missing from request." => "Falta la clave de progreso en la petición",
|
||||
"Attempt to access blacklisted file:" => "Intento de acceder a un fichero de lista negra:",
|
||||
"You do not have permissions to import into this address book." => "No tiene permiso para importar en esta libreta de direcciones.",
|
||||
"File name missing from request." => "Falta el nombre del fichero en la petición.",
|
||||
"Progress key missing from request." => "Falta la clave de progreso en la petición.",
|
||||
"Attempt to access blacklisted file:" => "Intentó acceder a un fichero en la lista negra:",
|
||||
"No contacts found in: " => "No se encontraron contactos en:",
|
||||
"No key is given." => "No se ha dado una clave",
|
||||
"No value is given." => "No se ha dado un valor",
|
||||
"Could not set preference: " => "No se pudo establecer la preferencia:",
|
||||
"No key is given." => "No se ha especificado una clave.",
|
||||
"No value is given." => "No se ha especificado un valor.",
|
||||
"Could not set preference: " => "No se pudo establecer la opción:",
|
||||
"Contact" => "Contacto",
|
||||
"Other" => "Otro",
|
||||
"HomePage" => "Página de inicio",
|
||||
@ -183,11 +183,11 @@
|
||||
"Group name" => "Nombre de grupo",
|
||||
"New Group" => "Nuevo grupo",
|
||||
"Address books" => "Libretas de direcciones",
|
||||
"Display name" => "Nombre a mostrar",
|
||||
"Display name" => "Nombre para mostrar",
|
||||
"Add Address Book" => "Añadir libreta de direcciones",
|
||||
"Select file..." => "Seleccionar archivo",
|
||||
"(De-)select all" => "Seleccionar todos",
|
||||
"Sort order" => "Orden",
|
||||
"(De-)select all" => "(De-)seleccionar todos",
|
||||
"Sort order" => "Ordenar",
|
||||
"First- Lastname" => "Nombre, Apellido",
|
||||
"Last-, Firstname" => "Apellido, Nombre",
|
||||
"Groups" => "Grupos",
|
||||
@ -197,7 +197,7 @@
|
||||
"Navigation" => "Navegación",
|
||||
"Next contact in list" => "Siguiente contacto en la lista",
|
||||
"Previous contact in list" => "Anterior contacto en la lista",
|
||||
"Expand/collapse current addressbook" => "Abrir/Cerrar la agenda",
|
||||
"Expand/collapse current addressbook" => "Abrir/cerrar la libreta actual",
|
||||
"Next addressbook" => "Siguiente libreta de direcciones",
|
||||
"Previous addressbook" => "Anterior libreta de direcciones",
|
||||
"Actions" => "Acciones",
|
||||
@ -224,12 +224,13 @@
|
||||
"Nickname" => "Alias",
|
||||
"Enter nickname" => "Introduce un alias",
|
||||
"Title" => "Título",
|
||||
"Enter title" => "Ingrese titulo",
|
||||
"Enter title" => "Introduzca título",
|
||||
"Organization" => "Organización",
|
||||
"Enter organization" => "Ingrese organización",
|
||||
"Enter organization" => "Introduzca organización",
|
||||
"Birthday" => "Fecha de nacimiento",
|
||||
"Notes go here..." => "Las notas van acá...",
|
||||
"Notes go here..." => "Puede escribir notas aquí...",
|
||||
"Export as VCF" => "Exportar como VCF",
|
||||
"Add field..." => "Agregar campo...",
|
||||
"Phone" => "Teléfono",
|
||||
"Email" => "E-mail",
|
||||
"Instant Messaging" => "Mensajería instantánea",
|
||||
|
@ -33,9 +33,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 16:30+0000\n"
|
||||
"Last-Translator: Korrosivo <yo@rubendelcampo.es>\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -43,7 +43,7 @@ msgstr ""
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Contactos"
|
||||
|
||||
@ -81,7 +81,7 @@ msgstr "Hubo un fallo al agregar la libreta de contactos: {error}"
|
||||
|
||||
#: js/addressbooks.js:626
|
||||
msgid "Failed loading address books: {error}"
|
||||
msgstr "Hubo un fallo al cargar las libretas de contactos: {error}"
|
||||
msgstr "Se produjo un error al cargar las libretas de contactos: {error}"
|
||||
|
||||
#: js/app.js:215
|
||||
msgid "Indexing contacts"
|
||||
@ -89,7 +89,7 @@ msgstr "Indexando contactos"
|
||||
|
||||
#: js/app.js:225
|
||||
msgid "Unrecoverable error loading address books: {msg}"
|
||||
msgstr "Fallo total al cargar las libretas de contactos: {msg}"
|
||||
msgstr "Error irrecuperable mientras se cargaban las libretas de contactos: {msg}"
|
||||
|
||||
#: js/app.js:226
|
||||
msgid "Error."
|
||||
@ -101,7 +101,7 @@ msgstr "Añadir a..."
|
||||
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr "Remover de..."
|
||||
msgstr "Eliminar de..."
|
||||
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
@ -113,11 +113,11 @@ msgstr "URL no válida: \"{url}\""
|
||||
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr "Hubo un error al abrir la aplicación de correo electrónico."
|
||||
msgstr "Hubo un error mientras se abría el compositor de correo electrónico."
|
||||
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr "Correo Inválido: \"{url}\""
|
||||
msgstr "Dirección de correo inválida: \"{url}\""
|
||||
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
@ -125,68 +125,68 @@ msgstr "Error en la combinación. No se puede encontrar contacto: {id}"
|
||||
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr "Error en la combinación"
|
||||
msgstr "Error en la combinación."
|
||||
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Error en la combinación. Error salvando el contacto."
|
||||
msgstr "Combinación fallida. Error guardando el contacto."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "eccionar una foto"
|
||||
msgstr "Seleccionar una foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Error en la red o en el servidor. Por favor informe al administrador."
|
||||
msgstr "Error en la red o en el servidor. Por favor, informe al administrador."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Error al añadir al grupo."
|
||||
msgstr "Error añadiendo al grupo."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Error al remover del grupo."
|
||||
msgstr "Error eliminando del grupo."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Error configurando {name} como favorito."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Combinar contactos"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Añadir grupo"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Aceptar"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "No se puede encontrar el contacto: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "No hay ficheros seleccionados para subir"
|
||||
msgstr "No se seleccionaron archivos para subir."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "El fichero que quieres subir excede el tamaño máximo permitido en este servidor."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Editar imagen de perfil."
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Recortar imagen"
|
||||
|
||||
@ -194,33 +194,33 @@ msgstr "Recortar imagen"
|
||||
msgid "Is this correct?"
|
||||
msgstr "¿Es esto correcto?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Error al analizar la fecha: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# grupos"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Error al analizar el cumpleaños {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Algunos contactos están marcados para su eliminación, pero no eliminados todavía. Por favor, espere a que sean eliminados."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Pulse para deshacer la eliminación de {num} contactos"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Cancelada la eliminación de {num} contactos"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Añadir"
|
||||
|
||||
@ -246,21 +246,21 @@ msgstr "Los contactos no se encuentran en este grupo."
|
||||
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr "Error al renombrar el grupo: {error}"
|
||||
msgstr "Error renombrando el grupo: {error}"
|
||||
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr "Un grupo llamado {group} ya existe."
|
||||
msgstr "Ya existe un grupo llamado {group}"
|
||||
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr "Puedes arrastrar grupos para⏎\narreglarlos como usted quiera."
|
||||
msgstr "Puedes arrastrar grupos para\ncolocarlos como usted quiera."
|
||||
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr "Error agregando el grupo: {error}"
|
||||
msgstr "Error añadiendo el grupo: {error}"
|
||||
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
@ -284,7 +284,7 @@ msgstr "Error cargando grupos: {error} "
|
||||
|
||||
#: js/loader.js:21
|
||||
msgid "Please choose the addressbook"
|
||||
msgstr "Por favor escoge la agenda"
|
||||
msgstr "Por favor, escoja una libreta de direcciones"
|
||||
|
||||
#: js/loader.js:22 templates/contacts.php:29
|
||||
msgid "Import into..."
|
||||
@ -316,7 +316,7 @@ msgstr "Error"
|
||||
|
||||
#: js/settings.js:75
|
||||
msgid "Displayname cannot be empty."
|
||||
msgstr "El nombre a mostrar no puede estar vacío."
|
||||
msgstr "El nombre para mostrar no puede estar vacío."
|
||||
|
||||
#: js/settings.js:97 templates/settings.php:26
|
||||
msgid "Show CardDav link"
|
||||
@ -353,7 +353,7 @@ msgstr "Menos..."
|
||||
|
||||
#: js/storage.js:29
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr "Error en el servidor. Sírvase informar al administrador."
|
||||
msgstr "Error en el servidor. Por favor, informe al administrador."
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
@ -403,7 +403,7 @@ msgstr "No tiene permisos para modificar esta libreta de direcciones"
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "No tiene permisos para borrar esta libreta de direcciones."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "No se encontraron libretas de direcciones."
|
||||
|
||||
@ -429,11 +429,11 @@ msgstr "Propiedad no encontrada"
|
||||
|
||||
#: lib/contact.php:467
|
||||
msgid " Missing IM parameter for: "
|
||||
msgstr "Falta un parámetro de IM para:"
|
||||
msgstr "Falta el parámetro de IM para:"
|
||||
|
||||
#: lib/contact.php:475
|
||||
msgid "Unknown IM: "
|
||||
msgstr "MI desconocido:"
|
||||
msgstr "Servicio IM desconocido:"
|
||||
|
||||
#: lib/contact.php:788
|
||||
msgid "{name}'s Birthday"
|
||||
@ -443,74 +443,78 @@ msgstr "Cumpleaños de {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Error creando libreta de direcciones"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Error actualizando libreta de direcciones"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "No tiene los permisos requeridos para eliminar la libreta de direcciones \"%s\""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Error borrando libreta de direcciones"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Error creando contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Error borrando contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Error obteniendo contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Fallo al salvar un contacto"
|
||||
msgstr "Error guardando el contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Error borrando contacto desde otra libreta de direcciones."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "No se puede encontrar contacto."
|
||||
msgstr " No se puede encontrar contacto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Error fusionando en contacto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Error guardando contacto en backend."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Nombre de propiedad no definido."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Verificación de propiedad no definida."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "La información sobre el vCard es incorrecta. Por favor vuelve a cargar la página."
|
||||
msgstr "La información sobre el vCard es incorrecta. Por favor, recargue la página."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Error actualizando contacto"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Error guardando el contacto"
|
||||
|
||||
@ -531,19 +535,19 @@ msgstr "No hay ningún error, el archivo se ha subido con éxito"
|
||||
#: lib/controller/contactphotocontroller.php:96
|
||||
#: lib/controller/importcontroller.php:45
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
||||
msgstr "El archivo subido sobrepasa la directiva upload_max_filesize de php.ini"
|
||||
msgstr "El archivo subido sobrepasa la directiva \"upload_max_filesize\" del archivo PHP.ini"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:97
|
||||
#: lib/controller/importcontroller.php:47
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "El archivo subido sobrepasa la directiva MAX_FILE_SIZE especificada en el formulario HTML"
|
||||
msgstr "El archivo subido sobrepasa la directiva \"MAX_FILE_SIZE\" especificada en el formulario HTML"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:98
|
||||
#: lib/controller/importcontroller.php:48
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "El archivo subido fue sólo subido parcialmente"
|
||||
msgstr "El archivo ha sido subido parcialmente"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:99
|
||||
#: lib/controller/importcontroller.php:49
|
||||
@ -553,16 +557,16 @@ msgstr "No se subió ningún archivo"
|
||||
#: lib/controller/contactphotocontroller.php:100
|
||||
#: lib/controller/importcontroller.php:50
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr "Falta la carpeta temporal"
|
||||
msgstr "Falta una carpeta temporal"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:115
|
||||
msgid "Couldn't load temporary image: "
|
||||
msgstr "Fallo no pudo cargara de una imagen temporal"
|
||||
msgstr "No se pudo cargar la imagen temporal:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:124
|
||||
#: lib/controller/contactphotocontroller.php:159
|
||||
msgid "Couldn't save temporary image: "
|
||||
msgstr "No se pudo salvar una imagen temporal"
|
||||
msgstr "No se pudo guardar una imagen temporal"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:188
|
||||
msgid "No photo path was submitted."
|
||||
@ -573,37 +577,37 @@ msgid "File doesn't exist:"
|
||||
msgstr "El archivo no existe:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Error cargando imagen."
|
||||
msgstr "Error cargando la imagen."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "La imagen ha sido eliminada de la caché"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Fallo al crear la foto temporal"
|
||||
msgstr "Error creando la imagen temporal"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Fallo al cortar el tamaño de la foto"
|
||||
msgstr "Error al recortar la imagen"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Fallo al cambiar de tamaño una foto"
|
||||
msgstr "Error redimensionando la imagen."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Fallo al coger las propiedades de la foto ."
|
||||
msgstr "Error obteniendo las propiedades de la foto."
|
||||
|
||||
#: lib/controller/groupcontroller.php:57 lib/controller/groupcontroller.php:79
|
||||
msgid "No group name given."
|
||||
msgstr "No se ha dado un nombre de grupo"
|
||||
msgstr "No se ha especificado un nombre de grupo."
|
||||
|
||||
#: lib/controller/groupcontroller.php:64
|
||||
msgid "Error adding group."
|
||||
msgstr "Error al añadir el grupo"
|
||||
msgstr "Error añadiendo el grupo."
|
||||
|
||||
#: lib/controller/groupcontroller.php:127
|
||||
msgid "No group name to rename from given."
|
||||
@ -611,29 +615,29 @@ msgstr "No hay nombre de grupo para renombrar el que se ha dado."
|
||||
|
||||
#: lib/controller/groupcontroller.php:131
|
||||
msgid "No group name to rename to given."
|
||||
msgstr "No se ha dado un nombre al grupo para renombrar el que se ha dado"
|
||||
msgstr "No se ha especificado un nombre de grupo para renombrar el que se ha dado"
|
||||
|
||||
#: lib/controller/groupcontroller.php:137
|
||||
msgid "Error renaming group."
|
||||
msgstr "Error renombrando grupo"
|
||||
msgstr "Error renombrando grupo."
|
||||
|
||||
#: lib/controller/groupcontroller.php:175
|
||||
#: lib/controller/groupcontroller.php:223
|
||||
msgid "Group ID missing from request."
|
||||
msgstr "ID de grupo faltante en la solicitud"
|
||||
msgstr "Falta el ID de grupo en la solicitud."
|
||||
|
||||
#: lib/controller/groupcontroller.php:180
|
||||
msgid "Group name missing from request."
|
||||
msgstr "Falte nombre del grupo en la petición"
|
||||
msgstr "Falta el nombre del grupo en la petición."
|
||||
|
||||
#: lib/controller/groupcontroller.php:185
|
||||
#: lib/controller/groupcontroller.php:228
|
||||
msgid "Contact ID missing from request."
|
||||
msgstr "ID de contacto faltante en la solicitud"
|
||||
msgstr "Falta el ID de contacto en la solicitud."
|
||||
|
||||
#: lib/controller/importcontroller.php:51
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Falló al escribir al disco"
|
||||
msgstr "Error al escribir al disco"
|
||||
|
||||
#: lib/controller/importcontroller.php:62
|
||||
msgid "Not enough storage available"
|
||||
@ -641,11 +645,11 @@ msgstr "No hay suficiente espacio disponible"
|
||||
|
||||
#: lib/controller/importcontroller.php:70
|
||||
msgid "Attempt to upload blacklisted file:"
|
||||
msgstr "Intento de subir un fichero en lista negra:"
|
||||
msgstr "Intentó subir un fichero en lista negra:"
|
||||
|
||||
#: lib/controller/importcontroller.php:92
|
||||
msgid "Error uploading contacts to storage."
|
||||
msgstr "Error al subir contactos al almacenamiento."
|
||||
msgstr "Error subiendo contactos al almacenamiento."
|
||||
|
||||
#: lib/controller/importcontroller.php:137
|
||||
msgid "Error moving file to imports folder."
|
||||
@ -653,20 +657,20 @@ msgstr "Error moviendo ficheros a la carpeta de importaciones."
|
||||
|
||||
#: lib/controller/importcontroller.php:154
|
||||
msgid "You do not have permissions to import into this address book."
|
||||
msgstr "No tiene permisos para importar en esta libreta de direcciones."
|
||||
msgstr "No tiene permiso para importar en esta libreta de direcciones."
|
||||
|
||||
#: lib/controller/importcontroller.php:162
|
||||
msgid "File name missing from request."
|
||||
msgstr "Falta el nombre del fichero en la petición"
|
||||
msgstr "Falta el nombre del fichero en la petición."
|
||||
|
||||
#: lib/controller/importcontroller.php:167
|
||||
#: lib/controller/importcontroller.php:283
|
||||
msgid "Progress key missing from request."
|
||||
msgstr "Falta la clave de progreso en la petición"
|
||||
msgstr "Falta la clave de progreso en la petición."
|
||||
|
||||
#: lib/controller/importcontroller.php:173
|
||||
msgid "Attempt to access blacklisted file:"
|
||||
msgstr "Intento de acceder a un fichero de lista negra:"
|
||||
msgstr "Intentó acceder a un fichero en la lista negra:"
|
||||
|
||||
#: lib/controller/importcontroller.php:215
|
||||
msgid "No contacts found in: "
|
||||
@ -674,15 +678,15 @@ msgstr "No se encontraron contactos en:"
|
||||
|
||||
#: lib/controller/settingscontroller.php:35
|
||||
msgid "No key is given."
|
||||
msgstr "No se ha dado una clave"
|
||||
msgstr "No se ha especificado una clave."
|
||||
|
||||
#: lib/controller/settingscontroller.php:39
|
||||
msgid "No value is given."
|
||||
msgstr "No se ha dado un valor"
|
||||
msgstr "No se ha especificado un valor."
|
||||
|
||||
#: lib/controller/settingscontroller.php:50
|
||||
msgid "Could not set preference: "
|
||||
msgstr "No se pudo establecer la preferencia:"
|
||||
msgstr "No se pudo establecer la opción:"
|
||||
|
||||
#: lib/searchprovider.php:24
|
||||
msgid "Contact"
|
||||
@ -819,7 +823,7 @@ msgstr "Libretas de direcciones"
|
||||
#: templates/contacts.php:22 templates/contacts.php:47
|
||||
#: templates/contacts.php:67
|
||||
msgid "Display name"
|
||||
msgstr "Nombre a mostrar"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#: templates/contacts.php:22
|
||||
msgid "Add Address Book"
|
||||
@ -831,11 +835,11 @@ msgstr "Seleccionar archivo"
|
||||
|
||||
#: templates/contacts.php:45 templates/contacts.php:65
|
||||
msgid "(De-)select all"
|
||||
msgstr "Seleccionar todos"
|
||||
msgstr "(De-)seleccionar todos"
|
||||
|
||||
#: templates/contacts.php:46 templates/contacts.php:66
|
||||
msgid "Sort order"
|
||||
msgstr "Orden"
|
||||
msgstr "Ordenar"
|
||||
|
||||
#: templates/contacts.php:48 templates/contacts.php:68
|
||||
msgid "First- Lastname"
|
||||
@ -875,7 +879,7 @@ msgstr "Anterior contacto en la lista"
|
||||
|
||||
#: templates/contacts.php:101
|
||||
msgid "Expand/collapse current addressbook"
|
||||
msgstr "Abrir/Cerrar la agenda"
|
||||
msgstr "Abrir/cerrar la libreta actual"
|
||||
|
||||
#: templates/contacts.php:103
|
||||
msgid "Next addressbook"
|
||||
@ -986,7 +990,7 @@ msgstr "Título"
|
||||
|
||||
#: templates/contacts.php:274
|
||||
msgid "Enter title"
|
||||
msgstr "Ingrese titulo"
|
||||
msgstr "Introduzca título"
|
||||
|
||||
#: templates/contacts.php:278 templates/contacts.php:326
|
||||
msgid "Organization"
|
||||
@ -994,7 +998,7 @@ msgstr "Organización"
|
||||
|
||||
#: templates/contacts.php:281
|
||||
msgid "Enter organization"
|
||||
msgstr "Ingrese organización"
|
||||
msgstr "Introduzca organización"
|
||||
|
||||
#: templates/contacts.php:285 templates/contacts.php:329
|
||||
msgid "Birthday"
|
||||
@ -1002,12 +1006,16 @@ msgstr "Fecha de nacimiento"
|
||||
|
||||
#: templates/contacts.php:316
|
||||
msgid "Notes go here..."
|
||||
msgstr "Las notas van acá..."
|
||||
msgstr "Puede escribir notas aquí..."
|
||||
|
||||
#: templates/contacts.php:323
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exportar como VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Agregar campo..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Teléfono"
|
||||
|
@ -14,8 +14,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -24,7 +24,7 @@ msgstr ""
|
||||
"Language: es_AR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Contactos"
|
||||
|
||||
@ -112,62 +112,62 @@ msgstr "Falló la combinación"
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Falló la combinación. Error al guardar el contacto."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Seleccionar una imagen"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Error en la red o en el servidor. Por favor, informe al administrador."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Error al agregar al grupo."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Error al borrar del grupo."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Error al configurar {name} como favorito."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Combinar contactos."
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Añadir grupo"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Aceptar"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "No se puede encontrar el contacto: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "No hay archivos seleccionados para subir"
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "El archivo que querés subir supera el tamaño máximo permitido en este servidor."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Editar imagen del perfil"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Recortar imagen"
|
||||
|
||||
@ -175,33 +175,33 @@ msgstr "Recortar imagen"
|
||||
msgid "Is this correct?"
|
||||
msgstr "¿Es esto correcto?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Error al analizar la fecha: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# grupos"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Error al interpretar fecha de nacimiento {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Algunos contactos fuero marcados para ser borrados, pero no fueron borrados todavía. Esperá que lo sean."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Pulsá para deshacer la eliminación de {num} contactos"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Cancelado el borrado de {num} contactos"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Agregar"
|
||||
|
||||
@ -384,7 +384,7 @@ msgstr "No tiene atribuciones para actualizar la libreta de direcciones."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "No tiene atribuciones para borrar la libreta de direcciones."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Libreta de direcciones no encontrada"
|
||||
|
||||
@ -424,74 +424,78 @@ msgstr "Cumpleaños de {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Error creando libreta de direcciones"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Error actualizando libreta de direcciones"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "No tenés los permisos requeridos para para la libreta de direcciones \"%s\""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Error borrando libreta de direcciones"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Error al crear contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Error al borrar contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Error al obtener contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Error al guardar el contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Error borrando contacto de la otra libreta de direcciones."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "No se puede encontrar contacto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Error combinando en un contacto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Error guardando contacto en backend."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Nombre de propiedad no definido."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Verificación de propiedad no definida."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "La información sobre la vCard es incorrecta. Por favor, cargá nuevamente la página"
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -554,27 +558,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "El archivo no existe."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Error cargando imagen."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "La imagen fue eliminada de la caché"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Error al crear una imagen temporal"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Error al recortar la imagen"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Error al cambiar el tamaño de la imagen"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Error al obtener la propiedades de la foto."
|
||||
|
||||
@ -989,6 +993,10 @@ msgstr "Las notas van acá..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exportar como VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Teléfono"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -32,7 +32,7 @@
|
||||
"OK" => "OK",
|
||||
"Could not find contact: {id}" => "Ei leia kontakti: {id}",
|
||||
"No files selected for upload." => "Üleslaadimiseks pole faile valitud.",
|
||||
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Fail , mida sa proovid üles laadida ületab sinu serveri poolt määratud maksimaalse üleslaadimise limiidi.",
|
||||
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Fail, mida sa proovid üles laadida, ületab sinu serveri poolt määratud maksimaalse üleslaadimise limiidi.",
|
||||
"Edit profile picture" => "Muuda profiili pilti",
|
||||
"Crop photo" => "Lõika pilti",
|
||||
"Is this correct?" => "Kas see on õige?",
|
||||
@ -88,7 +88,7 @@
|
||||
"You don't have permissions to delete the address book." => "Sul pole õigusi aadressiraamatu kustutamiseks.",
|
||||
"Address book not found" => "Aadressiraamatut ei leitud",
|
||||
"You do not have permissions to see this contact" => "Sul pole selle kontakti vaatamiseks õigusi",
|
||||
"You do not have permissions to update this contact" => "Sul pole selle kontakti uuendamiseks õigusi.",
|
||||
"You do not have permissions to update this contact" => "Sul pole õigusi selle kontakti uuendamiseks.",
|
||||
"The backend for this contact does not support updating it" => "Tagarakend ei toeta selle kontakti muutmist",
|
||||
"This backend not support adding contacts" => "See tagarakend ei toeta kontaktide lisamist",
|
||||
"Property not found" => "Omadust ei leitud",
|
||||
@ -105,6 +105,7 @@
|
||||
"Error saving contact." => "Viga kontakti salvestamisel.",
|
||||
"Error removing contact from other address book." => "Viga kontakti eemaldamisel aadressiraamatust.",
|
||||
"Couldn't find contact." => "Ei suuda leida kontakti.",
|
||||
"No contact data in request." => "Päringus pole kontaktinfot.",
|
||||
"Error merging into contact." => "Viga kontaktiks ühendamisel.",
|
||||
"Error saving contact to backend." => "Viga kontakti salvestamisel tagarakendisse.",
|
||||
"Property name is not set." => "Omaduse nimi pole määratud.",
|
||||
@ -133,7 +134,7 @@
|
||||
"No group name given." => "Puudub grupi nimi.",
|
||||
"Error adding group." => "Viga grupi lisamisel.",
|
||||
"No group name to rename from given." => "Puudub ümbernimetatava grupi nimi.",
|
||||
"No group name to rename to given." => "Puudub grupi nimi ümbernimetatamiseks",
|
||||
"No group name to rename to given." => "Puudub grupi nimi ümbernimetatamiseks.",
|
||||
"Error renaming group." => "Viga grupi ümber nimetamisel.",
|
||||
"Group ID missing from request." => "Päringust puudub Grupi ID.",
|
||||
"Group name missing from request." => "Päringust puudub grupi nimi.",
|
||||
@ -192,8 +193,8 @@
|
||||
"Last-, Firstname" => "Pere-, Eesnimi",
|
||||
"Groups" => "Grupid",
|
||||
"Favorite" => "Lemmik",
|
||||
"Merge selected" => "Ühendus valitud",
|
||||
"Keyboard shortcuts" => "Klvaiatuuri otseteed",
|
||||
"Merge selected" => "Liida valitud",
|
||||
"Keyboard shortcuts" => "Klaviatuuri otseteed",
|
||||
"Navigation" => "Navigeerimine",
|
||||
"Next contact in list" => "Järgmine kontakt nimekirjas",
|
||||
"Previous contact in list" => "Eelmine kontakt nimekirjas",
|
||||
@ -230,6 +231,7 @@
|
||||
"Birthday" => "Sünnipäev",
|
||||
"Notes go here..." => "Märkmed lähevad siia..",
|
||||
"Export as VCF" => "Ekspordi VCF-ina",
|
||||
"Add field..." => "Lisa väli ...",
|
||||
"Phone" => "Telefon",
|
||||
"Email" => "E-post",
|
||||
"Instant Messaging" => "Kiirsõnumid",
|
||||
|
@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-07 09:33-0400\n"
|
||||
"PO-Revision-Date: 2013-10-06 17:50+0000\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 21:00+0000\n"
|
||||
"Last-Translator: Rivo Zängov <eraser@eraser.ee>\n"
|
||||
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
"Language: et_EE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Kontaktid"
|
||||
|
||||
@ -108,62 +108,62 @@ msgstr "Ühendamine ebaõnnestus."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Ühendamine ebaõnnestus. Viga kontakti salvestamisel."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Vali foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Võrgu või serveri viga. Palun informeeri administraatorit."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Viga gruppi lisamisel."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Viga grupist eemaldamisel."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Viga {name} lemmikuks määramisel."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Ühenda kontaktid"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Loobu"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Lisa grupp"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Ei leia kontakti: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Üleslaadimiseks pole faile valitud."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Fail , mida sa proovid üles laadida ületab sinu serveri poolt määratud maksimaalse üleslaadimise limiidi."
|
||||
msgstr "Fail, mida sa proovid üles laadida, ületab sinu serveri poolt määratud maksimaalse üleslaadimise limiidi."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Muuda profiili pilti"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Lõika pilti"
|
||||
|
||||
@ -171,33 +171,33 @@ msgstr "Lõika pilti"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Kas see on õige?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Viga kuupäeva parsimisel: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# grupid"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Viga sünnipäeva {bday} parsimisel: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Mõned kontaktid on märgitud kustutamiseks, aga pole veel kustutatud. Palun oota, kuni need kustutatakse."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Kliki, et tühistada {num} kontakti kustutamine"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Tühistatud {num} kontakti kustutamine"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Lisa"
|
||||
|
||||
@ -328,7 +328,7 @@ msgstr "Veel..."
|
||||
msgid "Less..."
|
||||
msgstr "Vähem..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr "Serveri viga! Palun teavita süsteemi administraatorit"
|
||||
|
||||
@ -380,7 +380,7 @@ msgstr "Sul pole õigusi selle aadressiraamatu uuendamiseks."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Sul pole õigusi aadressiraamatu kustutamiseks."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Aadressiraamatut ei leitud"
|
||||
|
||||
@ -390,7 +390,7 @@ msgstr "Sul pole selle kontakti vaatamiseks õigusi"
|
||||
|
||||
#: lib/contact.php:263
|
||||
msgid "You do not have permissions to update this contact"
|
||||
msgstr "Sul pole selle kontakti uuendamiseks õigusi."
|
||||
msgstr "Sul pole õigusi selle kontakti uuendamiseks."
|
||||
|
||||
#: lib/contact.php:274
|
||||
msgid "The backend for this contact does not support updating it"
|
||||
@ -420,74 +420,78 @@ msgstr "{name} sünnipäev"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Viga aadressiraamatu loomisel"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Viga aadressiraamatu uuendamisel"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Sul pole õigusi aadressiraamatu \"%s\" kustutamiseks"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Viga aadressiraamatu kustutamisel"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Viga kontakti loomisel."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Viga kontakti kustutamisel."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Viga kontakti hankimisel."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Viga kontakti salvestamisel."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Viga kontakti eemaldamisel aadressiraamatust."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Ei suuda leida kontakti."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr "Päringus pole kontaktinfot."
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Viga kontaktiks ühendamisel."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Viga kontakti salvestamisel tagarakendisse."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Omaduse nimi pole määratud."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Omaduse kontrollsummat pole määratud."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Visiitkaardi info pole korrektne. Palun lae leht uuesti."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Viga kontakti uuendamisel"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Viga kontakti salvestamisel tagarakendisse"
|
||||
|
||||
@ -550,27 +554,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Faili pole olemas:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Viga pildi laadimisel."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Pilt on puhvrist eemaldatud"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Viga ajutise pildi loomisel"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Viga pildi lõikamisel"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Viga pildi suuruse muutmisel"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Viga PHOTO omaduse hankimisel."
|
||||
|
||||
@ -588,7 +592,7 @@ msgstr "Puudub ümbernimetatava grupi nimi."
|
||||
|
||||
#: lib/controller/groupcontroller.php:131
|
||||
msgid "No group name to rename to given."
|
||||
msgstr "Puudub grupi nimi ümbernimetatamiseks"
|
||||
msgstr "Puudub grupi nimi ümbernimetatamiseks."
|
||||
|
||||
#: lib/controller/groupcontroller.php:137
|
||||
msgid "Error renaming group."
|
||||
@ -832,11 +836,11 @@ msgstr "Lemmik"
|
||||
|
||||
#: templates/contacts.php:56 templates/contacts.php:83
|
||||
msgid "Merge selected"
|
||||
msgstr "Ühendus valitud"
|
||||
msgstr "Liida valitud"
|
||||
|
||||
#: templates/contacts.php:92
|
||||
msgid "Keyboard shortcuts"
|
||||
msgstr "Klvaiatuuri otseteed"
|
||||
msgstr "Klaviatuuri otseteed"
|
||||
|
||||
#: templates/contacts.php:94
|
||||
msgid "Navigation"
|
||||
@ -985,6 +989,10 @@ msgstr "Märkmed lähevad siia.."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Ekspordi VCF-ina"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Lisa väli ..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -11,9 +11,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-07 09:33-0400\n"
|
||||
"PO-Revision-Date: 2013-10-06 19:10+0000\n"
|
||||
"Last-Translator: asieriko <asieriko@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -21,7 +21,7 @@ msgstr ""
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontaktuak"
|
||||
|
||||
@ -109,62 +109,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Hautatu argazkia"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Errore bat izan da sare edo zerbitzarian. Mesedez abisatu administradorea."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Errore bat izan da taldera gehitzean."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Errore bat izan da taldetik kentzean."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Ezeztatu"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Gehitu taldea"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Ados"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Ez duzu igotzeko fitxategirik hautatu."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Igo nahi duzun fitxategia zerbitzariak onartzen duen tamaina baino handiagoa da."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Editatu profilaren argazkia"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -172,33 +172,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr "Hau zuzena al da?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Kontaktu batzuk ezabatzeko markatuta daude, baina oraindik ez dira ezabatu. Mesedez itxoin ezabatu arte."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Klikatu {num} kontaktuen ezabaketa desegiteko"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Gehitu"
|
||||
|
||||
@ -381,7 +381,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -421,74 +421,78 @@ msgstr "{name}ren jaioteguna"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Errore bat izan da kontaktua gordetzean."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "vCard-aren inguruko informazioa okerra da. Mesedez birkargatu orrialdea."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -551,27 +555,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Fitxategia ez da existitzen:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Errore bat izan da irudia kargatzearkoan."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Errore bat izan da aldi bateko irudia sortzen"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Errore bat izan da irudia mozten"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Errore bat izan da irudiaren tamaina aldatzean"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Errore bat izan da PHOTO propietatea lortzean."
|
||||
|
||||
@ -986,6 +990,10 @@ msgstr "Idatzi oharrak hemen..."
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefonoa"
|
||||
|
@ -11,8 +11,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -21,7 +21,7 @@ msgstr ""
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "ارتباطها"
|
||||
|
||||
@ -109,62 +109,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "تصویر را انتخاب کنید"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "منصرف شدن"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "باشه"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "هیچ فایلی برای آپلود انتخاب نشده است"
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "حجم فایل بسیار بیشتر از حجم تنظیم شده در تنظیمات سرور است"
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -172,33 +172,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "افزودن"
|
||||
|
||||
@ -381,7 +381,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -421,74 +421,78 @@ msgstr "روز تولد {name} است"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "خطا در ذخیره سازی اطلاعات"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "اطلاعات درمورد vCard شما اشتباه است لطفا صفحه را دوباره بار گذاری کنید"
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -551,27 +555,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "پرونده وجود ندارد"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "خطا در بارگزاری تصویر"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "خطا در ساخت تصویر temporary"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "خطا در برداشت تصویر"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "خطا در تغییر دادن اندازه تصویر"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "خطا در دربافت تصویر ویژگی شخصی"
|
||||
|
||||
@ -986,6 +990,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "شماره تلفن"
|
||||
|
@ -64,8 +64,14 @@
|
||||
"Failed loading photo: {error}" => "Kuvan lataaminen epäonnistui: {error}",
|
||||
"Contact not found" => "Yhteystietoa ei löydy",
|
||||
"You do not have permissions to see these contacts" => "Käyttöoikeutesi eivät riitä näiden yhteystietojen katselemiseen",
|
||||
"You do not have permissions add contacts to the address book" => "Oikeutesi eivät riitä yhteystietojen lisäämiseen osoitekirjaan",
|
||||
"You do not have permissions to delete this contact" => "Oikeutesi eivät riitä tämän yhteystiedon poistamiseen",
|
||||
"Unknown error" => "Tuntematon virhe",
|
||||
"You don't have permissions to update the address book." => "Oikeutesi eivät riitä tämän osoitekirjan päivittämiseen.",
|
||||
"You don't have permissions to delete the address book." => "Oikeutesi eivät riitä tämän osoitekirjan poistamiseen.",
|
||||
"Address book not found" => "Osoitekirjaa ei löytynyt",
|
||||
"You do not have permissions to see this contact" => "Oikeutesi eivät riitä tämän yhteystiedon katseluun",
|
||||
"You do not have permissions to update this contact" => "Oikeutesi eivät riitä tämän yhteystiedon päivittämiseen",
|
||||
"Property not found" => "Ominaisuutta ei löydy",
|
||||
"Unknown IM: " => "Tuntematon IM-arvo.",
|
||||
"{name}'s Birthday" => "Henkilön {name} syntymäpäivä",
|
||||
@ -73,8 +79,11 @@
|
||||
"Error updating address book" => "Virhe osoitekirjaa päivittäessä",
|
||||
"You do not have permissions to delete the \"%s\" address book" => "Käyttöoikeutesi eivät riitä osoitekirjan \"%s\" poistamiseen",
|
||||
"Error deleting address book" => "Virhe osoitekirjaa poistaessa",
|
||||
"Error creating contact." => "Virhe yhteystietoa luotaessa.",
|
||||
"Error deleting contact." => "Virhe yhteystietoa poistaessa.",
|
||||
"Error saving contact." => "Virhe yhteystietoa tallennettaessa.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "vCardin tiedot eivät kelpaa. Lataa sivu uudelleen.",
|
||||
"Error updating contact" => "Virhe yhteystietoa päivittäessä",
|
||||
"Error getting user photo" => "Virhe hankkiessa kuvaa ",
|
||||
"No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe",
|
||||
"There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti",
|
||||
@ -97,6 +106,7 @@
|
||||
"Failed to write to disk" => "Levylle kirjoitus epäonnistui",
|
||||
"Not enough storage available" => "Tallennustilaa ei ole riittävästi käytettävissä",
|
||||
"Error uploading contacts to storage." => "Virhe yhteystietojen lataamisessa talletettavaksi.",
|
||||
"You do not have permissions to import into this address book." => "Sinulla ei ole oikeuksia tuoda tähän osoitekirjaan.",
|
||||
"File name missing from request." => "Tiedoston nimi puuttuu pyynnöstä.",
|
||||
"No value is given." => "Arvoa ei ole annettu.",
|
||||
"Contact" => "Yhteystieto",
|
||||
@ -171,6 +181,7 @@
|
||||
"Birthday" => "Syntymäpäivä",
|
||||
"Notes go here..." => "Muistiinpanot kuuluvat tähän...",
|
||||
"Export as VCF" => "Vie VCF-muodossa",
|
||||
"Add field..." => "Lisää kenttä...",
|
||||
"Phone" => "Puhelin",
|
||||
"Email" => "Sähköpostiosoite",
|
||||
"Instant Messaging" => "Pikaviestintä",
|
||||
|
@ -14,8 +14,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -24,7 +24,7 @@ msgstr ""
|
||||
"Language: fi_FI\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Yhteystiedot"
|
||||
|
||||
@ -112,62 +112,62 @@ msgstr "Yhdistäminen epäonnistui."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Yhdistäminen epäonnistui. Virhe yhteystietoa tallentaessa."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Valitse valokuva"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Verkko- tai palvelinvirhe. Ilmoita asiasta pääkäyttäjälle."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Virhe ryhmään lisättäessä."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Virhe poistaessa ryhmästä."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Yhdistä yhteystiedot"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Peru"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Lisää ryhmä"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Yhteystietoa ei löydy: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Tiedostoja ei ole valittu lähetettäväksi."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Tiedosto, jota yrität ladata ylittää suurimman sallitun koon tällä palvelimella."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Muokkaa profiilikuvaa"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Rajaa valokuva"
|
||||
|
||||
@ -175,33 +175,33 @@ msgstr "Rajaa valokuva"
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Jotkin yhteystiedot on merkitty poistettaviksi, mutta niitä ei ole vielä poistettu. Odota hetki, että kyseiset yhteystiedot poistetaan."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Lisää"
|
||||
|
||||
@ -354,7 +354,7 @@ msgstr "Käyttöoikeutesi eivät riitä näiden yhteystietojen katselemiseen"
|
||||
|
||||
#: lib/addressbook.php:213
|
||||
msgid "You do not have permissions add contacts to the address book"
|
||||
msgstr ""
|
||||
msgstr "Oikeutesi eivät riitä yhteystietojen lisäämiseen osoitekirjaan"
|
||||
|
||||
#: lib/addressbook.php:216
|
||||
msgid "The backend for this address book does not support adding contacts"
|
||||
@ -362,7 +362,7 @@ msgstr ""
|
||||
|
||||
#: lib/addressbook.php:240 lib/addressbook.php:266 lib/contact.php:248
|
||||
msgid "You do not have permissions to delete this contact"
|
||||
msgstr ""
|
||||
msgstr "Oikeutesi eivät riitä tämän yhteystiedon poistamiseen"
|
||||
|
||||
#: lib/addressbook.php:243 lib/addressbook.php:269
|
||||
msgid "The backend for this address book does not support deleting contacts"
|
||||
@ -378,23 +378,23 @@ msgstr ""
|
||||
|
||||
#: lib/addressbook.php:358
|
||||
msgid "You don't have permissions to update the address book."
|
||||
msgstr ""
|
||||
msgstr "Oikeutesi eivät riitä tämän osoitekirjan päivittämiseen."
|
||||
|
||||
#: lib/addressbook.php:369
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
msgstr "Oikeutesi eivät riitä tämän osoitekirjan poistamiseen."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Osoitekirjaa ei löytynyt"
|
||||
|
||||
#: lib/contact.php:114 lib/contact.php:161
|
||||
msgid "You do not have permissions to see this contact"
|
||||
msgstr ""
|
||||
msgstr "Oikeutesi eivät riitä tämän yhteystiedon katseluun"
|
||||
|
||||
#: lib/contact.php:263
|
||||
msgid "You do not have permissions to update this contact"
|
||||
msgstr ""
|
||||
msgstr "Oikeutesi eivät riitä tämän yhteystiedon päivittämiseen"
|
||||
|
||||
#: lib/contact.php:274
|
||||
msgid "The backend for this contact does not support updating it"
|
||||
@ -424,74 +424,78 @@ msgstr "Henkilön {name} syntymäpäivä"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Virhe osoitekirjaa luotaessa"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Virhe osoitekirjaa päivittäessä"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Käyttöoikeutesi eivät riitä osoitekirjan \"%s\" poistamiseen"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Virhe osoitekirjaa poistaessa"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
msgstr "Virhe yhteystietoa luotaessa."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
msgstr "Virhe yhteystietoa poistaessa."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Virhe yhteystietoa tallennettaessa."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "vCardin tiedot eivät kelpaa. Lataa sivu uudelleen."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
msgstr "Virhe yhteystietoa päivittäessä"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -554,27 +558,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Tiedostoa ei ole olemassa"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Virhe kuvaa ladatessa."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Kuva on poistettu välimuistista"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Virhe luotaessa väliaikaista kuvaa"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Virhe rajatessa kuvaa"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Virhe asettaessa kuvaa uuteen kokoon"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Virhe KUVA ominaisuuden saamisessa."
|
||||
|
||||
@ -634,7 +638,7 @@ msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:154
|
||||
msgid "You do not have permissions to import into this address book."
|
||||
msgstr ""
|
||||
msgstr "Sinulla ei ole oikeuksia tuoda tähän osoitekirjaan."
|
||||
|
||||
#: lib/controller/importcontroller.php:162
|
||||
msgid "File name missing from request."
|
||||
@ -989,6 +993,10 @@ msgstr "Muistiinpanot kuuluvat tähän..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Vie VCF-muodossa"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Lisää kenttä..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Puhelin"
|
||||
|
@ -105,6 +105,7 @@
|
||||
"Error saving contact." => "Erreur de sauvegarde du contact",
|
||||
"Error removing contact from other address book." => "Erreur à la suppression du contact d'un autre carnet d'adresses.",
|
||||
"Couldn't find contact." => "Impossible de trouver le contact.",
|
||||
"No contact data in request." => "Aucune donnée de contact dans la requête.",
|
||||
"Error merging into contact." => "Erreur de la fusion du contact.",
|
||||
"Error saving contact to backend." => "Erreur d'enregistrement du contact sur l'infrastructure d'arrière-plan.",
|
||||
"Property name is not set." => "Le nom de la propriété n'est pas défini.",
|
||||
@ -230,6 +231,7 @@
|
||||
"Birthday" => "Anniversaire",
|
||||
"Notes go here..." => "Remarques…",
|
||||
"Export as VCF" => "Exporter vers VCF",
|
||||
"Add field..." => "Ajouter un champ ...",
|
||||
"Phone" => "Téléphone",
|
||||
"Email" => "Adresse mail",
|
||||
"Instant Messaging" => "Messagerie instantanée",
|
||||
|
@ -34,9 +34,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-07 09:33-0400\n"
|
||||
"PO-Revision-Date: 2013-10-05 20:10+0000\n"
|
||||
"Last-Translator: etiess <etiess@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-18 11:20+0000\n"
|
||||
"Last-Translator: Christophe Lherieau <skimpax@gmail.com>\n"
|
||||
"Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -44,7 +44,7 @@ msgstr ""
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Contacts"
|
||||
|
||||
@ -132,62 +132,62 @@ msgstr "Echec de la fusion."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Échec de la fusion. Erreur d'enregistrement du contact."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Sélectionner une photo"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Erreur de serveur ou du réseau. Veuillez contacter votre administrateur."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Erreur lors de l'ajout au groupe."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Erreur lors du retrait du groupe."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Erreur lors de la mise en favori de {name}."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Fusionner les contacts"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Ajouter un groupe"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Impossible de trouver le contact : {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Aucun fichiers choisis pour être chargés"
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Le fichier que vous tentez de charger dépasse la taille maximum de fichier autorisée sur ce serveur."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Éditer l'image de profil"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Recadrer la photo"
|
||||
|
||||
@ -195,33 +195,33 @@ msgstr "Recadrer la photo"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Est-ce correct ?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Erreur lors de l'analyse de la date : {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# groupes"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Erreur lors de l'analyse de l'anniversaire {bday} : {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Certains contacts sont marqués pour être supprimés, mais ne le sont pas encore. Veuillez attendre que l'opération se termine."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Cliquer pour annuler la suppression de {num} contacts"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Suppression annulée pour {num} contacts"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
@ -352,7 +352,7 @@ msgstr "Plus…"
|
||||
msgid "Less..."
|
||||
msgstr "Moins..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr "Erreur du serveur ! Veuillez contacter votre administrateur."
|
||||
|
||||
@ -404,7 +404,7 @@ msgstr "Vous n'avez pas les droits suffisants pour mettre à jour ce carnet d'ad
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Vous n'avez pas les droits suffisants pour supprimer ce carnet d'adresses."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Carnet d'adresses non trouvé."
|
||||
|
||||
@ -444,74 +444,78 @@ msgstr "Anniversaire de {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Erreur à la création du carnet d'adresses"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Erreur à la mise à jour du carnet d'adresses"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Vous n'avez pas les droits suffisants pour supprimer le carnet d'adresses \"%s\""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Erreur à la suppression du carnet d'adresses"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Erreur à la création du contact."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Erreur à la suppression du contact."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Erreur à la récupération du contact."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Erreur de sauvegarde du contact"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Erreur à la suppression du contact d'un autre carnet d'adresses."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Impossible de trouver le contact."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr "Aucune donnée de contact dans la requête."
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Erreur de la fusion du contact."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Erreur d'enregistrement du contact sur l'infrastructure d'arrière-plan."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Le nom de la propriété n'est pas défini."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "La somme de contrôle de la propriété n'est pas définie."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Les informations relatives à cette vCard sont incorrectes. Veuillez recharger la page."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Erreur lors de la mise à jour du contact"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Erreur d'enregistrement du contact sur l'infrastructure d'arrière-plan."
|
||||
|
||||
@ -574,27 +578,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Ce fichier n'existe pas :"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Erreur lors du chargement de l'image."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "L'image a été supprimée du cache"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Erreur de création de l'image temporaire"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Erreur lors du rognage de l'image"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Erreur de redimensionnement de l'image"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Erreur lors de l'obtention des propriétés de la photo."
|
||||
|
||||
@ -1009,6 +1013,10 @@ msgstr "Remarques…"
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exporter vers VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Ajouter un champ ..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Téléphone"
|
||||
|
@ -230,6 +230,7 @@
|
||||
"Birthday" => "Aniversario",
|
||||
"Notes go here..." => "As notas van aquí...",
|
||||
"Export as VCF" => "Exportar como VCF",
|
||||
"Add field..." => "Engadir campo...",
|
||||
"Phone" => "Teléfono",
|
||||
"Email" => "Correo",
|
||||
"Instant Messaging" => "Mensaxería instantánea",
|
||||
|
@ -14,9 +14,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 15:00+0000\n"
|
||||
"Last-Translator: mbouzada <mbouzada@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -24,7 +24,7 @@ msgstr ""
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Contactos"
|
||||
|
||||
@ -112,62 +112,62 @@ msgstr "Non foi posíbel facer a mistura."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Non foi posíbel facer a mistura. produciuse un erro ao gardar o contacto."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Seleccione fotografía"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Produciuse un erro na rede ou no servidor. Informe ao administrador."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Produciuse un erro ao engadir ao grupo."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Produciuse un erro ao retirar do grupo."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Produciuse un erro ao estabelecer {name} como favorito."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Misturar os contactos"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Engadir un grupo"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Aceptar"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Non foi posíbel atopar o contacto: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Non foi seleccionado ningún ficheiro para enviar."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "O ficheiro que tenta enviar supera o tamaño máximo permitido neste servidor."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Editar a imaxe do perfil"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Recortar a foto"
|
||||
|
||||
@ -175,33 +175,33 @@ msgstr "Recortar a foto"
|
||||
msgid "Is this correct?"
|
||||
msgstr "É correcto isto?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Produciuse un erro ao analizar a data: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "Núm. grupos"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Produciuse un erro ao analizar o aniversario {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Algúns contactos están marcados para ser eliminados máis aínda non se eliminaron. Espera a que se eliminen."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Prema para desfacer a eliminación de {num} contactos"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Cancelada a eliminación de {num} contactos"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Engadir"
|
||||
|
||||
@ -384,7 +384,7 @@ msgstr "Vostede non ten permisos para actualizar o caderno de enderezos"
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Vostede non ten permisos para eliminar o caderno de enderezos"
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Non se atoparon cadernos de enderezos"
|
||||
|
||||
@ -424,74 +424,78 @@ msgstr "Aniversario de {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Produciuse un erro ao crear o caderno de enderezos"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Produciuse un erro ao actualizar o caderno de enderezos"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Vostede non ten permisos para eliminar o caderno de enderezos «%s»"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Produciuse un erro ao eliminar o caderno de enderezos"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Produciuse un erro ao crear o contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Produciuse un erro ao eliminar o contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Produciuse un erro ao recuperar o contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Produciuse un erro ao gardar o contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Produciuse un erro ao retirar o contacto desde outro caderno de enderezos."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Non foi posíbel atopar o contacto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Produciuse un erro ao mesturar en contacto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Produciuse un erro ao gardar o contacto na infraestrutura."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Non foi estabelecido o nome da propiedade"
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Non foi estabelecida a suma de comprobación da propiedade"
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "A información sobre a vCard é incorrecta. Volva cargar a páxina."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Produciuse un erro ao actualizar o contacto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Produciuse un erro ao gardar o contacto na infraestrutura"
|
||||
|
||||
@ -554,27 +558,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Non existe o ficheiro:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Produciuse un erro ao cargar a imaxe."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "A imaxe foi retirada da caché."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Produciuse un erro ao crear a imaxe temporal"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Produciuse un erro ao recortar a imaxe"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Produciuse un erro ao ao cambiar o tamaño da imaxe"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Produciuse un erro ao obter a propiedade PHOTO."
|
||||
|
||||
@ -989,6 +993,10 @@ msgstr "As notas van aquí..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exportar como VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Engadir campo..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Teléfono"
|
||||
|
@ -11,8 +11,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -21,7 +21,7 @@ msgstr ""
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "אנשי קשר"
|
||||
|
||||
@ -109,62 +109,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "ביטול"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "אישור"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -172,33 +172,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "הוספה"
|
||||
|
||||
@ -381,7 +381,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -421,74 +421,78 @@ msgstr "יום ההולדת של {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "שגיאה בשמירת איש הקשר"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "המידע אודות vCard אינו נכון. נא לטעון מחדש את הדף."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -551,27 +555,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "קובץ לא קיים:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "שגיאה בטעינת התמונה."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "שגיאה בשינוי גודל התמונה"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "שגיאה בקבלת מידע של תמונה"
|
||||
|
||||
@ -986,6 +990,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "טלפון"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,7 +17,7 @@ msgstr ""
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
@ -105,62 +105,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,33 +168,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "डाले"
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakti"
|
||||
|
||||
@ -108,62 +108,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Odustani"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -171,33 +171,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
@ -380,7 +380,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -420,74 +420,78 @@ msgstr "{name} Rođendan"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informacija o vCard je neispravna. Osvježite stranicu."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -550,27 +554,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Datoteka ne postoji:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Pogreška pri učitavanju slike."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -985,6 +989,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
182
l10n/hu_HU.php
182
l10n/hu_HU.php
@ -1,105 +1,114 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Contacts" => "Címtár",
|
||||
"Contacts" => "Névjegyek",
|
||||
"Save" => "Mentés",
|
||||
"Uploading..." => "Feltöltés...",
|
||||
"Importing..." => "Importálás...",
|
||||
"Imported {count} of {total} contacts" => "{count} kapcsolat importálva, összesen: {total}",
|
||||
"Imported {imported} contacts. {failed} failed." => "{imported} kapcsolat importálva. {failed} sikertelen.",
|
||||
"An address book called {name} already exists" => "A(z) {name} nevű kapcsolat már létezik.",
|
||||
"Failed adding address book: {error}" => "Nem sikerült hozzáadni a címjegyzék: {error}",
|
||||
"Imported {count} of {total} contacts" => "A {total} névjegyből {count} importálva",
|
||||
"Imported {imported} contacts. {failed} failed." => "{imported} névjegy importálva. {failed} sikertelen.",
|
||||
"An address book called {name} already exists" => "\"{name}\" névvel már létezik névjegy",
|
||||
"Failed adding address book: {error}" => "Nem sikerült hozzáadni a címjegyzékhez: {error}",
|
||||
"Failed loading address books: {error}" => "Hiba a címjegyzék betöltésekor: {error}",
|
||||
"Indexing contacts" => "Kapcsolatok indexelése.",
|
||||
"Indexing contacts" => "Névjegyek indexelése",
|
||||
"Unrecoverable error loading address books: {msg}" => "Helyrehozhatatlan hiba a címjegyzékek betöltésekor: {msg}",
|
||||
"Error." => "Hiba.",
|
||||
"Add to..." => "Hozzáadás ehhez...",
|
||||
"Remove from..." => "Eltávolítás innen...",
|
||||
"Add group..." => "Csoport hozzáadása...",
|
||||
"Invalid URL: \"{url}\"" => "Hibás URL: \"{url}\"",
|
||||
"There was an error opening a mail composer." => "Hiba történt a levélszerkesztő megnyitása közben.",
|
||||
"Invalid email: \"{url}\"" => "Hibás email: \"{url}\"",
|
||||
"Merge failed. Cannot find contact: {id}" => "Sikertelen egyesítés. Nem található kapcsolat: {id}",
|
||||
"Invalid email: \"{url}\"" => "Hibás e-mail: \"{url}\"",
|
||||
"Merge failed. Cannot find contact: {id}" => "Sikertelen összefűzés. Nem található a névjegy: {id}",
|
||||
"Merge failed." => "Sikertelen összefűzés.",
|
||||
"Merge failed. Error saving contact." => "Sikertelen összefűzés. Hiba a kapcsolat mentésekor.",
|
||||
"Select photo" => "Fénykép kiválasztása",
|
||||
"Network or server error. Please inform administrator." => "Hiba történt a hálózatban vagy a kiszolgálón. Értesítse a rendszergazdát!",
|
||||
"Error adding to group." => "Hiba a csoporthoz adása közben.",
|
||||
"Error adding to group." => "Hiba a csoporthoz adás közben.",
|
||||
"Error removing from group." => "Hiba a csoportból való eltávolítás közben.",
|
||||
"Error setting {name} as favorite." => "Hiba beállítás {name} mint kedvenc.",
|
||||
"Merge contacts" => "Kapcsolatok összefűzése.",
|
||||
"Error setting {name} as favorite." => "Nem sikerült \"{name}\"-t kedvencként beállítani.",
|
||||
"Merge contacts" => "Névjegyek összefűzése.",
|
||||
"Cancel" => "Mégsem",
|
||||
"Add group" => "Csoport hozzáadása",
|
||||
"OK" => "OK",
|
||||
"Could not find contact: {id}" => "Nem található kapcsolat: {id}",
|
||||
"No files selected for upload." => "Nincs kiválasztva feltöltendő fájl",
|
||||
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő fájl mérete meghaladja a megengedett mértéket",
|
||||
"Could not find contact: {id}" => "Nem található a névjegy: {id}",
|
||||
"No files selected for upload." => "Nincs kiválasztva feltöltendő fájl.",
|
||||
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő fájl mérete meghaladja a kiszolgálón engedélyezett maximális méretet.",
|
||||
"Edit profile picture" => "Profilkép szerkesztése",
|
||||
"Is this correct?" => "Helyes ez?",
|
||||
"# groups" => "# csoportok",
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Néhány kapcsolat ki lett jelölve törlésre, de nem lett törölve. Várja meg ameddig törölve lesznek.",
|
||||
"Click to undo deletion of {num} contacts" => "Kattintson a {num} kapcsolat törlésének visszavonásához",
|
||||
"Is this correct?" => "Helyes?",
|
||||
"# groups" => "# csoport",
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Néhány névjegy ki lett jelölve törlésre, de még nem lett törölve. Várja meg a végleges törlést.",
|
||||
"Click to undo deletion of {num} contacts" => "Kattintson ide {num} névjegy törlésének visszavonásához",
|
||||
"Add" => "Hozzáadás",
|
||||
"Contact is already in this group." => "A kapcsolat már a csoportban van.",
|
||||
"Contacts are already in this group." => "A kapcsolatok már a csoportban vannak.",
|
||||
"Couldn't get contact list." => "Nem érhető el a kapcsolatlista.",
|
||||
"Contact is not in this group." => "A kapcsolat nincs ebben a csoportban.",
|
||||
"Contacts are not in this group." => "A kapcsolatok nincsenek ebben a csoportban.",
|
||||
"Contact is already in this group." => "A névjegy már a csoportban van.",
|
||||
"Contacts are already in this group." => "A névjegyek már a csoportban vannak.",
|
||||
"Couldn't get contact list." => "Nem érhető el a névjegyek listája.",
|
||||
"Contact is not in this group." => "A névjegy nincs ebben a csoportban.",
|
||||
"Contacts are not in this group." => "A névjegyek nincsenek ebben a csoportban.",
|
||||
"Failed renaming group: {error}" => "Hiba a csoport átnevezésekor: {error}",
|
||||
"A group named {group} already exists" => "A {group} nevű csoport már létezik",
|
||||
"You can drag groups to\narrange them as you like." => "Áthúzhatja a csoportokat\nelrendezheti őket ahogy akarja.",
|
||||
"You can drag groups to\narrange them as you like." => "A sorrend megváltoztatásához\\n\negérrel húzza a csoportokat.",
|
||||
"Failed adding group: {error}" => "Hiba a csoport hozzáadásakor: {error}",
|
||||
"All" => "Összes",
|
||||
"All" => "Mind",
|
||||
"Favorites" => "Kedvencek",
|
||||
"Shared by {owner}" => "Megosztva {owner} által",
|
||||
"Shared by {owner}" => "Megosztotta: {owner}",
|
||||
"Not grouped" => "Nem csoportosított",
|
||||
"Failed loading groups: {error}" => "Nem sikerült betölteni a csopotokat: {error}",
|
||||
"Please choose the addressbook" => "Válassza ki a címlistát",
|
||||
"Import into..." => "Importálás ide:",
|
||||
"Import" => "Importálás",
|
||||
"Close" => "Bezárás",
|
||||
"Error" => "Hiba",
|
||||
"Displayname cannot be empty." => "Megjelenített név kitöltendő",
|
||||
"Show CardDav link" => "CardDav link megjelenítése",
|
||||
"Show read-only VCF link" => "Csak olvasható VCF link megjelenítése",
|
||||
"Displayname cannot be empty." => "A megjelenített net ki kell tölteni.",
|
||||
"Show CardDav link" => "CardDav link mutatása",
|
||||
"Show read-only VCF link" => "Csak-olvasható VCF link megjelenítése",
|
||||
"Download" => "Letöltés",
|
||||
"Edit" => "Szerkesztés",
|
||||
"Delete" => "Törlés",
|
||||
"More..." => "Több...",
|
||||
"More..." => "Bővebben...",
|
||||
"Less..." => "Kevesebb...",
|
||||
"Failed loading photo: {error}" => "Hiba a kép betöltésekor: {error}",
|
||||
"You do not have permissions to see this contacts" => "Nincs jogosultsága megnézni az illető adatait.",
|
||||
"You do not have permissions to see this contacts" => "Nincs jogosultsága a névjegy megtekintéséhez",
|
||||
"Contact not found" => "Kapcsolat nem található",
|
||||
"You do not have permissions to see these contacts" => "Nincs jogosultsága megnézni a kapcsolatokat.",
|
||||
"You do not have permissions add contacts to the address book" => "Nincs jogosultsága hozzáadni kapcsolatokat a címjegyzékhez",
|
||||
"The backend for this address book does not support adding contacts" => "A címjegyzék háttérfolyamata nem támogatja az új kapcsolatok felvételét",
|
||||
"You do not have permissions to delete this contact" => "Nincs jogosultságod törölni ezt a kapcsolatot!",
|
||||
"The backend for this address book does not support deleting contacts" => "A címjegyzék háttérfolyamata nem támogatja a kapcsolatok törlését",
|
||||
"You do not have permissions to see these contacts" => "Nincs jogosultsága megnézni ezeket a névjegyeket",
|
||||
"You do not have permissions add contacts to the address book" => "Nincs jogosultsága új névjegyeket hozzáadni a címjegyzékhez",
|
||||
"The backend for this address book does not support adding contacts" => "A címjegyzék háttérredszere nem támogatja az új névjegyek felvételét",
|
||||
"You do not have permissions to delete this contact" => "Nincs jogosultsága törölni ezt a névjegyet!",
|
||||
"The backend for this address book does not support deleting contacts" => "A címjegyzék háttérrendszere nem támogatja a névjegyek törlését",
|
||||
"Unknown error" => "Ismeretlen hiba",
|
||||
"The backend for this address book does not support updating" => "A címjegyzék háttérfolyamata nem támogatja a frissítést",
|
||||
"You don't have permissions to update the address book." => "Nincs jogosultságod frissíteni a címjegyzéket!",
|
||||
"You don't have permissions to delete the address book." => "Nincs jogosultságod törölni ezt a címjegyzéket!",
|
||||
"The backend for this address book does not support updating" => "A címjegyzék háttérrendszere nem támogatja a frissítést",
|
||||
"You don't have permissions to update the address book." => "Nincs jogosultsága frissíteni a címjegyzéket!",
|
||||
"You don't have permissions to delete the address book." => "Nincs jogosultsága törölni a címjegyzéket!",
|
||||
"Address book not found" => "A címjegyzék nem található",
|
||||
"You do not have permissions to see this contact" => "Nincs jogosultsága megnézni ez a partnert.",
|
||||
"You do not have permissions to update this contact" => "Nincs jogosultságod frissíteni ezt a kapcsolatot",
|
||||
"The backend for this contact does not support updating it" => "Ehhez a kapcsolathoz tartozó háttérfolyamat nem támogatja a frissítést",
|
||||
"This backend not support adding contacts" => "Ez a háttérfolyamat nem támogatja a kapcsolatok felvételét",
|
||||
"Property not found" => "Nem található tulajdonság",
|
||||
" Missing IM parameter for: " => "Hiányzó IM paraméter:",
|
||||
"Unknown IM: " => "Ismeretlen IM:",
|
||||
"You do not have permissions to see this contact" => "Nincs jogosultsága megnézni ez a névjegyet",
|
||||
"You do not have permissions to update this contact" => "Nincs jogosultsága frissíteni ezt a névjegyet",
|
||||
"The backend for this contact does not support updating it" => "A névjegyhez tartozó háttérrendszer nem támogatja a frissítést",
|
||||
"This backend not support adding contacts" => "Ez a háttérrendszer nem támogatja a névjegyek felvételét",
|
||||
"Property not found" => "A tulajdonság nem található",
|
||||
" Missing IM parameter for: " => "Hiányzó Üzenetküldő paraméter:",
|
||||
"Unknown IM: " => "Ismeretlen Üzenetküldő:",
|
||||
"{name}'s Birthday" => "{name} születésnapja",
|
||||
"Error creating address book" => "Hiba a címjegyzék létrehozásakor",
|
||||
"Error updating address book" => "Hiba a címjegyzék frissítésekor",
|
||||
"Error deleting address book" => "Hiba a címjegyzék törlésekor",
|
||||
"Error saving contact." => "A kontakt mentése sikertelen",
|
||||
"Error removing contact from other address book." => "Hiba a kapcsolat törlésénél más címjegyzékből.",
|
||||
"Couldn't find contact." => "Nem található kapcsolat.",
|
||||
"Error creating contact." => "Hiba a névjegy létrehozásakor.",
|
||||
"Error deleting contact." => "Hiba a névjegy törlésekor.",
|
||||
"Error retrieving contact." => "Hiba a névjegy betöltésekor.",
|
||||
"Error saving contact." => "A névjegy mentése sikertelen",
|
||||
"Error removing contact from other address book." => "Hiba a névjegy más címjegyzékből történő törlésekor.",
|
||||
"Couldn't find contact." => "Nem található névjegy.",
|
||||
"Error merging into contact." => "Hiba a névjegy összefűzésekor.",
|
||||
"Error saving contact to backend." => "Hiba a névjegy mentésekor a háttérrendszerben.",
|
||||
"Property name is not set." => "Tulajdonság neve nincs megadva.",
|
||||
"Property checksum is not set." => "Tulajdonság ellenőrzőkódja nincs megadva.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "A vCardról szóló információ helytelen. Töltsd újra az oldalt.",
|
||||
"No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba",
|
||||
"There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "A feltöltött fájl mérete meghaladja az upload_max_filesize értéket a php.ini-ben",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra.",
|
||||
"The uploaded file was only partially uploaded" => "Az eredeti fájlt csak részben sikerült feltölteni.",
|
||||
"No file was uploaded" => "Nem töltődött fel állomány",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl mérete meghaladja a HTML űrlapon beállított MAX_FILE_SIZE méretet.",
|
||||
"The uploaded file was only partially uploaded" => "Az eredeti fájlt csak részben sikerült feltölteni",
|
||||
"No file was uploaded" => "Egy fájlt sem töltött fel",
|
||||
"Missing a temporary folder" => "Hiányzik egy ideiglenes mappa",
|
||||
"Couldn't load temporary image: " => "Ideiglenes kép betöltése sikertelen",
|
||||
"Couldn't save temporary image: " => "Ideiglenes kép létrehozása sikertelen",
|
||||
"Couldn't load temporary image: " => "Ideiglenes kép betöltése sikertelen:",
|
||||
"Couldn't save temporary image: " => "Ideiglenes kép létrehozása sikertelen:",
|
||||
"No photo path was submitted." => "Nincs fénykép-útvonal megadva",
|
||||
"File doesn't exist:" => "A fájl nem létezik:",
|
||||
"Error loading image." => "Kép betöltése sikertelen",
|
||||
@ -107,24 +116,71 @@
|
||||
"Error cropping image" => "Képvágás sikertelen",
|
||||
"Error resizing image" => "Képméretezés sikertelen",
|
||||
"Error getting PHOTO property." => "A PHOTO-tulajdonság feldolgozása sikertelen",
|
||||
"Failed to write to disk" => "Nem sikerült a lemezre történő írás",
|
||||
"Not enough storage available" => "Nincs elég szabad hely.",
|
||||
"Error uploading contacts to storage." => "Hiba a kapcsolatok feltöltésekor",
|
||||
"No group name given." => "Nem adott meg csoportnevet.",
|
||||
"Error adding group." => "Hiba a csoport hozzáadása közben.",
|
||||
"No group name to rename from given." => "Nem adta meg, hogy miről nevezzük át a csoportot.",
|
||||
"No group name to rename to given." => "Nem adta meg, hogy mire nevezzük át a csoportot.",
|
||||
"Error renaming group." => "Hiba a csoport átnevezésekor.",
|
||||
"Group ID missing from request." => "A csoport azonosítója hiányzik a kérésből.",
|
||||
"Group name missing from request." => "A csoport neve hiányzik a kérésből.",
|
||||
"Contact ID missing from request." => "A névjegy azonosítója (ID) hiányzik a kérésből.",
|
||||
"Failed to write to disk" => "Nem sikerült a lemezre írás",
|
||||
"Not enough storage available" => "Nincs elég tárhely.",
|
||||
"Attempt to upload blacklisted file:" => "Tiltólistán szereplő fájl feltöltésének kísérlete:",
|
||||
"Error uploading contacts to storage." => "Hiba a névjegyek feltöltésekor a tárhelyre.",
|
||||
"You do not have permissions to import into this address book." => "Nincs jogosultsága importálni ebbe a címjegyzékbe.",
|
||||
"File name missing from request." => "A kérésből hiányzik a fájl neve.",
|
||||
"Progress key missing from request." => "A kérésből hiányzik a folyamat kulcsa.",
|
||||
"Attempt to access blacklisted file:" => "Feketelistán szereplő fájl hozzáférési kísérlet:",
|
||||
"No contacts found in: " => "Itt egy névjegy sem található:",
|
||||
"No key is given." => "Nincs kulcs megadva.",
|
||||
"No value is given." => "Nincs érték megadva.",
|
||||
"Could not set preference: " => "Nem állítható be a tulajdonság:",
|
||||
"Contact" => "Kapcsolat",
|
||||
"Contact" => "Névjegy",
|
||||
"Other" => "Más",
|
||||
"HomePage" => "Kezdőlap",
|
||||
"HomePage" => "Weboldal",
|
||||
"Jabber" => "Jabber",
|
||||
"Internet call" => "Internet hívás",
|
||||
"AIM" => "AIM",
|
||||
"MSN" => "MSN",
|
||||
"Twitter" => "Twitter",
|
||||
"GoogleTalk" => "Google Talk",
|
||||
"Facebook" => "Facebook",
|
||||
"XMPP" => "XMPP",
|
||||
"ICQ" => "ICQ",
|
||||
"Yahoo" => "Yahoo",
|
||||
"Skype" => "Skype",
|
||||
"QQ" => "QQ",
|
||||
"GaduGadu" => "GaduGadu",
|
||||
"Work" => "Munkahelyi",
|
||||
"Home" => "Otthoni",
|
||||
"Mobile" => "Mobiltelefonszám",
|
||||
"Text" => "Szöveg",
|
||||
"Mobile" => "Mobil",
|
||||
"Text" => "SMS",
|
||||
"Voice" => "Hang",
|
||||
"Message" => "Üzenet",
|
||||
"Fax" => "Fax",
|
||||
"Video" => "Video",
|
||||
"Video" => "Videó",
|
||||
"Pager" => "Személyhívó",
|
||||
"Internet" => "Internet",
|
||||
"Friends" => "Barátok",
|
||||
"Family" => "Család",
|
||||
"New Contact" => "Új névjegy",
|
||||
"Group name" => "Csoport neve",
|
||||
"New Group" => "Új csoport",
|
||||
"Address books" => "Címjegyzék",
|
||||
"Display name" => "Megjelenített név",
|
||||
"Add Address Book" => "Címjegyzék hozzáadása",
|
||||
"Select file..." => "Fájl kiválasztása...",
|
||||
"(De-)select all" => "Ki/bejelöli mindet",
|
||||
"Sort order" => "Rendezés",
|
||||
"First- Lastname" => "Kereszt- Vezetéknév",
|
||||
"Last-, Firstname" => "Vezeték-, Keresztnév",
|
||||
"Groups" => "Csoportok",
|
||||
"Favorite" => "Kedvenc",
|
||||
"Merge selected" => "Kijelöltek összefűzése",
|
||||
"Keyboard shortcuts" => "Gyorsbillentyűk",
|
||||
"Navigation" => "Navigáció",
|
||||
"Next contact in list" => "Következő névjegy a listán",
|
||||
"Add contact" => "Kapcsolat hozzáadása",
|
||||
"Delete current photo" => "Aktuális kép törlése",
|
||||
"Edit current photo" => "Aktuális kép szerkesztése",
|
||||
@ -133,7 +189,7 @@
|
||||
"Additional names" => "További nevek",
|
||||
"Nickname" => "Becenév",
|
||||
"Enter nickname" => "Becenév megadása",
|
||||
"Title" => "Felirat",
|
||||
"Title" => "Cím",
|
||||
"Organization" => "Szervezet",
|
||||
"Birthday" => "Születésap",
|
||||
"Phone" => "Telefonszám",
|
||||
|
@ -6,6 +6,7 @@
|
||||
# blackc0de <complic@vipmail.hu>, 2013
|
||||
# Adam Toth <adazlord@gmail.com>, 2012
|
||||
# akoscomp <nagy.akos@libreoffice.ro>, 2013
|
||||
# sherlock79 <david@interpont.hu>, 2013
|
||||
# ebela <bela@dandre.hu>, 2013
|
||||
# gyeben <gyonkibendeguz@gmail.com>, 2013
|
||||
# gyeben <gyonkibendeguz@gmail.com>, 2013
|
||||
@ -17,9 +18,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-18 20:00+0000\n"
|
||||
"Last-Translator: sherlock79 <david@interpont.hu>\n"
|
||||
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -27,9 +28,9 @@ msgstr ""
|
||||
"Language: hu_HU\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Címtár"
|
||||
msgstr "Névjegyek"
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
@ -49,19 +50,19 @@ msgstr ""
|
||||
|
||||
#: js/addressbooks.js:372
|
||||
msgid "Imported {count} of {total} contacts"
|
||||
msgstr "{count} kapcsolat importálva, összesen: {total}"
|
||||
msgstr "A {total} névjegyből {count} importálva"
|
||||
|
||||
#: js/addressbooks.js:394
|
||||
msgid "Imported {imported} contacts. {failed} failed."
|
||||
msgstr "{imported} kapcsolat importálva. {failed} sikertelen."
|
||||
msgstr "{imported} névjegy importálva. {failed} sikertelen."
|
||||
|
||||
#: js/addressbooks.js:550
|
||||
msgid "An address book called {name} already exists"
|
||||
msgstr "A(z) {name} nevű kapcsolat már létezik."
|
||||
msgstr "\"{name}\" névvel már létezik névjegy"
|
||||
|
||||
#: js/addressbooks.js:584
|
||||
msgid "Failed adding address book: {error}"
|
||||
msgstr "Nem sikerült hozzáadni a címjegyzék: {error}"
|
||||
msgstr "Nem sikerült hozzáadni a címjegyzékhez: {error}"
|
||||
|
||||
#: js/addressbooks.js:626
|
||||
msgid "Failed loading address books: {error}"
|
||||
@ -69,11 +70,11 @@ msgstr "Hiba a címjegyzék betöltésekor: {error}"
|
||||
|
||||
#: js/app.js:215
|
||||
msgid "Indexing contacts"
|
||||
msgstr "Kapcsolatok indexelése."
|
||||
msgstr "Névjegyek indexelése"
|
||||
|
||||
#: js/app.js:225
|
||||
msgid "Unrecoverable error loading address books: {msg}"
|
||||
msgstr ""
|
||||
msgstr "Helyrehozhatatlan hiba a címjegyzékek betöltésekor: {msg}"
|
||||
|
||||
#: js/app.js:226
|
||||
msgid "Error."
|
||||
@ -101,11 +102,11 @@ msgstr "Hiba történt a levélszerkesztő megnyitása közben."
|
||||
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr "Hibás email: \"{url}\""
|
||||
msgstr "Hibás e-mail: \"{url}\""
|
||||
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr "Sikertelen egyesítés. Nem található kapcsolat: {id}"
|
||||
msgstr "Sikertelen összefűzés. Nem található a névjegy: {id}"
|
||||
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
@ -115,118 +116,118 @@ msgstr "Sikertelen összefűzés."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Sikertelen összefűzés. Hiba a kapcsolat mentésekor."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Fénykép kiválasztása"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Hiba történt a hálózatban vagy a kiszolgálón. Értesítse a rendszergazdát!"
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Hiba a csoporthoz adása közben."
|
||||
msgstr "Hiba a csoporthoz adás közben."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Hiba a csoportból való eltávolítás közben."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Hiba beállítás {name} mint kedvenc."
|
||||
msgstr "Nem sikerült \"{name}\"-t kedvencként beállítani."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Kapcsolatok összefűzése."
|
||||
msgstr "Névjegyek összefűzése."
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Mégsem"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Csoport hozzáadása"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Nem található kapcsolat: {id}"
|
||||
msgstr "Nem található a névjegy: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Nincs kiválasztva feltöltendő fájl"
|
||||
msgstr "Nincs kiválasztva feltöltendő fájl."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "A feltöltendő fájl mérete meghaladja a megengedett mértéket"
|
||||
msgstr "A feltöltendő fájl mérete meghaladja a kiszolgálón engedélyezett maximális méretet."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Profilkép szerkesztése"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:589
|
||||
msgid "Is this correct?"
|
||||
msgstr "Helyes ez?"
|
||||
msgstr "Helyes?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# csoportok"
|
||||
msgstr "# csoport"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Néhány kapcsolat ki lett jelölve törlésre, de nem lett törölve. Várja meg ameddig törölve lesznek."
|
||||
msgstr "Néhány névjegy ki lett jelölve törlésre, de még nem lett törölve. Várja meg a végleges törlést."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Kattintson a {num} kapcsolat törlésének visszavonásához"
|
||||
msgstr "Kattintson ide {num} névjegy törlésének visszavonásához"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Hozzáadás"
|
||||
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr "A kapcsolat már a csoportban van."
|
||||
msgstr "A névjegy már a csoportban van."
|
||||
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr "A kapcsolatok már a csoportban vannak."
|
||||
msgstr "A névjegyek már a csoportban vannak."
|
||||
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr "Nem érhető el a kapcsolatlista."
|
||||
msgstr "Nem érhető el a névjegyek listája."
|
||||
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr "A kapcsolat nincs ebben a csoportban."
|
||||
msgstr "A névjegy nincs ebben a csoportban."
|
||||
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr "A kapcsolatok nincsenek ebben a csoportban."
|
||||
msgstr "A névjegyek nincsenek ebben a csoportban."
|
||||
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
@ -240,7 +241,7 @@ msgstr "A {group} nevű csoport már létezik"
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr "Áthúzhatja a csoportokat\nelrendezheti őket ahogy akarja."
|
||||
msgstr "A sorrend megváltoztatásához\\n\negérrel húzza a csoportokat."
|
||||
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
@ -248,7 +249,7 @@ msgstr "Hiba a csoport hozzáadásakor: {error}"
|
||||
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr "Összes"
|
||||
msgstr "Mind"
|
||||
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
@ -256,7 +257,7 @@ msgstr "Kedvencek"
|
||||
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr "Megosztva {owner} által"
|
||||
msgstr "Megosztotta: {owner}"
|
||||
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
@ -272,7 +273,7 @@ msgstr "Válassza ki a címlistát"
|
||||
|
||||
#: js/loader.js:22 templates/contacts.php:29
|
||||
msgid "Import into..."
|
||||
msgstr ""
|
||||
msgstr "Importálás ide:"
|
||||
|
||||
#: js/loader.js:31
|
||||
msgid "Error loading import template"
|
||||
@ -300,15 +301,15 @@ msgstr "Hiba"
|
||||
|
||||
#: js/settings.js:75
|
||||
msgid "Displayname cannot be empty."
|
||||
msgstr "Megjelenített név kitöltendő"
|
||||
msgstr "A megjelenített net ki kell tölteni."
|
||||
|
||||
#: js/settings.js:97 templates/settings.php:26
|
||||
msgid "Show CardDav link"
|
||||
msgstr "CardDav link megjelenítése"
|
||||
msgstr "CardDav link mutatása"
|
||||
|
||||
#: js/settings.js:98 templates/settings.php:29
|
||||
msgid "Show read-only VCF link"
|
||||
msgstr "Csak olvasható VCF link megjelenítése"
|
||||
msgstr "Csak-olvasható VCF link megjelenítése"
|
||||
|
||||
#: js/settings.js:99 templates/contacts.php:57 templates/contacts.php:78
|
||||
#: templates/contacts.php:323 templates/settings.php:40
|
||||
@ -329,13 +330,13 @@ msgstr "Törlés"
|
||||
|
||||
#: js/settings.js:159 templates/settings.php:66
|
||||
msgid "More..."
|
||||
msgstr "Több..."
|
||||
msgstr "Bővebben..."
|
||||
|
||||
#: js/settings.js:162
|
||||
msgid "Less..."
|
||||
msgstr "Kevesebb..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
|
||||
@ -345,7 +346,7 @@ msgstr "Hiba a kép betöltésekor: {error}"
|
||||
|
||||
#: lib/addressbook.php:152
|
||||
msgid "You do not have permissions to see this contacts"
|
||||
msgstr "Nincs jogosultsága megnézni az illető adatait."
|
||||
msgstr "Nincs jogosultsága a névjegy megtekintéséhez"
|
||||
|
||||
#: lib/addressbook.php:159
|
||||
msgid "Contact not found"
|
||||
@ -353,23 +354,23 @@ msgstr "Kapcsolat nem található"
|
||||
|
||||
#: lib/addressbook.php:186
|
||||
msgid "You do not have permissions to see these contacts"
|
||||
msgstr "Nincs jogosultsága megnézni a kapcsolatokat."
|
||||
msgstr "Nincs jogosultsága megnézni ezeket a névjegyeket"
|
||||
|
||||
#: lib/addressbook.php:213
|
||||
msgid "You do not have permissions add contacts to the address book"
|
||||
msgstr "Nincs jogosultsága hozzáadni kapcsolatokat a címjegyzékhez"
|
||||
msgstr "Nincs jogosultsága új névjegyeket hozzáadni a címjegyzékhez"
|
||||
|
||||
#: lib/addressbook.php:216
|
||||
msgid "The backend for this address book does not support adding contacts"
|
||||
msgstr "A címjegyzék háttérfolyamata nem támogatja az új kapcsolatok felvételét"
|
||||
msgstr "A címjegyzék háttérredszere nem támogatja az új névjegyek felvételét"
|
||||
|
||||
#: lib/addressbook.php:240 lib/addressbook.php:266 lib/contact.php:248
|
||||
msgid "You do not have permissions to delete this contact"
|
||||
msgstr "Nincs jogosultságod törölni ezt a kapcsolatot!"
|
||||
msgstr "Nincs jogosultsága törölni ezt a névjegyet!"
|
||||
|
||||
#: lib/addressbook.php:243 lib/addressbook.php:269
|
||||
msgid "The backend for this address book does not support deleting contacts"
|
||||
msgstr "A címjegyzék háttérfolyamata nem támogatja a kapcsolatok törlését"
|
||||
msgstr "A címjegyzék háttérrendszere nem támogatja a névjegyek törlését"
|
||||
|
||||
#: lib/addressbook.php:290
|
||||
msgid "Unknown error"
|
||||
@ -377,47 +378,47 @@ msgstr "Ismeretlen hiba"
|
||||
|
||||
#: lib/addressbook.php:332
|
||||
msgid "The backend for this address book does not support updating"
|
||||
msgstr "A címjegyzék háttérfolyamata nem támogatja a frissítést"
|
||||
msgstr "A címjegyzék háttérrendszere nem támogatja a frissítést"
|
||||
|
||||
#: lib/addressbook.php:358
|
||||
msgid "You don't have permissions to update the address book."
|
||||
msgstr "Nincs jogosultságod frissíteni a címjegyzéket!"
|
||||
msgstr "Nincs jogosultsága frissíteni a címjegyzéket!"
|
||||
|
||||
#: lib/addressbook.php:369
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Nincs jogosultságod törölni ezt a címjegyzéket!"
|
||||
msgstr "Nincs jogosultsága törölni a címjegyzéket!"
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "A címjegyzék nem található"
|
||||
|
||||
#: lib/contact.php:114 lib/contact.php:161
|
||||
msgid "You do not have permissions to see this contact"
|
||||
msgstr "Nincs jogosultsága megnézni ez a partnert."
|
||||
msgstr "Nincs jogosultsága megnézni ez a névjegyet"
|
||||
|
||||
#: lib/contact.php:263
|
||||
msgid "You do not have permissions to update this contact"
|
||||
msgstr "Nincs jogosultságod frissíteni ezt a kapcsolatot"
|
||||
msgstr "Nincs jogosultsága frissíteni ezt a névjegyet"
|
||||
|
||||
#: lib/contact.php:274
|
||||
msgid "The backend for this contact does not support updating it"
|
||||
msgstr "Ehhez a kapcsolathoz tartozó háttérfolyamat nem támogatja a frissítést"
|
||||
msgstr "A névjegyhez tartozó háttérrendszer nem támogatja a frissítést"
|
||||
|
||||
#: lib/contact.php:292
|
||||
msgid "This backend not support adding contacts"
|
||||
msgstr "Ez a háttérfolyamat nem támogatja a kapcsolatok felvételét"
|
||||
msgstr "Ez a háttérrendszer nem támogatja a névjegyek felvételét"
|
||||
|
||||
#: lib/contact.php:402 lib/contact.php:419
|
||||
msgid "Property not found"
|
||||
msgstr "Nem található tulajdonság"
|
||||
msgstr "A tulajdonság nem található"
|
||||
|
||||
#: lib/contact.php:467
|
||||
msgid " Missing IM parameter for: "
|
||||
msgstr "Hiányzó IM paraméter:"
|
||||
msgstr "Hiányzó Üzenetküldő paraméter:"
|
||||
|
||||
#: lib/contact.php:475
|
||||
msgid "Unknown IM: "
|
||||
msgstr "Ismeretlen IM:"
|
||||
msgstr "Ismeretlen Üzenetküldő:"
|
||||
|
||||
#: lib/contact.php:788
|
||||
msgid "{name}'s Birthday"
|
||||
@ -427,74 +428,78 @@ msgstr "{name} születésnapja"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Hiba a címjegyzék létrehozásakor"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Hiba a címjegyzék frissítésekor"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Hiba a címjegyzék törlésekor"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
msgstr "Hiba a névjegy létrehozásakor."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
msgstr "Hiba a névjegy törlésekor."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
msgstr "Hiba a névjegy betöltésekor."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "A kontakt mentése sikertelen"
|
||||
msgstr "A névjegy mentése sikertelen"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Hiba a kapcsolat törlésénél más címjegyzékből."
|
||||
msgstr "Hiba a névjegy más címjegyzékből történő törlésekor."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Nem található kapcsolat."
|
||||
msgstr "Nem található névjegy."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
msgstr "Hiba a névjegy összefűzésekor."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
msgstr "Hiba a névjegy mentésekor a háttérrendszerben."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
msgstr "Tulajdonság neve nincs megadva."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
msgstr "Tulajdonság ellenőrzőkódja nincs megadva."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "A vCardról szóló információ helytelen. Töltsd újra az oldalt."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -522,17 +527,17 @@ msgstr "A feltöltött fájl mérete meghaladja az upload_max_filesize értéket
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra."
|
||||
msgstr "A feltöltött fájl mérete meghaladja a HTML űrlapon beállított MAX_FILE_SIZE méretet."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:98
|
||||
#: lib/controller/importcontroller.php:48
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr "Az eredeti fájlt csak részben sikerült feltölteni."
|
||||
msgstr "Az eredeti fájlt csak részben sikerült feltölteni"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:99
|
||||
#: lib/controller/importcontroller.php:49
|
||||
msgid "No file was uploaded"
|
||||
msgstr "Nem töltődött fel állomány"
|
||||
msgstr "Egy fájlt sem töltött fel"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:100
|
||||
#: lib/controller/importcontroller.php:50
|
||||
@ -541,12 +546,12 @@ msgstr "Hiányzik egy ideiglenes mappa"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:115
|
||||
msgid "Couldn't load temporary image: "
|
||||
msgstr "Ideiglenes kép betöltése sikertelen"
|
||||
msgstr "Ideiglenes kép betöltése sikertelen:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:124
|
||||
#: lib/controller/contactphotocontroller.php:159
|
||||
msgid "Couldn't save temporary image: "
|
||||
msgstr "Ideiglenes kép létrehozása sikertelen"
|
||||
msgstr "Ideiglenes kép létrehozása sikertelen:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:188
|
||||
msgid "No photo path was submitted."
|
||||
@ -557,79 +562,79 @@ msgid "File doesn't exist:"
|
||||
msgstr "A fájl nem létezik:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Kép betöltése sikertelen"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Ideiglenes kép létrehozása sikertelen"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Képvágás sikertelen"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Képméretezés sikertelen"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "A PHOTO-tulajdonság feldolgozása sikertelen"
|
||||
|
||||
#: lib/controller/groupcontroller.php:57 lib/controller/groupcontroller.php:79
|
||||
msgid "No group name given."
|
||||
msgstr ""
|
||||
msgstr "Nem adott meg csoportnevet."
|
||||
|
||||
#: lib/controller/groupcontroller.php:64
|
||||
msgid "Error adding group."
|
||||
msgstr ""
|
||||
msgstr "Hiba a csoport hozzáadása közben."
|
||||
|
||||
#: lib/controller/groupcontroller.php:127
|
||||
msgid "No group name to rename from given."
|
||||
msgstr ""
|
||||
msgstr "Nem adta meg, hogy miről nevezzük át a csoportot."
|
||||
|
||||
#: lib/controller/groupcontroller.php:131
|
||||
msgid "No group name to rename to given."
|
||||
msgstr ""
|
||||
msgstr "Nem adta meg, hogy mire nevezzük át a csoportot."
|
||||
|
||||
#: lib/controller/groupcontroller.php:137
|
||||
msgid "Error renaming group."
|
||||
msgstr ""
|
||||
msgstr "Hiba a csoport átnevezésekor."
|
||||
|
||||
#: lib/controller/groupcontroller.php:175
|
||||
#: lib/controller/groupcontroller.php:223
|
||||
msgid "Group ID missing from request."
|
||||
msgstr ""
|
||||
msgstr "A csoport azonosítója hiányzik a kérésből."
|
||||
|
||||
#: lib/controller/groupcontroller.php:180
|
||||
msgid "Group name missing from request."
|
||||
msgstr ""
|
||||
msgstr "A csoport neve hiányzik a kérésből."
|
||||
|
||||
#: lib/controller/groupcontroller.php:185
|
||||
#: lib/controller/groupcontroller.php:228
|
||||
msgid "Contact ID missing from request."
|
||||
msgstr ""
|
||||
msgstr "A névjegy azonosítója (ID) hiányzik a kérésből."
|
||||
|
||||
#: lib/controller/importcontroller.php:51
|
||||
msgid "Failed to write to disk"
|
||||
msgstr "Nem sikerült a lemezre történő írás"
|
||||
msgstr "Nem sikerült a lemezre írás"
|
||||
|
||||
#: lib/controller/importcontroller.php:62
|
||||
msgid "Not enough storage available"
|
||||
msgstr "Nincs elég szabad hely."
|
||||
msgstr "Nincs elég tárhely."
|
||||
|
||||
#: lib/controller/importcontroller.php:70
|
||||
msgid "Attempt to upload blacklisted file:"
|
||||
msgstr ""
|
||||
msgstr "Tiltólistán szereplő fájl feltöltésének kísérlete:"
|
||||
|
||||
#: lib/controller/importcontroller.php:92
|
||||
msgid "Error uploading contacts to storage."
|
||||
msgstr "Hiba a kapcsolatok feltöltésekor"
|
||||
msgstr "Hiba a névjegyek feltöltésekor a tárhelyre."
|
||||
|
||||
#: lib/controller/importcontroller.php:137
|
||||
msgid "Error moving file to imports folder."
|
||||
@ -637,32 +642,32 @@ msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:154
|
||||
msgid "You do not have permissions to import into this address book."
|
||||
msgstr ""
|
||||
msgstr "Nincs jogosultsága importálni ebbe a címjegyzékbe."
|
||||
|
||||
#: lib/controller/importcontroller.php:162
|
||||
msgid "File name missing from request."
|
||||
msgstr ""
|
||||
msgstr "A kérésből hiányzik a fájl neve."
|
||||
|
||||
#: lib/controller/importcontroller.php:167
|
||||
#: lib/controller/importcontroller.php:283
|
||||
msgid "Progress key missing from request."
|
||||
msgstr ""
|
||||
msgstr "A kérésből hiányzik a folyamat kulcsa."
|
||||
|
||||
#: lib/controller/importcontroller.php:173
|
||||
msgid "Attempt to access blacklisted file:"
|
||||
msgstr ""
|
||||
msgstr "Feketelistán szereplő fájl hozzáférési kísérlet:"
|
||||
|
||||
#: lib/controller/importcontroller.php:215
|
||||
msgid "No contacts found in: "
|
||||
msgstr ""
|
||||
msgstr "Itt egy névjegy sem található:"
|
||||
|
||||
#: lib/controller/settingscontroller.php:35
|
||||
msgid "No key is given."
|
||||
msgstr ""
|
||||
msgstr "Nincs kulcs megadva."
|
||||
|
||||
#: lib/controller/settingscontroller.php:39
|
||||
msgid "No value is given."
|
||||
msgstr ""
|
||||
msgstr "Nincs érték megadva."
|
||||
|
||||
#: lib/controller/settingscontroller.php:50
|
||||
msgid "Could not set preference: "
|
||||
@ -670,7 +675,7 @@ msgstr "Nem állítható be a tulajdonság:"
|
||||
|
||||
#: lib/searchprovider.php:24
|
||||
msgid "Contact"
|
||||
msgstr "Kapcsolat"
|
||||
msgstr "Névjegy"
|
||||
|
||||
#: lib/utils/jsonserializer.php:104 lib/utils/properties.php:155
|
||||
#: lib/utils/properties.php:168 lib/utils/properties.php:175
|
||||
@ -680,59 +685,59 @@ msgstr "Más"
|
||||
|
||||
#: lib/utils/jsonserializer.php:107
|
||||
msgid "HomePage"
|
||||
msgstr "Kezdőlap"
|
||||
msgstr "Weboldal"
|
||||
|
||||
#: lib/utils/properties.php:66
|
||||
msgid "Jabber"
|
||||
msgstr ""
|
||||
msgstr "Jabber"
|
||||
|
||||
#: lib/utils/properties.php:71
|
||||
msgid "Internet call"
|
||||
msgstr ""
|
||||
msgstr "Internet hívás"
|
||||
|
||||
#: lib/utils/properties.php:76
|
||||
msgid "AIM"
|
||||
msgstr ""
|
||||
msgstr "AIM"
|
||||
|
||||
#: lib/utils/properties.php:81
|
||||
msgid "MSN"
|
||||
msgstr ""
|
||||
msgstr "MSN"
|
||||
|
||||
#: lib/utils/properties.php:86
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
msgstr "Twitter"
|
||||
|
||||
#: lib/utils/properties.php:91
|
||||
msgid "GoogleTalk"
|
||||
msgstr ""
|
||||
msgstr "Google Talk"
|
||||
|
||||
#: lib/utils/properties.php:96
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
msgstr "Facebook"
|
||||
|
||||
#: lib/utils/properties.php:101
|
||||
msgid "XMPP"
|
||||
msgstr ""
|
||||
msgstr "XMPP"
|
||||
|
||||
#: lib/utils/properties.php:106
|
||||
msgid "ICQ"
|
||||
msgstr ""
|
||||
msgstr "ICQ"
|
||||
|
||||
#: lib/utils/properties.php:111
|
||||
msgid "Yahoo"
|
||||
msgstr ""
|
||||
msgstr "Yahoo"
|
||||
|
||||
#: lib/utils/properties.php:116
|
||||
msgid "Skype"
|
||||
msgstr ""
|
||||
msgstr "Skype"
|
||||
|
||||
#: lib/utils/properties.php:121
|
||||
msgid "QQ"
|
||||
msgstr ""
|
||||
msgstr "QQ"
|
||||
|
||||
#: lib/utils/properties.php:126
|
||||
msgid "GaduGadu"
|
||||
msgstr ""
|
||||
msgstr "GaduGadu"
|
||||
|
||||
#: lib/utils/properties.php:153 lib/utils/properties.php:161
|
||||
#: lib/utils/properties.php:172 lib/utils/properties.php:189
|
||||
@ -746,11 +751,11 @@ msgstr "Otthoni"
|
||||
|
||||
#: lib/utils/properties.php:160
|
||||
msgid "Mobile"
|
||||
msgstr "Mobiltelefonszám"
|
||||
msgstr "Mobil"
|
||||
|
||||
#: lib/utils/properties.php:162
|
||||
msgid "Text"
|
||||
msgstr "Szöveg"
|
||||
msgstr "SMS"
|
||||
|
||||
#: lib/utils/properties.php:163
|
||||
msgid "Voice"
|
||||
@ -766,7 +771,7 @@ msgstr "Fax"
|
||||
|
||||
#: lib/utils/properties.php:166
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
msgstr "Videó"
|
||||
|
||||
#: lib/utils/properties.php:167
|
||||
msgid "Pager"
|
||||
@ -778,56 +783,56 @@ msgstr "Internet"
|
||||
|
||||
#: lib/utils/properties.php:187
|
||||
msgid "Friends"
|
||||
msgstr ""
|
||||
msgstr "Barátok"
|
||||
|
||||
#: lib/utils/properties.php:188
|
||||
msgid "Family"
|
||||
msgstr ""
|
||||
msgstr "Család"
|
||||
|
||||
#: templates/contacts.php:6
|
||||
msgid "New Contact"
|
||||
msgstr ""
|
||||
msgstr "Új névjegy"
|
||||
|
||||
#: templates/contacts.php:10
|
||||
msgid "Group name"
|
||||
msgstr ""
|
||||
msgstr "Csoport neve"
|
||||
|
||||
#: templates/contacts.php:10
|
||||
msgid "New Group"
|
||||
msgstr ""
|
||||
msgstr "Új csoport"
|
||||
|
||||
#: templates/contacts.php:19
|
||||
msgid "Address books"
|
||||
msgstr ""
|
||||
msgstr "Címjegyzék"
|
||||
|
||||
#: templates/contacts.php:22 templates/contacts.php:47
|
||||
#: templates/contacts.php:67
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#: templates/contacts.php:22
|
||||
msgid "Add Address Book"
|
||||
msgstr ""
|
||||
msgstr "Címjegyzék hozzáadása"
|
||||
|
||||
#: templates/contacts.php:31 templates/contacts.php:32
|
||||
msgid "Select file..."
|
||||
msgstr ""
|
||||
msgstr "Fájl kiválasztása..."
|
||||
|
||||
#: templates/contacts.php:45 templates/contacts.php:65
|
||||
msgid "(De-)select all"
|
||||
msgstr ""
|
||||
msgstr "Ki/bejelöli mindet"
|
||||
|
||||
#: templates/contacts.php:46 templates/contacts.php:66
|
||||
msgid "Sort order"
|
||||
msgstr ""
|
||||
msgstr "Rendezés"
|
||||
|
||||
#: templates/contacts.php:48 templates/contacts.php:68
|
||||
msgid "First- Lastname"
|
||||
msgstr ""
|
||||
msgstr "Kereszt- Vezetéknév"
|
||||
|
||||
#: templates/contacts.php:49 templates/contacts.php:69
|
||||
msgid "Last-, Firstname"
|
||||
msgstr ""
|
||||
msgstr "Vezeték-, Keresztnév"
|
||||
|
||||
#: templates/contacts.php:53 templates/contacts.php:80
|
||||
msgid "Groups"
|
||||
@ -835,23 +840,23 @@ msgstr "Csoportok"
|
||||
|
||||
#: templates/contacts.php:55 templates/contacts.php:82
|
||||
msgid "Favorite"
|
||||
msgstr ""
|
||||
msgstr "Kedvenc"
|
||||
|
||||
#: templates/contacts.php:56 templates/contacts.php:83
|
||||
msgid "Merge selected"
|
||||
msgstr ""
|
||||
msgstr "Kijelöltek összefűzése"
|
||||
|
||||
#: templates/contacts.php:92
|
||||
msgid "Keyboard shortcuts"
|
||||
msgstr ""
|
||||
msgstr "Gyorsbillentyűk"
|
||||
|
||||
#: templates/contacts.php:94
|
||||
msgid "Navigation"
|
||||
msgstr ""
|
||||
msgstr "Navigáció"
|
||||
|
||||
#: templates/contacts.php:97
|
||||
msgid "Next contact in list"
|
||||
msgstr ""
|
||||
msgstr "Következő névjegy a listán"
|
||||
|
||||
#: templates/contacts.php:99
|
||||
msgid "Previous contact in list"
|
||||
@ -966,7 +971,7 @@ msgstr "Becenév megadása"
|
||||
|
||||
#: templates/contacts.php:271 templates/contacts.php:327
|
||||
msgid "Title"
|
||||
msgstr "Felirat"
|
||||
msgstr "Cím"
|
||||
|
||||
#: templates/contacts.php:274
|
||||
msgid "Enter title"
|
||||
@ -992,6 +997,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefonszám"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr "Պահպանել"
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -19,7 +19,7 @@ msgstr ""
|
||||
"Language: ia\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Contactos"
|
||||
|
||||
@ -107,62 +107,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Cancellar"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -170,33 +170,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Adder"
|
||||
|
||||
@ -379,7 +379,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -419,74 +419,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -549,27 +553,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Il habeva un error durante le cargamento del imagine."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -984,6 +988,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Phono"
|
||||
|
@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "kontak"
|
||||
|
||||
@ -108,62 +108,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Oke"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -171,33 +171,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Tambah"
|
||||
|
||||
@ -380,7 +380,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -420,74 +420,78 @@ msgstr "hari ulang tahun {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -550,27 +554,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "file tidak ditemukan:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -985,6 +989,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "telefon"
|
||||
|
@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -18,7 +18,7 @@ msgstr ""
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
@ -106,62 +106,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Hætta við"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -169,33 +169,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Bæta við"
|
||||
|
||||
@ -378,7 +378,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -418,74 +418,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -548,27 +552,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Skrá finnst ekki:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -983,6 +987,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -105,6 +105,7 @@
|
||||
"Error saving contact." => "Errore di salvataggio del contatto.",
|
||||
"Error removing contact from other address book." => "Errore durante la rimozione del contatto da altre rubriche.",
|
||||
"Couldn't find contact." => "Impossibile trovare il contatto.",
|
||||
"No contact data in request." => "Non ci sono dati di contatto nella richiesta.",
|
||||
"Error merging into contact." => "Errore durante l'unione al contatto.",
|
||||
"Error saving contact to backend." => "Errore di salvataggio del contatto nel motore.",
|
||||
"Property name is not set." => "Il nome della proprietà non è impostato.",
|
||||
@ -230,6 +231,7 @@
|
||||
"Birthday" => "Compleanno",
|
||||
"Notes go here..." => "Le note vanno qui...",
|
||||
"Export as VCF" => "Esporta come VCF",
|
||||
"Add field..." => "Aggiungi campo...",
|
||||
"Phone" => "Telefono",
|
||||
"Email" => "Posta elettronica",
|
||||
"Instant Messaging" => "Messaggistica istantanea",
|
||||
|
@ -17,8 +17,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-07 09:33-0400\n"
|
||||
"PO-Revision-Date: 2013-10-05 14:15+0000\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 18:40+0000\n"
|
||||
"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -27,7 +27,7 @@ msgstr ""
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Contatti"
|
||||
|
||||
@ -115,62 +115,62 @@ msgstr "Unione non riuscita."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Unione non riuscita. Errore durante il salvataggio del contatto."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Seleziona la foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Errore di rete o del server. Informa l'amministratore."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Errore durante l'aggiunta al gruppo."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Errore durante la rimozione dal gruppo."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Errore durante l'impostazione di {name} come preferito."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Unisci contatti"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Aggiungi gruppo"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Impossibile trovare il contatto: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Nessun file selezionato per l'invio"
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Il file che stai cercando di inviare supera la dimensione massima per l'invio dei file su questo server."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Modifica l'immagine del profilo"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Ritaglia foto"
|
||||
|
||||
@ -178,33 +178,33 @@ msgstr "Ritaglia foto"
|
||||
msgid "Is this correct?"
|
||||
msgstr "È corretto?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Errore durante l'elaborazione della data: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# gruppi"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Errore durante l'elaborazione della data di nascita {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Alcuni contatti sono marcati per l'eliminazione, ma non sono stati ancora rimossi. Attendi fino al completamento dell'operazione."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Un clic per annullare l'eliminazione di {num} contatti"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Eliminazione di {num} contatti annullata"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Aggiungi"
|
||||
|
||||
@ -335,7 +335,7 @@ msgstr "Altro..."
|
||||
msgid "Less..."
|
||||
msgstr "Meno..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr "Errore del server. Informa l'amministratore di sistema"
|
||||
|
||||
@ -387,7 +387,7 @@ msgstr "Non hai i permessi per aggiornare la rubrica."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Non hai i permessi per eliminare la rubrica."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Rubrica non trovata."
|
||||
|
||||
@ -427,74 +427,78 @@ msgstr "Data di nascita di {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Errore durante la creazione della rubrica"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Errore durante l'aggiornamento della rubrica"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Non hai i permessi per eliminare la rubrica \"%s\""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Errore durante l'eliminazione della rubrica"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Errore durante la creazione del contatto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Errore durante l'eliminazione del contatto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Errore durante il recupero del contatto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Errore di salvataggio del contatto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Errore durante la rimozione del contatto da altre rubriche."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Impossibile trovare il contatto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr "Non ci sono dati di contatto nella richiesta."
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Errore durante l'unione al contatto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Errore di salvataggio del contatto nel motore."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Il nome della proprietà non è impostato."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "La proprietà del codice di controllo non è impostata."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informazioni sulla vCard non corrette. Ricarica la pagina."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Errore durante l'aggiornamento del contatto"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Errore durante il salvataggio del contatto nel motore"
|
||||
|
||||
@ -557,27 +561,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Il file non esiste:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Errore di caricamento immagine."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "L'immagine è stata rimossa dalla cache"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Errore durante la creazione dell'immagine temporanea"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Errore di ritaglio dell'immagine"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Errore di ridimensionamento dell'immagine"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Errore di recupero della proprietà FOTO."
|
||||
|
||||
@ -992,6 +996,10 @@ msgstr "Le note vanno qui..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Esporta come VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Aggiungi campo..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefono"
|
||||
|
@ -73,6 +73,7 @@
|
||||
"Delete" => "削除",
|
||||
"More..." => "詳細...",
|
||||
"Less..." => "閉じる...",
|
||||
"Server error! Please inform system administator" => "サーバエラー!システム管理者にお知らせください",
|
||||
"Failed loading photo: {error}" => "写真の読み込みに失敗: {error}",
|
||||
"You do not have permissions to see this contacts" => "この連絡先を閲覧する権限がありません",
|
||||
"Contact not found" => "連絡先が見つかりません",
|
||||
@ -109,6 +110,8 @@
|
||||
"Property name is not set." => "プロパティ名が設定されていません。",
|
||||
"Property checksum is not set." => "プロパティのチェックサムが設定されていません。",
|
||||
"Information about vCard is incorrect. Please reload the page." => "vCardの情報に誤りがあります。ページをリロードして下さい。",
|
||||
"Error updating contact" => "連絡先の更新エラー",
|
||||
"Error saving contact to backend" => "バックエンドへの連絡先の保存エラー",
|
||||
"Error getting user photo" => "ユーザーフォト取得エラー",
|
||||
"No file was uploaded. Unknown error" => "アップロードされたファイルはありません。不明なエラー",
|
||||
"There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました",
|
||||
@ -226,6 +229,7 @@
|
||||
"Birthday" => "誕生日",
|
||||
"Notes go here..." => "メモはここに...",
|
||||
"Export as VCF" => "VCFとしてエクスポート",
|
||||
"Add field..." => "フィールドを追加...",
|
||||
"Phone" => "電話番号",
|
||||
"Email" => "メール",
|
||||
"Instant Messaging" => "インスタントメッセージ",
|
||||
@ -244,6 +248,7 @@
|
||||
"Delete URL" => "URLを削除",
|
||||
"View on map" => "地図で表示",
|
||||
"Delete address" => "住所を削除",
|
||||
"1600 Pennsylvania Avenue, NW" => "1600 Pennsylvania Avenue, NW",
|
||||
"Street address" => "住所1",
|
||||
"20500" => "20500",
|
||||
"Postal code" => "郵便番号",
|
||||
|
@ -14,8 +14,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -24,7 +24,7 @@ msgstr ""
|
||||
"Language: ja_JP\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "コンタクト"
|
||||
|
||||
@ -112,62 +112,62 @@ msgstr "マージに失敗しました。"
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "マージに失敗しました。連絡先の保存エラー。"
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "写真を選択"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "ネットワークもしくはサーバエラーです。管理者に連絡してください。"
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "グループの追加時にエラー発生。"
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "グループからの削除でエラーが発生。"
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "{name} をお気に入りにする際にエラーが発生しました。"
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "連絡先をマージ"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "キャンセル"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "グループを追加"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "連絡先が見つかりませんでした: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "アップロードするファイルが選択されていません。"
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "アップロードしようとしているファイルは、このサーバの最大ファイルアップロードサイズを超えています。"
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "プロフィール写真を編集"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "フォトをトリミング"
|
||||
|
||||
@ -175,33 +175,33 @@ msgstr "フォトをトリミング"
|
||||
msgid "Is this correct?"
|
||||
msgstr "これは正しいですか?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "日付の読み取りでエラー発生: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "グループ数"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "誕生日 {bday} の解析エラー: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "いくつかの連絡先が削除対象としてマークされていますが、まだ削除されていません。削除には今しばらく時間がかかります。"
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "クリックして {num} 個の連絡先の削除を取り消す"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "{num}件の連絡先の削除がキャンセルされました"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "追加"
|
||||
|
||||
@ -334,7 +334,7 @@ msgstr "閉じる..."
|
||||
|
||||
#: js/storage.js:29
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
msgstr "サーバエラー!システム管理者にお知らせください"
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
@ -384,7 +384,7 @@ msgstr "アドレス帳を更新する権限がありません。"
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "アドレス帳を削除する権限がありません。"
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "アドレス帳が見つかりません"
|
||||
|
||||
@ -424,76 +424,80 @@ msgstr "{name}の誕生日"
|
||||
msgid "Error creating address book"
|
||||
msgstr "アドレス帳の作成エラー"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "アドレス帳の更新エラー"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "アドレス帳 \"%s\" を削除する権限がありません"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "アドレス帳の削除エラー"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "連絡先の作成エラー。"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "連絡先の削除エラー。"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "連絡先の取得エラー"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "連絡先の保存エラー。"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "他のアドレス帳からの連絡先の削除エラー"
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "連絡先が見つかりませんでした。"
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "連絡先へのマージエラー。"
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "バックエンドへの連絡先の保存エラー"
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "プロパティ名が設定されていません。"
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "プロパティのチェックサムが設定されていません。"
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "vCardの情報に誤りがあります。ページをリロードして下さい。"
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
msgstr "連絡先の更新エラー"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
msgstr "バックエンドへの連絡先の保存エラー"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:69
|
||||
msgid "Error getting user photo"
|
||||
@ -554,27 +558,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "ファイルが存在しません:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "画像の読み込みエラー。"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "画像はキャッシュから削除されました。"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "一時画像の生成エラー"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "画像の切り抜きエラー"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "画像のリサイズエラー"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "写真属性の取得エラー。"
|
||||
|
||||
@ -989,6 +993,10 @@ msgstr "メモはここに..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "VCFとしてエクスポート"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "フィールドを追加..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "電話番号"
|
||||
@ -1065,7 +1073,7 @@ msgstr "住所を削除"
|
||||
|
||||
#: templates/contacts.php:410
|
||||
msgid "1600 Pennsylvania Avenue, NW"
|
||||
msgstr ""
|
||||
msgstr "1600 Pennsylvania Avenue, NW"
|
||||
|
||||
#: templates/contacts.php:411
|
||||
msgid "Street address"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -19,7 +19,7 @@ msgstr ""
|
||||
"Language: ka_GE\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "კონტაქტები"
|
||||
|
||||
@ -107,62 +107,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "უარყოფა"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "დიახ"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -170,33 +170,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "დამატება"
|
||||
|
||||
@ -379,7 +379,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -419,74 +419,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -549,27 +553,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -984,6 +988,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "ტელეფონი"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: kn\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -22,8 +22,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -32,7 +32,7 @@ msgstr ""
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "연락처"
|
||||
|
||||
@ -120,62 +120,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "사진 선택"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "확인"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "업로드를 위한 파일이 선택되지 않았습니다. "
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "이 파일은 이 서버 파일 업로드 최대 용량을 초과 합니다. "
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -183,33 +183,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "일부 연락처가 삭제 표시 되었으나 아직 삭제되지 않았습니다. 삭제가 끝날 때 까지 기다려 주세요."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "추가"
|
||||
|
||||
@ -392,7 +392,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -432,74 +432,78 @@ msgstr "{이름}의 생일"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "연락처 저장 중 오류가 발생했습니다."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "vCard 정보가 올바르지 않습니다. 페이지를 새로 고치십시오."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -562,27 +566,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "파일이 존재하지 않습니다:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "로딩 이미지 오류입니다."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "임시 이미지를 생성 중 오류가 발생했습니다."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "이미지를 자르던 중 오류가 발생했습니다."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "이미지 크기 조정 중 오류가 발생했습니다."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "사진 속성을 가져오는 중 오류가 발생했습니다. "
|
||||
|
||||
@ -997,6 +1001,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "전화 번호"
|
||||
|
@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -18,7 +18,7 @@ msgstr ""
|
||||
"Language: ku_IQ\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
@ -106,62 +106,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -169,33 +169,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "زیادکردن"
|
||||
|
||||
@ -378,7 +378,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -418,74 +418,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -548,27 +552,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "پهڕگهکه ههبوون نیه:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "ههڵه ڕوویدا لە ئامادەکردنى وێنە"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -983,6 +987,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "تەلەفۆن"
|
||||
|
@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakter"
|
||||
|
||||
@ -108,62 +108,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Ofbriechen"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -171,33 +171,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Dobäisetzen"
|
||||
|
||||
@ -380,7 +380,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -420,74 +420,78 @@ msgstr "{name} säi Gebuertsdag"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informatioun iwwert vCard ass net richteg. Lued d'Säit wegl nei."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -550,27 +554,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Fichier existéiert net:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Fehler beim lueden vum Bild."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -985,6 +989,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -15,9 +15,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-07 09:33-0400\n"
|
||||
"PO-Revision-Date: 2013-10-07 10:40+0000\n"
|
||||
"Last-Translator: Liudas Ališauskas <liudas.alisauskas@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -25,7 +25,7 @@ msgstr ""
|
||||
"Language: lt_LT\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontaktai"
|
||||
|
||||
@ -113,62 +113,62 @@ msgstr "Sulieti nepavyko."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Suliejimas nepavyko. Klaida saugant kontaktą."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Nurodykite nuotrauką"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Tinklo arba serverio klaida. Prašome informuoti administratorių."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Klaida pridedant į grupę."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Klaida pašalinant iš grupės."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Klaida nustatant {name} mėgstamu."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Sulieti kontaktus"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Pridėti grupę"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Gerai"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Nepavyko rasti kontakto: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Nepažymėta jokių failų įkėlimui."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Įkeliamo failo dydis viršijo šio serverio maksimalų leistiną dydį."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Redaguoti profilio paveikslėlį"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Apkirpti nuotrauką"
|
||||
|
||||
@ -176,33 +176,33 @@ msgstr "Apkirpti nuotrauką"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Teisinga?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Klaida apdorojant datą: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# grupės"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Klaida nagrinėjant gimtadienį {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Keletas kontaktų buvo pažymėti ištrinimui, bet dar neištrinti. Prašome palaukti kol jie bus ištrinti."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Spauskite, kad atstatyti trynimą {num} kontaktų"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Atšauktas {num} kontaktų trynimas"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Pridėti"
|
||||
|
||||
@ -385,7 +385,7 @@ msgstr "Jūs neturite leidimo atnaujinti šią adresų knygutę."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Jūs neturite leidimo ištrinti šią adresų knygutę."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Adresų knygutė nerasta"
|
||||
|
||||
@ -425,74 +425,78 @@ msgstr "{name} gimtadienis"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Klaida kuriant adresų knygutę"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Klaida atnaujinant adresų knygutę"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Jūs neturite leidimo ištrinti „%s“ adresų knygos"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Klaida trinant adresų knygutę"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Klaida kuriant kontaktą."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Klaida trinant kontaktą."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Klaida gaunant kontaktą."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Klaida išsaugant kontaktą."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Klaida paralinant kontaktą iš kitos adresų knygutės."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Nepavyko rasti kontakto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Nenustatytas savybės pavadinimas."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Nenustatyta savybės kontrolinė suma."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informacija apie vCard yra neteisinga. "
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Klaida atnaujinant kontaktą"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -555,27 +559,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Failas neegzistuoja:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Klaida įkeliant nuotrauką."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Paveikslėlis pašalintas iš talpyklos"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Klaida kuriant laikiną paveikslėlį"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Klaida apkerpant paveikslėlį"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Klaida keičiant paveikslėlio dydį"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Klaida gaunant nuotraukos savybes."
|
||||
|
||||
@ -990,6 +994,10 @@ msgstr "Pastabos rašomo čia..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Eksportuoti kaip VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefonas"
|
||||
|
@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -19,7 +19,7 @@ msgstr ""
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakti"
|
||||
|
||||
@ -107,62 +107,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Atcelt"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Labi"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -170,33 +170,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Pievienot"
|
||||
|
||||
@ -379,7 +379,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -419,74 +419,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Kļūda, saglabājot kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -549,27 +553,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Datne neeksistē:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Kļūda, ielādējot attēlu."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Kļūda, apcērtot attēlu"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Kļūda, mainot attēla izmēru"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Kļūda, saņemot PHOTO īpašību."
|
||||
|
||||
@ -984,6 +988,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -19,7 +19,7 @@ msgstr ""
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Контакти"
|
||||
|
||||
@ -107,62 +107,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Одбери фотографија"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Додади група"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Во ред"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Ниту еден фајл не е избран за вчитување."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Датотеката која се обидувате да ја префрлите ја надминува максималната големина дефинирана за пренос на овој сервер."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -170,33 +170,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Додади"
|
||||
|
||||
@ -379,7 +379,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -419,74 +419,78 @@ msgstr "Роденден на {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Грешка при снимање на контактите."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Информацијата за vCard не е точна. Ве молам превчитајте ја страницава."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -549,27 +553,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Не постои датотеката:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Грешка во вчитување на слика."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Грешка при креирањето на привремената фотографија"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Грешка при сечење на фотографијата"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Грешка при скалирање на фотографијата"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Грешка при утврдувањето на карактеристиките на фотографијата."
|
||||
|
||||
@ -984,6 +988,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Телефон"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: ml_IN\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -12,8 +12,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -22,7 +22,7 @@ msgstr ""
|
||||
"Language: ms_MY\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Hubungi "
|
||||
|
||||
@ -110,62 +110,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Pilih foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Batal"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Tiada fail dipilih untuk muatnaik."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Fail yang ingin dimuatnaik melebihi saiz yang dibenarkan."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -173,33 +173,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Tambah"
|
||||
|
||||
@ -382,7 +382,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -422,74 +422,78 @@ msgstr "Hari Lahir {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Ralat menyimpan kenalan."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Maklumat vCard tidak tepat. Sila reload semula halaman ini."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -552,27 +556,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Fail tidak wujud:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Ralat pada muatan imej."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Ralat mencipta imej sementara"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Ralat memotong imej"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Ralat mengubah saiz imej"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Ralat mendapatkan maklumat gambar."
|
||||
|
||||
@ -987,6 +991,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: my_MM\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "ပယ်ဖျက်မည်"
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "ပေါင်းထည့်"
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -17,8 +17,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -27,7 +27,7 @@ msgstr ""
|
||||
"Language: nb_NO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakter"
|
||||
|
||||
@ -115,62 +115,62 @@ msgstr "Fletting feilet."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Velg bilde"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Flett kontakter"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Legg til gruppe"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Ingen filer valgt for opplasting."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Filen du prøver å laste opp er for stor."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Rediger profilbilde"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -178,33 +178,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr "Er dette korrekt?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "Ant. grupper"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Legg til"
|
||||
|
||||
@ -387,7 +387,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -427,74 +427,78 @@ msgstr "{name}s bursdag"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Klarte ikke å lagre kontakt."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informasjonen om vCard-filen er ikke riktig. Last inn siden på nytt."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -557,27 +561,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Filen eksisterer ikke:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Klarte ikke å laste bilde."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Klarte ikke å lage et midlertidig bilde"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Klarte ikke å beskjære bildet"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Klarte ikke å endre størrelse på bildet"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Feil ved henting av foto verdi."
|
||||
|
||||
@ -992,6 +996,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr "Eksporter som VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -73,6 +73,7 @@
|
||||
"Delete" => "Verwijder",
|
||||
"More..." => "Meer...",
|
||||
"Less..." => "Minder...",
|
||||
"Server error! Please inform system administator" => "Server fout! Neem contact op met de systeembeheerder",
|
||||
"Failed loading photo: {error}" => "Mislukt: inladen foto: {error}",
|
||||
"You do not have permissions to see this contacts" => "U heeft geen permissie om deze contactpersonen te bekijken",
|
||||
"Contact not found" => "Contact niet gevonden",
|
||||
@ -104,11 +105,14 @@
|
||||
"Error saving contact." => "Fout om contact op te slaan",
|
||||
"Error removing contact from other address book." => "Fout bij verwijderen contactpersoon uit ander adresboek.",
|
||||
"Couldn't find contact." => "Kon contactpersoon niet vinden.",
|
||||
"No contact data in request." => "Geen contactgegevens in aanvraag.",
|
||||
"Error merging into contact." => "Fout bij samenvoegen bij contactpersoon.",
|
||||
"Error saving contact to backend." => "Fout bij bewaren contactpersoon in backend.",
|
||||
"Property name is not set." => "Naam van eigenschap niet ingesteld.",
|
||||
"Property checksum is not set." => "Controlegetal van eigenschap niet ingesteld.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "Informatie over de vCard is onjuist. Herlaad de pagina.",
|
||||
"Error updating contact" => "Fout bij bijwerken contactpersoon",
|
||||
"Error saving contact to backend" => "Fout bij opslaan contactpersoongegevens baar backend",
|
||||
"Error getting user photo" => "Fout bij ophalen gebruikersfoto",
|
||||
"No file was uploaded. Unknown error" => "Er was geen bestand geladen. Onbekende fout",
|
||||
"There is no error, the file uploaded with success" => "De upload van het bestand is goedgegaan.",
|
||||
@ -227,6 +231,7 @@
|
||||
"Birthday" => "Verjaardag",
|
||||
"Notes go here..." => "Hier de notities...",
|
||||
"Export as VCF" => "Exporteren als VCF",
|
||||
"Add field..." => "Toevoegen veld...",
|
||||
"Phone" => "Telefoon",
|
||||
"Email" => "E-mailadres",
|
||||
"Instant Messaging" => "Instant Messaging",
|
||||
|
@ -20,9 +20,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 17:40+0000\n"
|
||||
"Last-Translator: André Koot <meneer@tken.net>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -30,7 +30,7 @@ msgstr ""
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Contactpersonen"
|
||||
|
||||
@ -118,62 +118,62 @@ msgstr "Samenvoeging mislukt."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Samenvoegen mislukt. Fout bij opslaan contactpersoon."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Selecteer een foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Netwerk- of serverfout. Neem contact op met de beheerder."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Fout bij het toevoegen aan de groep."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Fout bij het verwijderen uit de groep."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Fout bij instellen {name} als favoriet"
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Samenvoegen contactgegevens"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleer"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Toevoegen groep"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Kon contactpersoon niet vinden: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Geen bestanden geselecteerd voor upload."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Het bestand dat u probeert te uploaden overschrijdt de maximale bestand grootte voor bestand uploads voor deze server."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Bewerk profielafbeelding"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Bijsnijden foto"
|
||||
|
||||
@ -181,33 +181,33 @@ msgstr "Bijsnijden foto"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Is dit correct?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Fout bij lezen datum: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# groepen"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Fout bij interpreteren verjaardag {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Enkele contacten zijn gemarkeerd om verwijderd te worden, maar zijn nog niet verwijderd. Wacht totdat ze zijn verwijderd."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Klik om het verwijderen van {num} contactpersonen ongedaan te maken."
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Verwijderen van {num} contacten geannuleerd"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Toevoegen"
|
||||
|
||||
@ -338,9 +338,9 @@ msgstr "Meer..."
|
||||
msgid "Less..."
|
||||
msgstr "Minder..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
msgstr "Server fout! Neem contact op met de systeembeheerder"
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
@ -390,7 +390,7 @@ msgstr "U heeft geen permissie om dit adresboek te bewerken."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "U heeft geen permissie om dit adresboek te verwijderen."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Adresboek niet gevonden"
|
||||
|
||||
@ -430,76 +430,80 @@ msgstr "{name}'s verjaardag"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Fout bij aanmaken adresboek"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Fout bij bijwerken adresboek"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "U hebt niet de permissies om het \"%s\" adresboek te verwijderen"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Fout bij verwijderen adresboek"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Fout bij aanmaken contactpersoon."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Fout bij verwijderen contactpersoon."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Fout bij ophalen contactpersonen."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Fout om contact op te slaan"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Fout bij verwijderen contactpersoon uit ander adresboek."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Kon contactpersoon niet vinden."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr "Geen contactgegevens in aanvraag."
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Fout bij samenvoegen bij contactpersoon."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Fout bij bewaren contactpersoon in backend."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Naam van eigenschap niet ingesteld."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Controlegetal van eigenschap niet ingesteld."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informatie over de vCard is onjuist. Herlaad de pagina."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
msgstr "Fout bij bijwerken contactpersoon"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
msgstr "Fout bij opslaan contactpersoongegevens baar backend"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:69
|
||||
msgid "Error getting user photo"
|
||||
@ -560,27 +564,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Bestand bestaat niet: "
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Fout bij laden plaatje."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Afbeelding is verwijderd uit de cache"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Fout om een tijdelijk plaatje te maken"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Fout tijdens aanpassen plaatje"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Fout tijdens aanpassen plaatje"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Fout om PHOTO eigenschap te verkrijgen"
|
||||
|
||||
@ -995,6 +999,10 @@ msgstr "Hier de notities..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exporteren als VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Toevoegen veld..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefoon"
|
||||
|
@ -11,8 +11,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -21,7 +21,7 @@ msgstr ""
|
||||
"Language: nn_NO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kotaktar"
|
||||
|
||||
@ -109,62 +109,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "Greitt"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -172,33 +172,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Legg til"
|
||||
|
||||
@ -381,7 +381,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -421,74 +421,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informasjonen om vCard-et er feil, ver venleg og last sida på nytt."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -551,27 +555,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -986,6 +990,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefonnummer"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: nqo\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,7 +17,7 @@ msgstr ""
|
||||
"Language: oc\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Contactes"
|
||||
|
||||
@ -105,62 +105,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Annula"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "D'accòrdi"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,33 +168,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Ajusta"
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,7 +17,7 @@ msgstr ""
|
||||
"Language: pa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "ਸੰਪਰਕ"
|
||||
|
||||
@ -105,62 +105,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "ਰੱਦ ਕਰੋ"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "ਠੀਕ ਹੈ"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,33 +168,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -38,6 +38,7 @@
|
||||
"Is this correct?" => "Jest to prawidłowe?",
|
||||
"Error parsing date: {date}" => "Błąd przetwarzania daty : {date}",
|
||||
"# groups" => "# grupy",
|
||||
"Error parsing birthday {bday}: {error}" => "Błąd przetwarzania urodzin {bday}: {error}",
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Niektóre kontakty są zaznaczone do usunięcia, ale nie są usunięte jeszcze. Proszę czekać na ich usunięcie.",
|
||||
"Click to undo deletion of {num} contacts" => "Kliknij aby cofnąć usunięcie {num} kontaktów",
|
||||
"Cancelled deletion of {num} contacts" => "Usunięcie Anulowane {num} kontaktów",
|
||||
@ -58,6 +59,7 @@
|
||||
"Failed loading groups: {error}" => "Nieudane wczytanie grup: {error}",
|
||||
"Please choose the addressbook" => "Proszę wybrać książkę adresową",
|
||||
"Import into..." => "Importuj do...",
|
||||
"Error loading import template" => "Błąd przy importowaniu szablonu",
|
||||
"Import contacts" => "importuj kontakty",
|
||||
"Import" => "Importuj",
|
||||
"Import done" => "Import zakończony",
|
||||
@ -71,6 +73,7 @@
|
||||
"Delete" => "Usuń",
|
||||
"More..." => "Więcej...",
|
||||
"Less..." => "Mniej...",
|
||||
"Server error! Please inform system administator" => "Błąd serwera@ Skontaktuj się z administratorem",
|
||||
"Failed loading photo: {error}" => "Nieudane wczytanie zdjęcia: {error}",
|
||||
"You do not have permissions to see this contacts" => "Nie masz uprawnień do podglądania tego kontaktu",
|
||||
"Contact not found" => "Kontaktu nie znaleziono",
|
||||
@ -107,6 +110,7 @@
|
||||
"Property name is not set." => "Nazwa właściwości nie jest ustawiona",
|
||||
"Property checksum is not set." => "Właściwości checksum-y nie ustawione.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "Informacje o vCard są nieprawidłowe. Proszę odświeżyć stronę.",
|
||||
"Error updating contact" => "Błąd uaktualnienia kontaktu",
|
||||
"Error getting user photo" => "Błąd pobrania zdjęcia użytkownika",
|
||||
"No file was uploaded. Unknown error" => "Żaden plik nie został załadowany. Nieznany błąd",
|
||||
"There is no error, the file uploaded with success" => "Nie było błędów, plik wysłano poprawnie.",
|
||||
@ -236,6 +240,7 @@
|
||||
"Delete URL" => "Usuń URL",
|
||||
"View on map" => "Zobacz na mapie",
|
||||
"Delete address" => "Usuń adres",
|
||||
"1600 Pennsylvania Avenue, NW" => "1600 Pennsylvania Avenue, NW",
|
||||
"Street address" => "Ulica",
|
||||
"20500" => "20500",
|
||||
"Postal code" => "Kod pocztowy",
|
||||
|
@ -21,8 +21,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -31,7 +31,7 @@ msgstr ""
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakty"
|
||||
|
||||
@ -119,62 +119,62 @@ msgstr "Złączenie nieudane."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Złączenie nieudane. Błąd zapisu kontaktu."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Wybierz zdjęcie"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Błąd połączenia lub serwera. Skontaktuj sie z administratorem."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Błąd dodania do grupy."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Błąd usunięcia z grupy."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Błąd ustawienia {name} jako ulubione."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Połącz kontakty"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Dodaj drupę"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Nie można znaleźć kontaktu: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Żadne pliki nie zostały zaznaczone do wysłania."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Plik, który próbujesz wysłać przekracza maksymalny rozmiar pliku przekazywania na tym serwerze."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Edytuj zdjęcie profilu"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Kadruj zdjęcie"
|
||||
|
||||
@ -182,33 +182,33 @@ msgstr "Kadruj zdjęcie"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Jest to prawidłowe?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Błąd przetwarzania daty : {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# grupy"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
msgstr "Błąd przetwarzania urodzin {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Niektóre kontakty są zaznaczone do usunięcia, ale nie są usunięte jeszcze. Proszę czekać na ich usunięcie."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Kliknij aby cofnąć usunięcie {num} kontaktów"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Usunięcie Anulowane {num} kontaktów"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
@ -280,7 +280,7 @@ msgstr "Importuj do..."
|
||||
|
||||
#: js/loader.js:31
|
||||
msgid "Error loading import template"
|
||||
msgstr ""
|
||||
msgstr "Błąd przy importowaniu szablonu"
|
||||
|
||||
#: js/loader.js:48
|
||||
msgid "Import contacts"
|
||||
@ -341,7 +341,7 @@ msgstr "Mniej..."
|
||||
|
||||
#: js/storage.js:29
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
msgstr "Błąd serwera@ Skontaktuj się z administratorem"
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
@ -391,7 +391,7 @@ msgstr "Nie masz uprawnień do zmiany tej książki adresowej."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Nie masz uprawnień do usunięcia tej książki adresowej."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Nie znaleziono książki adresowej"
|
||||
|
||||
@ -431,74 +431,78 @@ msgstr "{name} Urodzony"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Błąd przy tworzeniu książki adresowej"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Błąd przy edytowaniu książki adresowej"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Nie masz uprawnień do usunięcia \"%s\" książki adresowej."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Błąd przy usuwaniu książki adresowej"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Błąd przy tworzeniu kontaktu"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Błąd przy usuwaniu kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Błąd zapisu kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Błąd zapisu kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Błąd usuwania kontaktu z innej książki adresowej."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Nie mogę znaleźć kontaktu."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Błąd złączenia kontaktów"
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Wystąpił błąd podczas zapisywania kontaktu."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Nazwa właściwości nie jest ustawiona"
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Właściwości checksum-y nie ustawione."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informacje o vCard są nieprawidłowe. Proszę odświeżyć stronę."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
msgstr "Błąd uaktualnienia kontaktu"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -561,27 +565,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Plik nie istnieje:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Błąd ładowania obrazu."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Obraz został usunięty z pamięci podręcznej"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Błąd utworzenia obrazu tymczasowego"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Błąd przycinania obrazu"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Błąd zmiany rozmiaru obrazu"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Błąd uzyskiwania właściwości ZDJĘCIA."
|
||||
|
||||
@ -996,6 +1000,10 @@ msgstr "Notatki kliknij tutaj..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Eksportuj jako VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
@ -1072,7 +1080,7 @@ msgstr "Usuń adres"
|
||||
|
||||
#: templates/contacts.php:410
|
||||
msgid "1600 Pennsylvania Avenue, NW"
|
||||
msgstr ""
|
||||
msgstr "1600 Pennsylvania Avenue, NW"
|
||||
|
||||
#: templates/contacts.php:411
|
||||
msgid "Street address"
|
||||
|
@ -105,6 +105,7 @@
|
||||
"Error saving contact." => "Erro ao salvar contato.",
|
||||
"Error removing contact from other address book." => "Erro removendo contato de outro livro de endereço.",
|
||||
"Couldn't find contact." => "Não foi possível encontrar o contato.",
|
||||
"No contact data in request." => "Não há dados de contato no pedido.",
|
||||
"Error merging into contact." => "Erro mesclando contato.",
|
||||
"Error saving contact to backend." => "Erro salvando contato no final.",
|
||||
"Property name is not set." => "Nome da propriedade não está definida.",
|
||||
@ -230,6 +231,7 @@
|
||||
"Birthday" => "Aniversário",
|
||||
"Notes go here..." => "Observações aqui...",
|
||||
"Export as VCF" => "Exportar como VCF",
|
||||
"Add field..." => "Adicionar um campo...",
|
||||
"Phone" => "Telefone",
|
||||
"Email" => "E-mail",
|
||||
"Instant Messaging" => "Mensagem Instantânea",
|
||||
|
@ -18,8 +18,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-04 16:00+0000\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-18 09:40+0000\n"
|
||||
"Last-Translator: Flávio Veras <flaviove@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -28,7 +28,7 @@ msgstr ""
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Contatos"
|
||||
|
||||
@ -116,62 +116,62 @@ msgstr "A mesclagem falhou."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "A mesclagem falhou. Erro salvando o contato."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Selecione foto"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Erro no servidor ou rede. Por favor, informe o administrador."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Erro ao adicionar ao grupo."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Erro ao remover do grupo."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Erro configurando {name} como favorito."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Mesclar contatos"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Adicionar grupo"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Não foi possível encontrar o contato:{id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Nenhum arquivo selecionado para carregar."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "O arquivo que você está tentando carregar excede o tamanho máximo para este servidor."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Editar imagem do perfil"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Recortar foto"
|
||||
|
||||
@ -179,33 +179,33 @@ msgstr "Recortar foto"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Isto está certo?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Erro na data de análise: {data}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# grupos"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Erro passando data do aniversário {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Alguns contatos foram marcados para remoção, mas não foram removidos ainda. Por favor aguarde a remoção desses contatos."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Clique para desfazer a exclusão de {num} contatos"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Cancelada a eliminação de {num} contatos"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Adicionar"
|
||||
|
||||
@ -336,7 +336,7 @@ msgstr "Mais..."
|
||||
msgid "Less..."
|
||||
msgstr "Menos..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr "Erro no servidor. Por favor, informe o administrador."
|
||||
|
||||
@ -388,7 +388,7 @@ msgstr "Você não tem permissão para atualizar o catálogo de endereços."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Você não tem permissões para excluir o livro de endereços."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Nenhum livro de endereço encontrado"
|
||||
|
||||
@ -428,74 +428,78 @@ msgstr "Aniversário de {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Erro criando livro de endereço"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Erro atualizando o livro de endereço"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Você não tem permissão para excluir o livro de endereços \"%s\""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Erro excluindo livro de endereço"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Erro criando contato."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Erro excluindo conato."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Erro recuperando contato."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Erro ao salvar contato."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Erro removendo contato de outro livro de endereço."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Não foi possível encontrar o contato."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr "Não há dados de contato no pedido."
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Erro mesclando contato."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Erro salvando contato no final."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Nome da propriedade não está definida."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Verificação de propriedade não está definida."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informações sobre vCard é incorreta. Por favor, recarregue a página."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Erro ao atualizar o contato"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Erro salvando contato no final."
|
||||
|
||||
@ -558,27 +562,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Arquivo não existe:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Erro ao carregar imagem."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Imagem foi removida do cache"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Erro ao criar imagem temporária"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Erro ao recortar imagem"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Erro ao modificar tamanho da imagem"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Erro ao obter propriedade da FOTO."
|
||||
|
||||
@ -993,6 +997,10 @@ msgstr "Observações aqui..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exportar como VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Adicionar um campo..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefone"
|
||||
|
@ -4,7 +4,12 @@
|
||||
"Uploading..." => "A enviar...",
|
||||
"Importing..." => "A importar...",
|
||||
"Imported {count} of {total} contacts" => "Importado {contagem} de {totais} contactos",
|
||||
"Imported {imported} contacts. {failed} failed." => "Importou {imported} contactos. Falharam {failed}.",
|
||||
"An address book called {name} already exists" => "O livro de endereços {name} já existe",
|
||||
"Failed adding address book: {error}" => "Não foi possível adicionar o livro de endereços: {error}",
|
||||
"Failed loading address books: {error}" => "Não foi possível carregar o livro de endereços: {error}",
|
||||
"Indexing contacts" => "A indexar os contactos",
|
||||
"Unrecoverable error loading address books: {msg}" => "Erro irrecuperável enquanto tentava carregar os livros de endereço: {msg}",
|
||||
"Error." => "Erro.",
|
||||
"Add to..." => "Adicionar a...",
|
||||
"Remove from..." => "Remover de...",
|
||||
@ -12,10 +17,15 @@
|
||||
"Invalid URL: \"{url}\"" => "URL inválido: \"{url}\"",
|
||||
"There was an error opening a mail composer." => "Houve um erro a abrir o editor de e-mail.",
|
||||
"Invalid email: \"{url}\"" => "Correio eletrónico inválido: \"{url}\"",
|
||||
"Merge failed. Cannot find contact: {id}" => "Falhou a junção. Não se encontrou o contacto: {id}",
|
||||
"Merge failed." => "Junção falhou.",
|
||||
"Merge failed. Error saving contact." => "Junção falhou. Erro ao guardar contacto.",
|
||||
"Select photo" => "Selecione uma fotografia",
|
||||
"Network or server error. Please inform administrator." => "Erro de rede ou do servidor. Por favor, informe o administrador.",
|
||||
"Error adding to group." => "Erro a adicionar ao grupo.",
|
||||
"Error removing from group." => "Erro a remover do grupo.",
|
||||
"Error setting {name} as favorite." => "Erro ao marcar {name} como favorito.",
|
||||
"Merge contacts" => "Juntar contactos",
|
||||
"Cancel" => "Cancelar",
|
||||
"Add group" => "Adicionar grupo",
|
||||
"OK" => "OK",
|
||||
@ -34,12 +44,15 @@
|
||||
"Couldn't get contact list." => "Não foi possível ler a lista de contactos",
|
||||
"Contact is not in this group." => "O contacto não está neste grupo",
|
||||
"Contacts are not in this group." => "Os contactos não estão neste grupo",
|
||||
"Failed renaming group: {error}" => "Erro ao tentar renomear o grupo: {error}",
|
||||
"A group named {group} already exists" => "Um grupo com o nome {group} já existe",
|
||||
"You can drag groups to\narrange them as you like." => "Pode arrastar grupos para\ncolocá-los como desejar.",
|
||||
"Failed adding group: {error}" => "Erro ao adicionar o grupo: {error}",
|
||||
"All" => "Todos",
|
||||
"Favorites" => "Favoritos",
|
||||
"Shared by {owner}" => "Partilhado por {owner}",
|
||||
"Not grouped" => "Não agrupados",
|
||||
"Failed loading groups: {error}" => "Erro ao carregar grupos: {error}",
|
||||
"Please choose the addressbook" => "Por favor seleccione o livro de endereços",
|
||||
"Import" => "Importar",
|
||||
"Import done" => "Importação terminada",
|
||||
@ -53,19 +66,32 @@
|
||||
"Delete" => "Eliminar",
|
||||
"More..." => "Mais...",
|
||||
"Less..." => "Menos...",
|
||||
"Server error! Please inform system administator" => "Erro no servidor! Por favor informe o Administrador do Sistema",
|
||||
"Failed loading photo: {error}" => "Erro ao carregar fotografia: {error}",
|
||||
"You do not have permissions to see this contacts" => "Não tem permissões para ver este contacto",
|
||||
"Contact not found" => "Contacto não encontrado",
|
||||
"You do not have permissions to see these contacts" => "Não tem permissões para ver estes contactos",
|
||||
"You do not have permissions add contacts to the address book" => "Não tem permissões para adicionar contactos ao livro de endereços",
|
||||
"The backend for this address book does not support adding contacts" => "O bastidor para este livro de endereços não suporta o adicionar de contactos",
|
||||
"You do not have permissions to delete this contact" => "Não tem permissões para apagar este contacto.",
|
||||
"The backend for this address book does not support deleting contacts" => "O bastidor para este livro de endereços não suporta o apagar de contactos",
|
||||
"Unknown error" => "Erro Desconhecido",
|
||||
"You don't have permissions to delete the address book." => "Não tem permissões para apagar este livro de endereços.",
|
||||
"Address book not found" => "Nenhum livro de endereços encontrado.",
|
||||
"You do not have permissions to see this contact" => "Não tem permissões para ver este contacto",
|
||||
"Property not found" => "Propriedade não encontrada",
|
||||
" Missing IM parameter for: " => "Falta o parâmetro de mensagens instantâneas para:",
|
||||
"Unknown IM: " => "Mensagens instantâneas desconhecida (IM)",
|
||||
"{name}'s Birthday" => "Aniversário de {name}",
|
||||
"Error creating address book" => "Erro ao criar livro de endereços",
|
||||
"Error creating contact." => "Erro a criar contacto.",
|
||||
"Error deleting contact." => "Erro ao apagar contacto.",
|
||||
"Error retrieving contact." => "Erro a guardar contacto.",
|
||||
"Error saving contact." => "Erro a guardar o contacto.",
|
||||
"Couldn't find contact." => "Não é possível encontrar o contacto.",
|
||||
"Property name is not set." => "O nome da propriedade não está definido,",
|
||||
"Information about vCard is incorrect. Please reload the page." => "A informação sobre o vCard está incorreta. Por favor recarregue a página",
|
||||
"Error updating contact" => "Erro ao actualizar o contacto",
|
||||
"No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido",
|
||||
"There is no error, the file uploaded with success" => "Não ocorreram erros, o ficheiro foi submetido com sucesso",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "O ficheiro enviado excede a directiva upload_max_filesize no php. ini\n ",
|
||||
@ -123,6 +149,9 @@
|
||||
"Group name" => "Grupo",
|
||||
"New Group" => "Novo Grupo",
|
||||
"Address books" => "Livro de endereços",
|
||||
"Display name" => "Mostrar nome",
|
||||
"Add Address Book" => "Adicionar Livro de Endereços",
|
||||
"Select file..." => "Seleccionar ficheiro...",
|
||||
"(De-)select all" => "(Des)seleccionar todos",
|
||||
"Groups" => "Grupos",
|
||||
"Favorite" => "Favorito",
|
||||
@ -148,9 +177,11 @@
|
||||
"First name" => "Primeiro Nome",
|
||||
"Additional names" => "Nomes adicionais",
|
||||
"Last name" => "Ultimo Nome",
|
||||
"Select groups" => "Seleccionar grupos",
|
||||
"Nickname" => "Alcunha",
|
||||
"Enter nickname" => "Introduza alcunha",
|
||||
"Title" => "Título ",
|
||||
"Enter title" => "Introduza o título",
|
||||
"Organization" => "Organização",
|
||||
"Birthday" => "Aniversário",
|
||||
"Notes go here..." => "As notas ficam aqui:",
|
||||
|
@ -3,8 +3,10 @@
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Translators:
|
||||
# carlosamp <carlos.am.pereira@hotmail.com>, 2013
|
||||
# Mouxy <daniel@mouxy.net>, 2012-2013
|
||||
# Mouxy <daniel@mouxy.net>, 2013
|
||||
# Duarte Velez Grilo <duartegrilo@gmail.com>, 2013
|
||||
# Duarte Velez Grilo <duartegrilo@gmail.com>, 2012
|
||||
# moura232 <moura232@gmail.com>, 2013
|
||||
# rlameiro <geral@ricardolameiro.pt>, 2012
|
||||
@ -17,9 +19,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-18 09:30+0000\n"
|
||||
"Last-Translator: carlosamp <carlos.am.pereira@hotmail.com>\n"
|
||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -27,7 +29,7 @@ msgstr ""
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Contactos"
|
||||
|
||||
@ -53,19 +55,19 @@ msgstr "Importado {contagem} de {totais} contactos"
|
||||
|
||||
#: js/addressbooks.js:394
|
||||
msgid "Imported {imported} contacts. {failed} failed."
|
||||
msgstr ""
|
||||
msgstr "Importou {imported} contactos. Falharam {failed}."
|
||||
|
||||
#: js/addressbooks.js:550
|
||||
msgid "An address book called {name} already exists"
|
||||
msgstr ""
|
||||
msgstr "O livro de endereços {name} já existe"
|
||||
|
||||
#: js/addressbooks.js:584
|
||||
msgid "Failed adding address book: {error}"
|
||||
msgstr ""
|
||||
msgstr "Não foi possível adicionar o livro de endereços: {error}"
|
||||
|
||||
#: js/addressbooks.js:626
|
||||
msgid "Failed loading address books: {error}"
|
||||
msgstr ""
|
||||
msgstr "Não foi possível carregar o livro de endereços: {error}"
|
||||
|
||||
#: js/app.js:215
|
||||
msgid "Indexing contacts"
|
||||
@ -73,7 +75,7 @@ msgstr "A indexar os contactos"
|
||||
|
||||
#: js/app.js:225
|
||||
msgid "Unrecoverable error loading address books: {msg}"
|
||||
msgstr ""
|
||||
msgstr "Erro irrecuperável enquanto tentava carregar os livros de endereço: {msg}"
|
||||
|
||||
#: js/app.js:226
|
||||
msgid "Error."
|
||||
@ -105,72 +107,72 @@ msgstr "Correio eletrónico inválido: \"{url}\""
|
||||
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
msgstr "Falhou a junção. Não se encontrou o contacto: {id}"
|
||||
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
msgstr "Junção falhou."
|
||||
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
msgstr "Junção falhou. Erro ao guardar contacto."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Selecione uma fotografia"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Erro de rede ou do servidor. Por favor, informe o administrador."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Erro a adicionar ao grupo."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Erro a remover do grupo."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
msgstr "Erro ao marcar {name} como favorito."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
msgstr "Juntar contactos"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Adicionar grupo"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Não foi possível encontrar o contacto: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Nenhum ficheiro selecionado para enviar."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "O tamanho do ficheiro que está a tentar carregar ultrapassa o limite máximo definido para ficheiros no servidor."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Editar a fotografia de perfil."
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Cortar foto"
|
||||
|
||||
@ -178,33 +180,33 @@ msgstr "Cortar foto"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Isto está correcto?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# grupos"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Alguns contactos forma marcados para apagar, mas ainda não foram apagados. Por favor espere que ele sejam apagados."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Clique para desfazer a eliminar de {num} contactos"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Adicionar"
|
||||
|
||||
@ -230,7 +232,7 @@ msgstr "Os contactos não estão neste grupo"
|
||||
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
msgstr "Erro ao tentar renomear o grupo: {error}"
|
||||
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
@ -244,7 +246,7 @@ msgstr "Pode arrastar grupos para\ncolocá-los como desejar."
|
||||
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
msgstr "Erro ao adicionar o grupo: {error}"
|
||||
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
@ -264,7 +266,7 @@ msgstr "Não agrupados"
|
||||
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
msgstr "Erro ao carregar grupos: {error}"
|
||||
|
||||
#: js/loader.js:21
|
||||
msgid "Please choose the addressbook"
|
||||
@ -335,13 +337,13 @@ msgstr "Mais..."
|
||||
msgid "Less..."
|
||||
msgstr "Menos..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
msgstr "Erro no servidor! Por favor informe o Administrador do Sistema"
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
msgstr ""
|
||||
msgstr "Erro ao carregar fotografia: {error}"
|
||||
|
||||
#: lib/addressbook.php:152
|
||||
msgid "You do not have permissions to see this contacts"
|
||||
@ -357,19 +359,19 @@ msgstr "Não tem permissões para ver estes contactos"
|
||||
|
||||
#: lib/addressbook.php:213
|
||||
msgid "You do not have permissions add contacts to the address book"
|
||||
msgstr ""
|
||||
msgstr "Não tem permissões para adicionar contactos ao livro de endereços"
|
||||
|
||||
#: lib/addressbook.php:216
|
||||
msgid "The backend for this address book does not support adding contacts"
|
||||
msgstr ""
|
||||
msgstr "O bastidor para este livro de endereços não suporta o adicionar de contactos"
|
||||
|
||||
#: lib/addressbook.php:240 lib/addressbook.php:266 lib/contact.php:248
|
||||
msgid "You do not have permissions to delete this contact"
|
||||
msgstr ""
|
||||
msgstr "Não tem permissões para apagar este contacto."
|
||||
|
||||
#: lib/addressbook.php:243 lib/addressbook.php:269
|
||||
msgid "The backend for this address book does not support deleting contacts"
|
||||
msgstr ""
|
||||
msgstr "O bastidor para este livro de endereços não suporta o apagar de contactos"
|
||||
|
||||
#: lib/addressbook.php:290
|
||||
msgid "Unknown error"
|
||||
@ -385,15 +387,15 @@ msgstr ""
|
||||
|
||||
#: lib/addressbook.php:369
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
msgstr "Não tem permissões para apagar este livro de endereços."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Nenhum livro de endereços encontrado."
|
||||
|
||||
#: lib/contact.php:114 lib/contact.php:161
|
||||
msgid "You do not have permissions to see this contact"
|
||||
msgstr ""
|
||||
msgstr "Não tem permissões para ver este contacto"
|
||||
|
||||
#: lib/contact.php:263
|
||||
msgid "You do not have permissions to update this contact"
|
||||
@ -409,11 +411,11 @@ msgstr ""
|
||||
|
||||
#: lib/contact.php:402 lib/contact.php:419
|
||||
msgid "Property not found"
|
||||
msgstr ""
|
||||
msgstr "Propriedade não encontrada"
|
||||
|
||||
#: lib/contact.php:467
|
||||
msgid " Missing IM parameter for: "
|
||||
msgstr ""
|
||||
msgstr "Falta o parâmetro de mensagens instantâneas para:"
|
||||
|
||||
#: lib/contact.php:475
|
||||
msgid "Unknown IM: "
|
||||
@ -425,76 +427,80 @@ msgstr "Aniversário de {name}"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:110
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
msgstr "Erro ao criar livro de endereços"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Erro a criar contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Erro ao apagar contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Erro a guardar contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Erro a guardar o contacto."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Não é possível encontrar o contacto."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
msgstr "O nome da propriedade não está definido,"
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "A informação sobre o vCard está incorreta. Por favor recarregue a página"
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
msgstr "Erro ao actualizar o contacto"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -557,27 +563,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Ficheiro não existe:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Erro a carregar a imagem."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Erro a criar a imagem temporária"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Erro a recorar a imagem"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Erro a redimensionar a imagem"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Erro a obter a propriedade Foto"
|
||||
|
||||
@ -803,15 +809,15 @@ msgstr "Livro de endereços"
|
||||
#: templates/contacts.php:22 templates/contacts.php:47
|
||||
#: templates/contacts.php:67
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
msgstr "Mostrar nome"
|
||||
|
||||
#: templates/contacts.php:22
|
||||
msgid "Add Address Book"
|
||||
msgstr ""
|
||||
msgstr "Adicionar Livro de Endereços"
|
||||
|
||||
#: templates/contacts.php:31 templates/contacts.php:32
|
||||
msgid "Select file..."
|
||||
msgstr ""
|
||||
msgstr "Seleccionar ficheiro..."
|
||||
|
||||
#: templates/contacts.php:45 templates/contacts.php:65
|
||||
msgid "(De-)select all"
|
||||
@ -950,7 +956,7 @@ msgstr "Ultimo Nome"
|
||||
|
||||
#: templates/contacts.php:257
|
||||
msgid "Select groups"
|
||||
msgstr ""
|
||||
msgstr "Seleccionar grupos"
|
||||
|
||||
#: templates/contacts.php:260
|
||||
msgid "Select address book"
|
||||
@ -970,7 +976,7 @@ msgstr "Título "
|
||||
|
||||
#: templates/contacts.php:274
|
||||
msgid "Enter title"
|
||||
msgstr ""
|
||||
msgstr "Introduza o título"
|
||||
|
||||
#: templates/contacts.php:278 templates/contacts.php:326
|
||||
msgid "Organization"
|
||||
@ -992,6 +998,10 @@ msgstr "As notas ficam aqui:"
|
||||
msgid "Export as VCF"
|
||||
msgstr "Exportar como VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefone"
|
||||
|
@ -12,8 +12,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -22,7 +22,7 @@ msgstr ""
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Contacte"
|
||||
|
||||
@ -110,62 +110,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Anulare"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -173,33 +173,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Adaugă"
|
||||
|
||||
@ -382,7 +382,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -422,74 +422,78 @@ msgstr "Ziua de naștere a {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "eroare in salvarea contactului"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informațiile cărții de vizită sunt incorecte. Te rog reîncarcă pagina."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -552,27 +556,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Fișierul nu există:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Eroare la încărcarea imaginii."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "eroare la alegerea imaginii temporare"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "eroare la alegerea imaginii"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "eroare la redimensionarea imaginii"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "eroare in gasirea proprietatilor fotografiei"
|
||||
|
||||
@ -987,6 +991,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -30,9 +30,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 14:10+0000\n"
|
||||
"Last-Translator: jekader <jekader@gmail.com>\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -40,7 +40,7 @@ msgstr ""
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Контакты"
|
||||
|
||||
@ -128,62 +128,62 @@ msgstr "Объединение не удалось."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Объединение не удалось. Ошибка сохранения контакта."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Выберите фото"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Ошибка сети или сервера. Пожалуйста, сообщите администратору."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Ошибка добавления в группу."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Ошибка удаления из группы."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Ошибка установки {name} избранным."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Объединить контакты"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Отменить"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Добавить группу"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "ОК"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Не удалось найти контакт: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Нет выбранных файлов для загрузки."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Файл, который вы пытаетесь загрузить превышать максимальный размер загружаемых файлов на этом сервере."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Редактировать изображение профиля"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr "Обрезать фото"
|
||||
|
||||
@ -191,33 +191,33 @@ msgstr "Обрезать фото"
|
||||
msgid "Is this correct?"
|
||||
msgstr "Это верно?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Ошибка формата даты: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# группы"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr "Ошибка добавления дня рождения {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Некоторые контакты помечены на удаление, но ещё не удалены. Подождите, пока они удаляются."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Нажмите для отмены удаления {num} контактов"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr "Отмена удаления {num} контактов"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Добавить"
|
||||
|
||||
@ -400,7 +400,7 @@ msgstr "У Вас нет разрешений обновлять эту адре
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "У Вас нет разрешений удалять эту адресную книгу."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Адресная книга не найдена"
|
||||
|
||||
@ -440,74 +440,78 @@ msgstr "День рождения {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Ошибка создания адресной книги"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Ошибка обновления адресной книги"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "У вас нет прав удалять адресную книгу \"%s\""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Ошибка удаления адресной книги"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Ошибка создания контакта."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Ошибка удаления контакта."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Ошибка получения контакта."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Ошибка при сохранении контактов."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Ошибка удаления контакта из другой адресной книги."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Не удалось найти контакт."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Ошибка объединения в контакт."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Ошибка сохранения контакта в бэкенд."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Не установлено имя свойства."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Не установлена контрольная сумма свойства."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Информация о vCard некорректна. Пожалуйста, обновите страницу."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr "Ошибка при обновлении контакта"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr "Ошибка сохранения контакта в бэкенд"
|
||||
|
||||
@ -570,27 +574,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Файл не существует:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Ошибка загрузки картинки."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr "Изображение удалено из кеша"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Ошибка создания временных изображений"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Ошибка обрезки изображений"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Ошибка изменения размера изображений"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Ошибка при получении ФОТО."
|
||||
|
||||
@ -1005,6 +1009,10 @@ msgstr "Здесь будут заметки..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Экспорт в VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Телефон"
|
||||
|
@ -1,3 +1,8 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Title" => "Название"
|
||||
"Contacts" => "Контакты",
|
||||
"Cancel" => "Отмена",
|
||||
"OK" => "OK",
|
||||
"Error" => "Ошибка",
|
||||
"Download" => "Загрузка",
|
||||
"Share" => "Сделать общим"
|
||||
);
|
||||
|
@ -9,9 +9,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-06-04 01:04+0200\n"
|
||||
"PO-Revision-Date: 2013-06-03 23:04+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-18 09:30+0000\n"
|
||||
"Last-Translator: masensio <masensio@solidgear.es>\n"
|
||||
"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -19,176 +19,55 @@ msgstr ""
|
||||
"Language: ru_RU\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: ajax/currentphoto.php:49 ajax/savecrop.php:66
|
||||
msgid "Error getting contact object."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/currentphoto.php:53
|
||||
msgid "Error reading contact photo."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/currentphoto.php:67
|
||||
msgid "Error saving temporary file."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/currentphoto.php:70
|
||||
msgid "The loading photo is not valid."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/oc_photo.php:28
|
||||
msgid "No contact info was submitted."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/oc_photo.php:32
|
||||
msgid "No photo path was submitted."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/oc_photo.php:39
|
||||
msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/oc_photo.php:44 ajax/oc_photo.php:47
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/savecrop.php:96
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/savecrop.php:116 lib/controller/addressbookcontroller.php:251
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/savecrop.php:126
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/savecrop.php:129
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/savecrop.php:132
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/savecrop.php:135
|
||||
msgid "Error finding image: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/setpreference.php:37
|
||||
msgid "Key is not set for: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/setpreference.php:41
|
||||
msgid "Value is not set for: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/setpreference.php:53 lib/controller/settingscontroller.php:51
|
||||
msgid "Could not set preference: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:38 ajax/uploadphoto.php:80
|
||||
#: lib/controller/importcontroller.php:39
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:45 ajax/uploadphoto.php:86
|
||||
#: lib/controller/importcontroller.php:47
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:46 ajax/uploadphoto.php:87
|
||||
#: lib/controller/importcontroller.php:48
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:48 ajax/uploadphoto.php:88
|
||||
#: lib/controller/importcontroller.php:50
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:49 ajax/uploadphoto.php:89
|
||||
#: lib/controller/importcontroller.php:51
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:50 ajax/uploadphoto.php:90
|
||||
#: lib/controller/importcontroller.php:52
|
||||
msgid "No file was uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:51 ajax/uploadphoto.php:91
|
||||
#: lib/controller/importcontroller.php:53
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:52 lib/controller/importcontroller.php:54
|
||||
msgid "Failed to write to disk"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:62 lib/controller/importcontroller.php:65
|
||||
msgid "Not enough storage available"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:69
|
||||
msgid "Upload of blacklisted file:"
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadimport.php:74 lib/controller/importcontroller.php:91
|
||||
msgid "Error uploading contacts to storage."
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadphoto.php:72 ajax/uploadphoto.php:123
|
||||
msgid "Couldn't save temporary image: "
|
||||
msgstr ""
|
||||
|
||||
#: ajax/uploadphoto.php:75 ajax/uploadphoto.php:126
|
||||
msgid "Couldn't load temporary image: "
|
||||
msgstr ""
|
||||
|
||||
#: appinfo/app.php:31
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
msgstr "Контакты"
|
||||
|
||||
#: js/addressbooks.js:68 js/groups.js:507 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:235
|
||||
#: js/addressbooks.js:298
|
||||
msgid "Uploading..."
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:290
|
||||
#: js/addressbooks.js:301 js/loader.js:68
|
||||
msgid "Importing..."
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:324
|
||||
msgid "Preparing..."
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:372
|
||||
msgid "Imported {count} of {total} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:311
|
||||
#: js/addressbooks.js:394
|
||||
msgid "Imported {imported} contacts. {failed} failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:453
|
||||
#: js/addressbooks.js:550
|
||||
msgid "An address book called {name} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:482
|
||||
#: js/addressbooks.js:584
|
||||
msgid "Failed adding address book: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:518
|
||||
#: js/addressbooks.js:626
|
||||
msgid "Failed loading address books: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:213
|
||||
#: js/app.js:215
|
||||
msgid "Indexing contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:223
|
||||
#: js/app.js:225
|
||||
msgid "Unrecoverable error loading address books: {msg}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:224
|
||||
#: js/app.js:226
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
@ -204,188 +83,212 @@ msgstr ""
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:459
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:475
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:553
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:566
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:573
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:592
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:662 js/app.js:1541
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:881
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:910
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1070
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1209 js/app.js:1213 templates/contacts.php:184
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1288 js/settings.js:120 templates/contacts.php:323
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Отмена"
|
||||
|
||||
#: js/app.js:1262 templates/contacts.php:165
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1266
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1365
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1407
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1417
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1504
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1522
|
||||
msgid "Error loading profile picture."
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:582
|
||||
#: js/contacts.js:589
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1010 js/contacts.js:1052
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2079
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2090
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2105
|
||||
msgid "Cancelled deletion of {num}"
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:51 templates/contacts.php:327
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:260
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:273
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:336
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:347
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:361
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:555
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:586
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:621
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:634
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:646
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:661 js/groups.js:664
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:725
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:740
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:766
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:49
|
||||
msgid "Result: "
|
||||
#: js/loader.js:21
|
||||
msgid "Please choose the addressbook"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:49
|
||||
msgid " imported, "
|
||||
#: js/loader.js:22 templates/contacts.php:29
|
||||
msgid "Import into..."
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:49
|
||||
msgid " failed."
|
||||
#: js/loader.js:31
|
||||
msgid "Error loading import template"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:48
|
||||
msgid "Import contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:61 templates/contacts.php:25
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:92
|
||||
msgid "Import done"
|
||||
msgstr ""
|
||||
|
||||
#: js/loader.js:95 templates/contacts.php:91 templates/contacts.php:322
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:25 js/settings.js:45 js/settings.js:75 js/settings.js:112
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
msgstr "Ошибка"
|
||||
|
||||
#: js/settings.js:75
|
||||
msgid "Displayname cannot be empty."
|
||||
@ -400,18 +303,18 @@ msgid "Show read-only VCF link"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:99 templates/contacts.php:57 templates/contacts.php:78
|
||||
#: templates/contacts.php:325 templates/settings.php:40
|
||||
#: templates/contacts.php:323 templates/settings.php:40
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
msgstr "Загрузка"
|
||||
|
||||
#: js/settings.js:101 templates/contacts.php:466 templates/settings.php:45
|
||||
#: js/settings.js:101 templates/contacts.php:467 templates/settings.php:45
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: js/settings.js:102 templates/contacts.php:58 templates/contacts.php:77
|
||||
#: templates/contacts.php:270 templates/contacts.php:277
|
||||
#: templates/contacts.php:284 templates/contacts.php:291
|
||||
#: templates/contacts.php:339 templates/contacts.php:467
|
||||
#: templates/contacts.php:268 templates/contacts.php:275
|
||||
#: templates/contacts.php:282 templates/contacts.php:289
|
||||
#: templates/contacts.php:337 templates/contacts.php:468
|
||||
#: templates/settings.php:50
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
@ -424,225 +327,341 @@ msgstr ""
|
||||
msgid "Less..."
|
||||
msgstr ""
|
||||
|
||||
#: js/storage.js:258
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:135
|
||||
#: lib/addressbook.php:152
|
||||
msgid "You do not have permissions to see this contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:167
|
||||
#: lib/addressbook.php:159
|
||||
msgid "Contact not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:186
|
||||
msgid "You do not have permissions to see these contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:193
|
||||
#: lib/addressbook.php:213
|
||||
msgid "You do not have permissions add contacts to the address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:196
|
||||
#: lib/addressbook.php:216
|
||||
msgid "The backend for this address book does not support adding contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:218 lib/contact.php:244
|
||||
#: lib/addressbook.php:240 lib/addressbook.php:266 lib/contact.php:248
|
||||
msgid "You do not have permissions to delete this contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:221
|
||||
#: lib/addressbook.php:243 lib/addressbook.php:269
|
||||
msgid "The backend for this address book does not support deleting contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:258
|
||||
#: lib/addressbook.php:290
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:332
|
||||
msgid "The backend for this address book does not support updating"
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:284
|
||||
#: lib/addressbook.php:358
|
||||
msgid "You don't have permissions to update the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/addressbook.php:295
|
||||
#: lib/addressbook.php:369
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:132
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/backend/ldap.php:433
|
||||
msgid "There was an error updating the addressbook."
|
||||
msgstr ""
|
||||
|
||||
#: lib/backend/ldap.php:497
|
||||
msgid "There was an error deleting this addressbook."
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:112 lib/contact.php:159
|
||||
#: lib/contact.php:114 lib/contact.php:161
|
||||
msgid "You do not have permissions to see this contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:259
|
||||
#: lib/contact.php:263
|
||||
msgid "You do not have permissions to update this contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:270
|
||||
#: lib/contact.php:274
|
||||
msgid "The backend for this contact does not support updating it"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:288
|
||||
#: lib/contact.php:292
|
||||
msgid "This backend not support adding contacts"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:395 lib/contact.php:412
|
||||
#: lib/contact.php:402 lib/contact.php:419
|
||||
msgid "Property not found"
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:460
|
||||
#: lib/contact.php:467
|
||||
msgid " Missing IM parameter for: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/contact.php:468
|
||||
#: lib/contact.php:475
|
||||
msgid "Unknown IM: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:122
|
||||
#: lib/contact.php:788
|
||||
msgid "{name}'s Birthday"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:110
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:144
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:188
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:222
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:245
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:256
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:42
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
#: lib/controller/contactcontroller.php:92
|
||||
#: lib/controller/contactcontroller.php:128
|
||||
#: lib/controller/contactcontroller.php:187
|
||||
#: lib/controller/contactcontroller.php:250
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:101
|
||||
#: lib/controller/contactcontroller.php:209
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:191
|
||||
#: lib/controller/contactcontroller.php:254
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:195
|
||||
#: lib/controller/contactcontroller.php:258
|
||||
#: lib/controller/contactcontroller.php:268
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:202
|
||||
#: lib/controller/contactcontroller.php:275
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:280
|
||||
msgid "Error setting property"
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:284
|
||||
msgid "Error saving property to backend"
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:60 lib/controller/groupcontroller.php:84
|
||||
#: lib/controller/contactphotocontroller.php:69
|
||||
msgid "Error getting user photo"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:87
|
||||
#: lib/controller/importcontroller.php:36
|
||||
msgid "No file was uploaded. Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:95
|
||||
#: lib/controller/importcontroller.php:44
|
||||
msgid "There is no error, the file uploaded with success"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:96
|
||||
#: lib/controller/importcontroller.php:45
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:97
|
||||
#: lib/controller/importcontroller.php:47
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:98
|
||||
#: lib/controller/importcontroller.php:48
|
||||
msgid "The uploaded file was only partially uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:99
|
||||
#: lib/controller/importcontroller.php:49
|
||||
msgid "No file was uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:100
|
||||
#: lib/controller/importcontroller.php:50
|
||||
msgid "Missing a temporary folder"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:115
|
||||
msgid "Couldn't load temporary image: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:124
|
||||
#: lib/controller/contactphotocontroller.php:159
|
||||
msgid "Couldn't save temporary image: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:188
|
||||
msgid "No photo path was submitted."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:195
|
||||
msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:57 lib/controller/groupcontroller.php:79
|
||||
msgid "No group name given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:67
|
||||
#: lib/controller/groupcontroller.php:64
|
||||
msgid "Error adding group."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:104
|
||||
#: lib/controller/groupcontroller.php:127
|
||||
msgid "No group name to rename from given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:108
|
||||
#: lib/controller/groupcontroller.php:131
|
||||
msgid "No group name to rename to given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:114
|
||||
#: lib/controller/groupcontroller.php:137
|
||||
msgid "Error renaming group."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:151
|
||||
#: lib/controller/groupcontroller.php:202
|
||||
#: lib/controller/groupcontroller.php:175
|
||||
#: lib/controller/groupcontroller.php:223
|
||||
msgid "Group ID missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:156
|
||||
#: lib/controller/groupcontroller.php:180
|
||||
msgid "Group name missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/groupcontroller.php:161
|
||||
#: lib/controller/groupcontroller.php:207
|
||||
#: lib/controller/groupcontroller.php:185
|
||||
#: lib/controller/groupcontroller.php:228
|
||||
msgid "Contact ID missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:73
|
||||
#: lib/controller/importcontroller.php:51
|
||||
msgid "Failed to write to disk"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:62
|
||||
msgid "Not enough storage available"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:70
|
||||
msgid "Attempt to upload blacklisted file:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:115
|
||||
#: lib/controller/importcontroller.php:92
|
||||
msgid "Error uploading contacts to storage."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:137
|
||||
msgid "Error moving file to imports folder."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:154
|
||||
msgid "You do not have permissions to import into this address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:123
|
||||
#: lib/controller/importcontroller.php:162
|
||||
msgid "File name missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:128
|
||||
#: lib/controller/importcontroller.php:234
|
||||
#: lib/controller/importcontroller.php:167
|
||||
#: lib/controller/importcontroller.php:283
|
||||
msgid "Progress key missing from request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:134
|
||||
#: lib/controller/importcontroller.php:173
|
||||
msgid "Attempt to access blacklisted file:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/importcontroller.php:173
|
||||
#: lib/controller/importcontroller.php:215
|
||||
msgid "No contacts found in: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/settingscontroller.php:36
|
||||
#: lib/controller/settingscontroller.php:35
|
||||
msgid "No key is given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/settingscontroller.php:40
|
||||
#: lib/controller/settingscontroller.php:39
|
||||
msgid "No value is given."
|
||||
msgstr ""
|
||||
|
||||
#: lib/hooks.php:214
|
||||
msgid "{name}'s Birthday"
|
||||
#: lib/controller/settingscontroller.php:50
|
||||
msgid "Could not set preference: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/searchprovider.php:24
|
||||
@ -786,14 +805,6 @@ msgstr ""
|
||||
msgid "Add Address Book"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:25 templates/contacts.php:127
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:29
|
||||
msgid "Import into..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:31 templates/contacts.php:32
|
||||
msgid "Select file..."
|
||||
msgstr ""
|
||||
@ -826,10 +837,6 @@ msgstr ""
|
||||
msgid "Merge selected"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:91 templates/contacts.php:324
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:92
|
||||
msgid "Keyboard shortcuts"
|
||||
msgstr ""
|
||||
@ -878,184 +885,189 @@ msgstr ""
|
||||
msgid "Delete current contact"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:123
|
||||
#: templates/contacts.php:124
|
||||
msgid ""
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>Add a new contact or "
|
||||
"import existing contacts from a VCF file.</p>"
|
||||
"<h3>You have no contacts in your address book or your address book is "
|
||||
"disabled.</h3><p>Add a new contact or import existing contacts from a VCF "
|
||||
"file.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:126
|
||||
#: templates/contacts.php:127
|
||||
msgid "Add contact"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:176
|
||||
#: templates/contacts.php:174
|
||||
msgid "Delete group"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:177
|
||||
#: templates/contacts.php:175
|
||||
msgid "Rename group"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:185
|
||||
#: templates/contacts.php:183
|
||||
msgid "Which contact should the data be merged into?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:193
|
||||
#: templates/contacts.php:191
|
||||
msgid "Delete the other(s) after successful merge?"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:205
|
||||
#: templates/contacts.php:203
|
||||
msgid "Compose mail"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:227
|
||||
#: templates/contacts.php:225
|
||||
msgid "Delete current photo"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:228
|
||||
#: templates/contacts.php:226
|
||||
msgid "Edit current photo"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:229
|
||||
#: templates/contacts.php:227
|
||||
msgid "Upload new photo"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:230
|
||||
#: templates/contacts.php:228
|
||||
msgid "Select photo from ownCloud"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:241 templates/contacts.php:242
|
||||
#: templates/contacts.php:239 templates/contacts.php:240
|
||||
msgid "First name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:246 templates/contacts.php:247
|
||||
#: templates/contacts.php:244 templates/contacts.php:245
|
||||
msgid "Additional names"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:251 templates/contacts.php:252
|
||||
#: templates/contacts.php:249 templates/contacts.php:250
|
||||
msgid "Last name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:259
|
||||
#: templates/contacts.php:257
|
||||
msgid "Select groups"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:262
|
||||
#: templates/contacts.php:260
|
||||
msgid "Select address book"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:266 templates/contacts.php:330
|
||||
#: templates/contacts.php:264 templates/contacts.php:328
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:269
|
||||
#: templates/contacts.php:267
|
||||
msgid "Enter nickname"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:273 templates/contacts.php:329
|
||||
#: templates/contacts.php:271 templates/contacts.php:327
|
||||
msgid "Title"
|
||||
msgstr "Название"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:276
|
||||
#: templates/contacts.php:274
|
||||
msgid "Enter title"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:280 templates/contacts.php:328
|
||||
#: templates/contacts.php:278 templates/contacts.php:326
|
||||
msgid "Organization"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:283
|
||||
#: templates/contacts.php:281
|
||||
msgid "Enter organization"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:287 templates/contacts.php:331
|
||||
#: templates/contacts.php:285 templates/contacts.php:329
|
||||
msgid "Birthday"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:318
|
||||
#: templates/contacts.php:316
|
||||
msgid "Notes go here..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
#: templates/contacts.php:323
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:332
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:333
|
||||
#: templates/contacts.php:331
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:334
|
||||
#: templates/contacts.php:332
|
||||
msgid "Instant Messaging"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:335
|
||||
#: templates/contacts.php:333
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:336
|
||||
#: templates/contacts.php:334
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:337
|
||||
#: templates/contacts.php:335
|
||||
msgid "Web site"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:339
|
||||
#: templates/contacts.php:337
|
||||
msgid "Delete contact"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:352 templates/contacts.php:367
|
||||
#: templates/contacts.php:381 templates/contacts.php:406
|
||||
#: templates/contacts.php:351 templates/contacts.php:366
|
||||
#: templates/contacts.php:380 templates/contacts.php:405
|
||||
#: templates/contacts.php:443
|
||||
msgid "Preferred"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:354
|
||||
#: templates/contacts.php:353
|
||||
msgid "Please specify a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:354
|
||||
#: templates/contacts.php:353
|
||||
msgid "someone@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:356
|
||||
#: templates/contacts.php:355
|
||||
msgid "Mail to address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:357
|
||||
#: templates/contacts.php:356
|
||||
msgid "Delete email address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:369
|
||||
#: templates/contacts.php:368
|
||||
msgid "Enter phone number"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:371
|
||||
#: templates/contacts.php:370
|
||||
msgid "Delete phone number"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:385
|
||||
#: templates/contacts.php:384
|
||||
msgid "Go to web site"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:386
|
||||
#: templates/contacts.php:385
|
||||
msgid "Delete URL"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:397
|
||||
#: templates/contacts.php:396
|
||||
msgid "View on map"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:398
|
||||
#: templates/contacts.php:397
|
||||
msgid "Delete address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:410
|
||||
msgid "1 Main Street"
|
||||
msgid "1600 Pennsylvania Avenue, NW"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:411
|
||||
@ -1063,7 +1075,7 @@ msgid "Street address"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:415
|
||||
msgid "12345"
|
||||
msgid "20500"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:416
|
||||
@ -1071,7 +1083,7 @@ msgid "Postal code"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:418
|
||||
msgid "Your city"
|
||||
msgid "Washington, DC"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:419
|
||||
@ -1079,7 +1091,7 @@ msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:423
|
||||
msgid "Some region"
|
||||
msgid "District of Columbia"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:424
|
||||
@ -1087,7 +1099,7 @@ msgid "State or province"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:428
|
||||
msgid "Your country"
|
||||
msgid "USA"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:429
|
||||
@ -1102,22 +1114,22 @@ msgstr ""
|
||||
msgid "Delete IM"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:463 templates/settings.php:36
|
||||
msgid "Share"
|
||||
#: templates/contacts.php:461
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:464
|
||||
#: templates/contacts.php:464 templates/settings.php:36
|
||||
msgid "Share"
|
||||
msgstr "Сделать общим"
|
||||
|
||||
#: templates/contacts.php:465
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:465
|
||||
#: templates/contacts.php:466
|
||||
msgid "CardDAV link"
|
||||
msgstr ""
|
||||
|
||||
#: templates/part.cropphoto.php:31
|
||||
msgid "The temporary image has been removed from cache."
|
||||
msgstr ""
|
||||
|
||||
#: templates/settings.php:3
|
||||
msgid "CardDAV syncing addresses"
|
||||
msgstr ""
|
||||
|
@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
"Language: si_LK\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "සබඳතා"
|
||||
|
||||
@ -108,62 +108,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "එපා"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "හරි"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "උඩුගත කිරීමට ගොනු තෝරා නැත"
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනුව, සේවාදායකයාට උඩුගත කළ හැකි උපරිම ගොනු විශාලත්වයට වඩා වැඩිය"
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -171,33 +171,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "සමහර සම්බන්ධතා මකන ලෙස ලකුණු කොට ඇත. කරුණාකර ඒවා මැකෙන තෙක් සිටින්න"
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "එකතු කරන්න"
|
||||
|
||||
@ -380,7 +380,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -420,74 +420,78 @@ msgstr "{name}ගේ උපන්දිනය"
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "සම්බන්ධතාව සුරැකිමේදී දෝෂයක්"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "vCard පිළිබඳ තොරතුරු අසත්යයි. කරුණාකර පිටුව නැවත බාගත කරන්න."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -550,27 +554,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "ගොනුව නොපවතී"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "රූපය පූරණය දෝෂ සහිතයි."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "තාවකාලික ඡායාරූපයක් තැනීමේ දෝෂයක්"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -985,6 +989,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "දුරකථන"
|
||||
|
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-03 07:10-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 11:10+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,11 +17,11 @@ msgstr ""
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: appinfo/app.php:29
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/addressbooks.js:83 js/groups.js:517 templates/settings.php:61
|
||||
#: js/addressbooks.js:83 js/groups.js:518 templates/settings.php:61
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
@ -69,98 +69,98 @@ msgstr ""
|
||||
msgid "Error."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:319 js/app.js:333
|
||||
#: js/app.js:317 js/app.js:331
|
||||
msgid "Add to..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:323 js/app.js:335
|
||||
#: js/app.js:321 js/app.js:333
|
||||
msgid "Remove from..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:340
|
||||
#: js/app.js:338
|
||||
msgid "Add group..."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:470
|
||||
#: js/app.js:468
|
||||
msgid "Invalid URL: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:481
|
||||
#: js/app.js:479
|
||||
msgid "There was an error opening a mail composer."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:486
|
||||
#: js/app.js:484
|
||||
msgid "Invalid email: \"{url}\""
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:564
|
||||
#: js/app.js:562
|
||||
msgid "Merge failed. Cannot find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:577
|
||||
#: js/app.js:575
|
||||
msgid "Merge failed."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:584
|
||||
#: js/app.js:582
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:603
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:679 js/app.js:1590
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:895
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:918
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1096
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1235 js/app.js:1239 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1261 js/app.js:1314 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1288 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1292
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1392
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1438
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1448
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1548
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1552
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -168,91 +168,91 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:262
|
||||
#: js/groups.js:263
|
||||
msgid "Contact is already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:275
|
||||
#: js/groups.js:276
|
||||
msgid "Contacts are already in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:341
|
||||
#: js/groups.js:342
|
||||
msgid "Couldn't get contact list."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:352
|
||||
#: js/groups.js:353
|
||||
msgid "Contact is not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:366
|
||||
#: js/groups.js:367
|
||||
msgid "Contacts are not in this group."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:565
|
||||
#: js/groups.js:566
|
||||
msgid "Failed renaming group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:596
|
||||
#: js/groups.js:597
|
||||
msgid "A group named {group} already exists"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:631
|
||||
#: js/groups.js:632
|
||||
msgid ""
|
||||
"You can drag groups to\n"
|
||||
"arrange them as you like."
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:644
|
||||
#: js/groups.js:645
|
||||
msgid "Failed adding group: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:656
|
||||
#: js/groups.js:657
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:671 js/groups.js:674
|
||||
#: js/groups.js:672 js/groups.js:675
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:735
|
||||
#: js/groups.js:736
|
||||
msgid "Shared by {owner}"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:750
|
||||
#: js/groups.js:751
|
||||
msgid "Not grouped"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:776
|
||||
#: js/groups.js:777
|
||||
msgid "Failed loading groups: {error}"
|
||||
msgstr ""
|
||||
|
||||
@ -377,7 +377,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -417,74 +417,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -547,27 +551,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -982,6 +986,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -3,6 +3,7 @@
|
||||
"Save" => "Uložiť",
|
||||
"Uploading..." => "Nahrávam...",
|
||||
"Importing..." => "Importujem...",
|
||||
"Preparing..." => "Pripravujem...",
|
||||
"Imported {count} of {total} contacts" => "Naimportovaných {count} z celkovo {total} kontaktov",
|
||||
"Imported {imported} contacts. {failed} failed." => "Naimportovaných {imported} kontaktov. {failed} zlyhalo.",
|
||||
"An address book called {name} already exists" => "Adresár s názvom {name} už existuje",
|
||||
@ -33,11 +34,14 @@
|
||||
"No files selected for upload." => "Žiadne súbory neboli vybrané k nahratiu",
|
||||
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Súbor, ktorý sa pokúšate nahrať, presahuje maximálnu povolenú veľkosť.",
|
||||
"Edit profile picture" => "Upraviť profilový avatar",
|
||||
"Crop photo" => "Orezať fotku",
|
||||
"Is this correct?" => "Je to správne?",
|
||||
"Error parsing date: {date}" => "Chyba pri parsovaní dátumu: {date}",
|
||||
"# groups" => "# skupiny",
|
||||
"Error parsing birthday {bday}: {error}" => "Chyba parsovania narodenín {bday}: {error}",
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Počkajte prosím do skončenia mazania kontaktov označených na mazanie.",
|
||||
"Click to undo deletion of {num} contacts" => "Kliknite pre odvrátenie operácie zmazania {num} kontaktov.",
|
||||
"Cancelled deletion of {num} contacts" => "Zrušené vymazanie {num} kontaktov",
|
||||
"Add" => "Pridať",
|
||||
"Contact is already in this group." => "Kontakt sa už nachádza v danej skupine.",
|
||||
"Contacts are already in this group." => "Kontakty sa už nachádzajú v danej skupine.",
|
||||
@ -55,6 +59,8 @@
|
||||
"Failed loading groups: {error}" => "Načítanie skupín sa nepodarilo: {error}",
|
||||
"Please choose the addressbook" => "Prosím zvolte adresár",
|
||||
"Import into..." => "Import z...",
|
||||
"Error loading import template" => "Chyba pri nahrávaní šablóny importu",
|
||||
"Import contacts" => "Importovať kontakty",
|
||||
"Import" => "Import",
|
||||
"Import done" => "Import ukončený",
|
||||
"Close" => "Zavrieť",
|
||||
@ -67,6 +73,7 @@
|
||||
"Delete" => "Zmazať",
|
||||
"More..." => "Viac...",
|
||||
"Less..." => "Menej...",
|
||||
"Server error! Please inform system administator" => "Chyba servera! Informujte vášho administrátora",
|
||||
"Failed loading photo: {error}" => "Načítanie fotografie sa nepodarilo: {error}",
|
||||
"You do not have permissions to see this contacts" => "Nemáte oprávnenie na prezeranie týchto kontaktov",
|
||||
"Contact not found" => "Kontakt nenájdený",
|
||||
@ -98,11 +105,15 @@
|
||||
"Error saving contact." => "Chyba počas ukladania kontaktu.",
|
||||
"Error removing contact from other address book." => "Chyba pri vymazávaní kontaktu z iného adresára.",
|
||||
"Couldn't find contact." => "Kontakt sa nenašiel.",
|
||||
"No contact data in request." => "Neobsahuje požadované kontaktné údaje.",
|
||||
"Error merging into contact." => "Chyba pri zlučovaní do kontaktu.",
|
||||
"Error saving contact to backend." => "Chyba pri ukladaní kontaktu do úložiska.",
|
||||
"Property name is not set." => "Údaj Meno nie je nastavené.",
|
||||
"Property checksum is not set." => "Údaj Kontrolný súčet nie je nastavený.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "Informácie o vCard sú neplatné. Prosím obnovte stránku.",
|
||||
"Error updating contact" => "Chyba pri ukladaní zmien kontaktu",
|
||||
"Error saving contact to backend" => "Chyba pri zápise kontaktu do úložiska",
|
||||
"Error getting user photo" => "Chyba pri získavaní používateľovej fotky",
|
||||
"No file was uploaded. Unknown error" => "Žiaden súbor nebol odoslaný. Neznáma chyba",
|
||||
"There is no error, the file uploaded with success" => "Nenastala žiadna chyba, súbor bol úspešne nahraný",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Nahrávaný súbor prekračuje nastavenie upload_max_filesize v php.ini",
|
||||
@ -115,6 +126,7 @@
|
||||
"No photo path was submitted." => "Žiadna fotka nebola odoslaná.",
|
||||
"File doesn't exist:" => "Súbor neexistuje:",
|
||||
"Error loading image." => "Chyba pri načítaní obrázka.",
|
||||
"Image has been removed from cache" => "Obrázok bol odstránený z medzipamäte",
|
||||
"Error creating temporary image" => "Chyba počas vytvárania dočasného obrázka.",
|
||||
"Error cropping image" => "Chyba počas orezávania obrázka.",
|
||||
"Error resizing image" => "Chyba počas zmeny veľkosti obrázka.",
|
||||
@ -131,6 +143,7 @@
|
||||
"Not enough storage available" => "Nedostatok dostupného úložného priestoru",
|
||||
"Attempt to upload blacklisted file:" => "Pokus o nahratie zakázaného súboru:",
|
||||
"Error uploading contacts to storage." => "Chyba pri nahrávaní kontaktov do úložiska.",
|
||||
"Error moving file to imports folder." => "Chyba pri presune súboru do priečinka importov",
|
||||
"You do not have permissions to import into this address book." => "Nemáte oprávnenie na import do tohto adresára.",
|
||||
"File name missing from request." => "V požiadavke chýba názov súboru.",
|
||||
"Progress key missing from request." => "V požiadavke chýba položka priebehu.",
|
||||
@ -193,6 +206,7 @@
|
||||
"Add new contact" => "Pridaj nový kontakt",
|
||||
"Add new addressbook" => "Pridaj nový adresár",
|
||||
"Delete current contact" => "Vymaž súčasný kontakt",
|
||||
"<h3>You have no contacts in your address book or your address book is disabled.</h3><p>Add a new contact or import existing contacts from a VCF file.</p>" => "<h3>Váš adresár je buď vypnutý, alebo prázdny.</h3><p>Vložte nový kontakt, alebo ho naimportujete z VCF súboru.</p>",
|
||||
"Add contact" => "Pridať kontakt",
|
||||
"Delete group" => "Odstrániť skupinu",
|
||||
"Rename group" => "Premenovať skupinu",
|
||||
@ -217,6 +231,7 @@
|
||||
"Birthday" => "Narodeniny",
|
||||
"Notes go here..." => "Poznámky idú sem...",
|
||||
"Export as VCF" => "Export ako VCF",
|
||||
"Add field..." => "Vložiť pole...",
|
||||
"Phone" => "Telefón",
|
||||
"Email" => "Email",
|
||||
"Instant Messaging" => "Okamžité správy IM",
|
||||
@ -235,10 +250,15 @@
|
||||
"Delete URL" => "Odstrániť URL",
|
||||
"View on map" => "Zobraziť na mape",
|
||||
"Delete address" => "Odstrániť adresu",
|
||||
"1600 Pennsylvania Avenue, NW" => "1600 Pennsylvania Avenue, NW",
|
||||
"Street address" => "Ulica",
|
||||
"20500" => "20500",
|
||||
"Postal code" => "PSČ",
|
||||
"Washington, DC" => "Washington, DC",
|
||||
"City" => "Mesto",
|
||||
"District of Columbia" => "District of Columbia",
|
||||
"State or province" => "Štát alebo oblasť",
|
||||
"USA" => "USA",
|
||||
"Country" => "Krajina",
|
||||
"Instant Messenger" => "Okamžité správy IM",
|
||||
"Delete IM" => "Zmazať IM",
|
||||
|
@ -15,9 +15,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"POT-Creation-Date: 2013-10-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2013-10-18 21:40+0000\n"
|
||||
"Last-Translator: mhh <marian.hvolka@stuba.sk>\n"
|
||||
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -25,7 +25,7 @@ msgstr ""
|
||||
"Language: sk_SK\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:103
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakty"
|
||||
|
||||
@ -43,7 +43,7 @@ msgstr "Importujem..."
|
||||
|
||||
#: js/addressbooks.js:324
|
||||
msgid "Preparing..."
|
||||
msgstr ""
|
||||
msgstr "Pripravujem..."
|
||||
|
||||
#: js/addressbooks.js:372
|
||||
msgid "Imported {count} of {total} contacts"
|
||||
@ -113,96 +113,96 @@ msgstr "Zlúčenie zlyhalo."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Zlúčenie zlyhalo. Chyba pri ukladaní kontaktu."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Vybrať fotku"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Chyba sieťe alebo servra. Informujte prosím administrátora."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Chyba pri pridávaní do skupiny."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Chyba pri odstraňovaní zo skupiny."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Chyba pri nastavení {name} medzi obľúbené."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Zlúčiť kontakty"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušiť"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Pridať skupinu"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "OK"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Nemožno nájsť kontakt: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Žiadne súbory neboli vybrané k nahratiu"
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Súbor, ktorý sa pokúšate nahrať, presahuje maximálnu povolenú veľkosť."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Upraviť profilový avatar"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
msgstr "Orezať fotku"
|
||||
|
||||
#: js/contacts.js:589
|
||||
msgid "Is this correct?"
|
||||
msgstr "Je to správne?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr "Chyba pri parsovaní dátumu: {date}"
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# skupiny"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
msgstr "Chyba parsovania narodenín {bday}: {error}"
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Počkajte prosím do skončenia mazania kontaktov označených na mazanie."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Kliknite pre odvrátenie operácie zmazania {num} kontaktov."
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
msgstr "Zrušené vymazanie {num} kontaktov"
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Pridať"
|
||||
|
||||
@ -274,11 +274,11 @@ msgstr "Import z..."
|
||||
|
||||
#: js/loader.js:31
|
||||
msgid "Error loading import template"
|
||||
msgstr ""
|
||||
msgstr "Chyba pri nahrávaní šablóny importu"
|
||||
|
||||
#: js/loader.js:48
|
||||
msgid "Import contacts"
|
||||
msgstr ""
|
||||
msgstr "Importovať kontakty"
|
||||
|
||||
#: js/loader.js:61 templates/contacts.php:25
|
||||
msgid "Import"
|
||||
@ -333,9 +333,9 @@ msgstr "Viac..."
|
||||
msgid "Less..."
|
||||
msgstr "Menej..."
|
||||
|
||||
#: js/storage.js:29
|
||||
#: js/storage.js:30
|
||||
msgid "Server error! Please inform system administator"
|
||||
msgstr ""
|
||||
msgstr "Chyba servera! Informujte vášho administrátora"
|
||||
|
||||
#: js/storage.js:335 js/storage.js:374
|
||||
msgid "Failed loading photo: {error}"
|
||||
@ -385,7 +385,7 @@ msgstr "Nemáte oprávnenie na aktualizáciu tohto adresára."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Nemáte oprávnenie na vymazanie tohto adresára."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:144
|
||||
msgid "Address book not found"
|
||||
msgstr "Adresár nenájdený"
|
||||
|
||||
@ -425,80 +425,84 @@ msgstr "Narodeniny {name}"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Chyba pri vytváraní adresára"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Chyba pri aktualizácii adresára"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr "Nemáte oprávnenie pre zmazanie zoznamu kontaktov \"%s\""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Chyba pri vymazávaní adresára"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Chyba pri vytváraní kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Chyba pri vymazávaní kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr "Chyba pri otváraní kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Chyba počas ukladania kontaktu."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Chyba pri vymazávaní kontaktu z iného adresára."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Kontakt sa nenašiel."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr "Neobsahuje požadované kontaktné údaje."
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Chyba pri zlučovaní do kontaktu."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Chyba pri ukladaní kontaktu do úložiska."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr "Údaj Meno nie je nastavené."
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr "Údaj Kontrolný súčet nie je nastavený."
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Informácie o vCard sú neplatné. Prosím obnovte stránku."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
msgstr "Chyba pri ukladaní zmien kontaktu"
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
msgstr "Chyba pri zápise kontaktu do úložiska"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:69
|
||||
msgid "Error getting user photo"
|
||||
msgstr ""
|
||||
msgstr "Chyba pri získavaní používateľovej fotky"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:87
|
||||
#: lib/controller/importcontroller.php:36
|
||||
@ -555,27 +559,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Súbor neexistuje:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Chyba pri načítaní obrázka."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
msgstr "Obrázok bol odstránený z medzipamäte"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Chyba počas vytvárania dočasného obrázka."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Chyba počas orezávania obrázka."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Chyba počas zmeny veľkosti obrázka."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Chyba počas získavania vlastností fotky."
|
||||
|
||||
@ -631,7 +635,7 @@ msgstr "Chyba pri nahrávaní kontaktov do úložiska."
|
||||
|
||||
#: lib/controller/importcontroller.php:137
|
||||
msgid "Error moving file to imports folder."
|
||||
msgstr ""
|
||||
msgstr "Chyba pri presune súboru do priečinka importov"
|
||||
|
||||
#: lib/controller/importcontroller.php:154
|
||||
msgid "You do not have permissions to import into this address book."
|
||||
@ -892,7 +896,7 @@ msgid ""
|
||||
"<h3>You have no contacts in your address book or your address book is "
|
||||
"disabled.</h3><p>Add a new contact or import existing contacts from a VCF "
|
||||
"file.</p>"
|
||||
msgstr ""
|
||||
msgstr "<h3>Váš adresár je buď vypnutý, alebo prázdny.</h3><p>Vložte nový kontakt, alebo ho naimportujete z VCF súboru.</p>"
|
||||
|
||||
#: templates/contacts.php:127
|
||||
msgid "Add contact"
|
||||
@ -990,6 +994,10 @@ msgstr "Poznámky idú sem..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Export ako VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr "Vložiť pole..."
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefón"
|
||||
@ -1066,7 +1074,7 @@ msgstr "Odstrániť adresu"
|
||||
|
||||
#: templates/contacts.php:410
|
||||
msgid "1600 Pennsylvania Avenue, NW"
|
||||
msgstr ""
|
||||
msgstr "1600 Pennsylvania Avenue, NW"
|
||||
|
||||
#: templates/contacts.php:411
|
||||
msgid "Street address"
|
||||
@ -1074,7 +1082,7 @@ msgstr "Ulica"
|
||||
|
||||
#: templates/contacts.php:415
|
||||
msgid "20500"
|
||||
msgstr ""
|
||||
msgstr "20500"
|
||||
|
||||
#: templates/contacts.php:416
|
||||
msgid "Postal code"
|
||||
@ -1082,7 +1090,7 @@ msgstr "PSČ"
|
||||
|
||||
#: templates/contacts.php:418
|
||||
msgid "Washington, DC"
|
||||
msgstr ""
|
||||
msgstr "Washington, DC"
|
||||
|
||||
#: templates/contacts.php:419
|
||||
msgid "City"
|
||||
@ -1090,7 +1098,7 @@ msgstr "Mesto"
|
||||
|
||||
#: templates/contacts.php:423
|
||||
msgid "District of Columbia"
|
||||
msgstr ""
|
||||
msgstr "District of Columbia"
|
||||
|
||||
#: templates/contacts.php:424
|
||||
msgid "State or province"
|
||||
@ -1098,7 +1106,7 @@ msgstr "Štát alebo oblasť"
|
||||
|
||||
#: templates/contacts.php:428
|
||||
msgid "USA"
|
||||
msgstr ""
|
||||
msgstr "USA"
|
||||
|
||||
#: templates/contacts.php:429
|
||||
msgid "Country"
|
||||
|
@ -14,8 +14,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -24,7 +24,7 @@ msgstr ""
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Stiki"
|
||||
|
||||
@ -112,62 +112,62 @@ msgstr "Spajanje je spodletelo."
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr "Spajanje je spodletelo. Stik ni bil shranjen."
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr "Izbor slike"
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr "Napaka omrežja ali strežnika. Prosimo, če o tem obvestite administratorja."
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr "Napaka pri dodajanju v skupino."
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr "Napaka pri odstranjevanju iz skupine."
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr "Napaka pri nastavitvi {name} kot priljubljenega."
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr "Spoji stike"
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Prekliči"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr "Dodaj skupino"
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "V redu"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr "Stika ni bilo mogoče najti: {id}"
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr "Ni izbrane datoteke za nalaganje."
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr "Datoteka, ki jo poskušate naložiti, presega največjo dovoljeno velikost za pošiljanje na tem strežniku."
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr "Uredi fotografijo profila"
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -175,33 +175,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr "Ali je to pravilno?"
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr "# skupine"
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr "Nekateri stiki so označeni za izbris, vendar še niso izbrisani. Počakajte na izbris."
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr "Klikni za preklic izbrisa {num} stikov"
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
@ -384,7 +384,7 @@ msgstr "Nimate ustreznih pravic za posodobitev imenika."
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr "Nimate ustreznih pravic za brisanje imenika."
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr "Imenika ni bilo mogoče najti"
|
||||
|
||||
@ -424,74 +424,78 @@ msgstr "{name} - rojstni dan"
|
||||
msgid "Error creating address book"
|
||||
msgstr "Napaka pri ustvarjanju imenika"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr "Napaka pri posodabljanju imenika"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr "Napaka pri brisanju imenika"
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr "Napaka pri ustvarjanju stika."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr "Napaka pri brisanju stika."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr "Napaka med shranjevanjem stika."
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr "Napaka pri brisanju stika iz drugega imenika."
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr "Stika ni bilo mogoče najti."
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr "Napaka pri spajanju podatkov v stik."
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr "Napaka pri shranjevanju stika."
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Podrobnosti kartice vCard niso pravilne. Ponovno naložite stran."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -554,27 +558,27 @@ msgid "File doesn't exist:"
|
||||
msgstr "Datoteka ne obstaja:"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr "Napaka med nalaganjem slike."
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr "Napaka med ustvarjanjem začasne slike"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr "Napaka med obrezovanjem slike"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr "Napaka med spreminjanjem velikosti slike"
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr "Napaka med pridobivanjem lastnosti fotografije."
|
||||
|
||||
@ -989,6 +993,10 @@ msgstr "Prostor za opombe ..."
|
||||
msgid "Export as VCF"
|
||||
msgstr "Izvozi kot VCF"
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -18,7 +18,7 @@ msgstr ""
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Kontake"
|
||||
|
||||
@ -106,62 +106,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Anulo"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -169,33 +169,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Shto"
|
||||
|
||||
@ -378,7 +378,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -418,74 +418,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -548,27 +552,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -983,6 +987,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
@ -9,8 +9,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -19,7 +19,7 @@ msgstr ""
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr "Контакти"
|
||||
|
||||
@ -107,62 +107,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Откажи"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr "У реду"
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -170,33 +170,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Додај"
|
||||
|
||||
@ -379,7 +379,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -419,74 +419,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Подаци о вКарти су неисправни. Поново учитајте страницу."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -549,27 +553,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -984,6 +988,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Телефон"
|
||||
|
@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ownCloud\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
|
||||
"POT-Creation-Date: 2013-10-05 09:09-0400\n"
|
||||
"PO-Revision-Date: 2013-10-03 12:20+0000\n"
|
||||
"POT-Creation-Date: 2013-10-17 12:31-0400\n"
|
||||
"PO-Revision-Date: 2013-10-17 16:31+0000\n"
|
||||
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
|
||||
"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -18,7 +18,7 @@ msgstr ""
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: appinfo/app.php:30
|
||||
#: appinfo/app.php:28 lib/app.php:101
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
@ -106,62 +106,62 @@ msgstr ""
|
||||
msgid "Merge failed. Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:601
|
||||
#: js/app.js:602
|
||||
msgid "Select photo"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:677 js/app.js:1588
|
||||
#: js/app.js:678 js/app.js:1589
|
||||
msgid "Network or server error. Please inform administrator."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:893
|
||||
#: js/app.js:894
|
||||
msgid "Error adding to group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:916
|
||||
#: js/app.js:917
|
||||
msgid "Error removing from group."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1094
|
||||
#: js/app.js:1095
|
||||
msgid "Error setting {name} as favorite."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1233 js/app.js:1237 templates/contacts.php:182
|
||||
#: js/app.js:1234 js/app.js:1238 templates/contacts.php:182
|
||||
msgid "Merge contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1259 js/app.js:1312 js/settings.js:120 templates/contacts.php:321
|
||||
#: js/app.js:1260 js/app.js:1313 js/settings.js:120 templates/contacts.php:321
|
||||
#: templates/settings.php:62
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#: js/app.js:1286 templates/contacts.php:163
|
||||
#: js/app.js:1287 templates/contacts.php:163
|
||||
msgid "Add group"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1290
|
||||
#: js/app.js:1291
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1390
|
||||
#: js/app.js:1391
|
||||
msgid "Could not find contact: {id}"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1436
|
||||
#: js/app.js:1437
|
||||
msgid "No files selected for upload."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1446
|
||||
#: js/app.js:1447
|
||||
msgid ""
|
||||
"The file you are trying to upload exceed the maximum size for file uploads "
|
||||
"on this server."
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1546
|
||||
#: js/app.js:1547
|
||||
msgid "Edit profile picture"
|
||||
msgstr ""
|
||||
|
||||
#: js/app.js:1550
|
||||
#: js/app.js:1551
|
||||
msgid "Crop photo"
|
||||
msgstr ""
|
||||
|
||||
@ -169,33 +169,33 @@ msgstr ""
|
||||
msgid "Is this correct?"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:857
|
||||
#: js/contacts.js:858
|
||||
msgid "Error parsing date: {date}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1054
|
||||
#: js/contacts.js:1055
|
||||
msgid "# groups"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:1126
|
||||
#: js/contacts.js:1127
|
||||
msgid "Error parsing birthday {bday}: {error}"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2163
|
||||
#: js/contacts.js:2164
|
||||
msgid ""
|
||||
"Some contacts are marked for deletion, but not deleted yet. Please wait for "
|
||||
"them to be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2174
|
||||
#: js/contacts.js:2175
|
||||
msgid "Click to undo deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/contacts.js:2183
|
||||
#: js/contacts.js:2184
|
||||
msgid "Cancelled deletion of {num} contacts"
|
||||
msgstr ""
|
||||
|
||||
#: js/groups.js:53 templates/contacts.php:325
|
||||
#: js/groups.js:53
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
@ -378,7 +378,7 @@ msgstr ""
|
||||
msgid "You don't have permissions to delete the address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/app.php:139
|
||||
#: lib/app.php:142
|
||||
msgid "Address book not found"
|
||||
msgstr ""
|
||||
|
||||
@ -418,74 +418,78 @@ msgstr ""
|
||||
msgid "Error creating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:130
|
||||
#: lib/controller/addressbookcontroller.php:127
|
||||
msgid "Error updating address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
#: lib/controller/addressbookcontroller.php:155
|
||||
#, php-format
|
||||
msgid "You do not have permissions to delete the \"%s\" address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:168
|
||||
#: lib/controller/addressbookcontroller.php:161
|
||||
msgid "Error deleting address book"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:208
|
||||
#: lib/controller/addressbookcontroller.php:199
|
||||
msgid "Error creating contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:247
|
||||
#: lib/controller/addressbookcontroller.php:235
|
||||
msgid "Error deleting contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:290
|
||||
#: lib/controller/addressbookcontroller.php:275
|
||||
msgid "Error retrieving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:301
|
||||
#: lib/controller/contactphotocontroller.php:338
|
||||
#: lib/controller/addressbookcontroller.php:285
|
||||
#: lib/controller/contactphotocontroller.php:327
|
||||
msgid "Error saving contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/addressbookcontroller.php:306
|
||||
#: lib/controller/addressbookcontroller.php:289
|
||||
msgid "Error removing contact from other address book."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:37
|
||||
#: lib/controller/contactcontroller.php:61
|
||||
#: lib/controller/contactcontroller.php:106
|
||||
#: lib/controller/contactcontroller.php:64
|
||||
#: lib/controller/contactcontroller.php:97
|
||||
#: lib/controller/contactphotocontroller.php:38
|
||||
#: lib/controller/contactphotocontroller.php:277
|
||||
#: lib/controller/contactphotocontroller.php:271
|
||||
#: lib/controller/exportcontroller.php:66
|
||||
msgid "Couldn't find contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:66
|
||||
#: lib/controller/contactcontroller.php:60
|
||||
msgid "No contact data in request."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:68
|
||||
msgid "Error merging into contact."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:70
|
||||
#: lib/controller/contactcontroller.php:71
|
||||
msgid "Error saving contact to backend."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:111
|
||||
#: lib/controller/contactcontroller.php:102
|
||||
msgid "Property name is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:116
|
||||
#: lib/controller/contactcontroller.php:107
|
||||
msgid "Property checksum is not set."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
#: lib/controller/contactcontroller.php:126
|
||||
msgid "Information about vCard is incorrect. Please reload the page."
|
||||
msgstr "Podaci o vKarti su neispravni. Ponovo učitajte stranicu."
|
||||
|
||||
#: lib/controller/contactcontroller.php:144
|
||||
#: lib/controller/contactcontroller.php:135
|
||||
msgid "Error updating contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactcontroller.php:149
|
||||
#: lib/controller/contactcontroller.php:140
|
||||
msgid "Error saving contact to backend"
|
||||
msgstr ""
|
||||
|
||||
@ -548,27 +552,27 @@ msgid "File doesn't exist:"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:200
|
||||
#: lib/controller/contactphotocontroller.php:204
|
||||
#: lib/controller/contactphotocontroller.php:203
|
||||
msgid "Error loading image."
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:283
|
||||
#: lib/controller/contactphotocontroller.php:276
|
||||
msgid "Image has been removed from cache"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:290
|
||||
#: lib/controller/contactphotocontroller.php:282
|
||||
msgid "Error creating temporary image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:298
|
||||
#: lib/controller/contactphotocontroller.php:289
|
||||
msgid "Error cropping image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:304
|
||||
#: lib/controller/contactphotocontroller.php:294
|
||||
msgid "Error resizing image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/controller/contactphotocontroller.php:323
|
||||
#: lib/controller/contactphotocontroller.php:312
|
||||
msgid "Error getting PHOTO property."
|
||||
msgstr ""
|
||||
|
||||
@ -983,6 +987,10 @@ msgstr ""
|
||||
msgid "Export as VCF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:325
|
||||
msgid "Add field..."
|
||||
msgstr ""
|
||||
|
||||
#: templates/contacts.php:330
|
||||
msgid "Phone"
|
||||
msgstr "Telefon"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user