fix up content and content-wrapper merge ...

This commit is contained in:
Jan-Christoph Borchardt 2013-01-18 19:58:50 +07:00
commit b81a7aa078
261 changed files with 4307 additions and 3182 deletions

View File

@ -6,13 +6,14 @@ $force=isset($_GET['force']) and $_GET['force']=='true';
$dir=isset($_GET['dir'])?$_GET['dir']:'';
$checkOnly=isset($_GET['checkonly']) and $_GET['checkonly']=='true';
$eventSource=false;
if(!$checkOnly) {
$eventSource=new OC_EventSource();
}
session_write_close();
//create the file cache if necesary
//create the file cache if necessary
if($force or !OC_FileCache::inCache('')) {
if(!$checkOnly) {
OCP\DB::beginTransaction();

View File

@ -23,7 +23,7 @@
#new>ul>li>p { cursor:pointer; }
#new>ul>li>form>input { padding:0.3em; margin:-0.3em; }
#upload {
#upload {
height:27px; padding:0; margin-left:0.2em; overflow:hidden;
}
#upload a {
@ -35,7 +35,7 @@
}
.file_upload_target { display:none; }
.file_upload_form { display:inline; float:left; margin:0; padding:0; cursor:pointer; overflow:visible; }
#file_upload_start {
#file_upload_start {
left:0; top:0; width:28px; height:27px; padding:0;
font-size:1em;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter:alpha(opacity=0); opacity:0;

View File

@ -38,36 +38,36 @@ OCP\App::setActiveNavigationEntry('files_index');
$dir = isset($_GET['dir']) ? stripslashes($_GET['dir']) : '';
// Redirect if directory does not exist
if (!OC_Filesystem::is_dir($dir . '/')) {
header('Location: ' . $_SERVER['SCRIPT_NAME'] . '');
exit();
header('Location: ' . $_SERVER['SCRIPT_NAME'] . '');
exit();
}
$files = array();
foreach (OC_Files::getdirectorycontent($dir) as $i) {
$i['date'] = OCP\Util::formatDate($i['mtime']);
if ($i['type'] == 'file') {
$fileinfo = pathinfo($i['name']);
$i['basename'] = $fileinfo['filename'];
if (!empty($fileinfo['extension'])) {
$i['extension'] = '.' . $fileinfo['extension'];
} else {
$i['extension'] = '';
}
}
if ($i['directory'] == '/') {
$i['directory'] = '';
}
$files[] = $i;
$i['date'] = OCP\Util::formatDate($i['mtime']);
if ($i['type'] == 'file') {
$fileinfo = pathinfo($i['name']);
$i['basename'] = $fileinfo['filename'];
if (!empty($fileinfo['extension'])) {
$i['extension'] = '.' . $fileinfo['extension'];
} else {
$i['extension'] = '';
}
}
if ($i['directory'] == '/') {
$i['directory'] = '';
}
$files[] = $i;
}
// Make breadcrumb
$breadcrumb = array();
$pathtohere = '';
foreach (explode('/', $dir) as $i) {
if ($i != '') {
$pathtohere .= '/' . $i;
$breadcrumb[] = array('dir' => $pathtohere, 'name' => $i);
}
if ($i != '') {
$pathtohere .= '/' . $i;
$breadcrumb[] = array('dir' => $pathtohere, 'name' => $i);
}
}
// make breadcrumb und filelist markup
@ -89,13 +89,13 @@ $maxUploadFilesize = min($maxUploadFilesize, $freeSpace);
$permissions = OCP\PERMISSION_READ;
if (OC_Filesystem::isUpdatable($dir . '/')) {
$permissions |= OCP\PERMISSION_UPDATE;
$permissions |= OCP\PERMISSION_UPDATE;
}
if (OC_Filesystem::isDeletable($dir . '/')) {
$permissions |= OCP\PERMISSION_DELETE;
$permissions |= OCP\PERMISSION_DELETE;
}
if (OC_Filesystem::isSharable($dir . '/')) {
$permissions |= OCP\PERMISSION_SHARE;
$permissions |= OCP\PERMISSION_SHARE;
}
$tmpl = new OCP\Template('files', 'index', 'user');

View File

@ -70,23 +70,23 @@ var FileActions = {
}
parent.children('a.name').append('<span class="fileactions" />');
var defaultAction = FileActions.getDefault(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions());
var actionHandler = function (event) {
event.stopPropagation();
event.preventDefault();
FileActions.currentFile = event.data.elem;
var file = FileActions.getCurrentFile();
event.data.actionFunc(file);
};
$.each(actions, function (name, action) {
// NOTE: Temporary fix to prevent rename action in root of Shared directory
if (name === 'Rename' && $('#dir').val() === '/Shared') {
return true;
}
if ((name === 'Download' || action !== defaultAction) && name !== 'Delete') {
var img = FileActions.icons[name];
if (img.call) {
@ -97,16 +97,16 @@ var FileActions = {
html += '<img class ="svg" src="' + img + '" /> ';
}
html += t('files', name) + '</a>';
var element = $(html);
element.data('action', name);
//alert(element);
element.on('click',{a:null, elem:parent, actionFunc:actions[name]},actionHandler);
parent.find('a.name>span.fileactions').append(element);
}
});
if (actions['Delete']) {
var img = FileActions.icons['Delete'];
if (img.call) {

View File

@ -52,7 +52,7 @@ Files={
}
};
$(document).ready(function() {
Files.bindKeyboardShortcuts(document, jQuery);
Files.bindKeyboardShortcuts(document, jQuery);
$('#fileList tr').each(function(){
//little hack to set unescape filenames in attribute
$(this).attr('data-file',decodeURIComponent($(this).attr('data-file')));

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam",
"Could not move %s" => "Kon %s niet verplaatsen",
"Unable to rename file" => "Kan bestand niet hernoemen",
"No file was uploaded. Unknown error" => "Er was geen bestand geladen. Onbekende fout",
"There is no error, the file uploaded with success" => "Geen fout opgetreden, bestand successvol geupload.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:",
@ -35,6 +38,7 @@
"Upload cancelled." => "Uploaden geannuleerd.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.",
"URL cannot be empty." => "URL kan niet leeg zijn.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud",
"{count} files scanned" => "{count} bestanden gescanned",
"error while scanning" => "Fout tijdens het scannen",
"Name" => "Naam",

View File

@ -1,4 +1,7 @@
<?php $TRANSLATIONS = array(
"Could not move %s - File with this name already exists" => "Nie można było przenieść %s - Plik o takiej nazwie już istnieje",
"Could not move %s" => "Nie można było przenieść %s",
"Unable to rename file" => "Nie można zmienić nazwy pliku",
"No file was uploaded. Unknown error" => "Plik nie został załadowany. Nieznany błąd",
"There is no error, the file uploaded with success" => "Przesłano plik",
"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: ",

View File

@ -37,6 +37,7 @@
"Upload cancelled." => "Încărcare anulată.",
"File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.",
"URL cannot be empty." => "Adresa URL nu poate fi goală.",
"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Invalid folder name. Usage of 'Shared' is reserved by Ownclou",
"{count} files scanned" => "{count} fisiere scanate",
"error while scanning" => "eroare la scanarea",
"Name" => "Nume",

View File

@ -2,7 +2,7 @@
<fieldset class="personalblock">
<legend><strong><?php echo $l->t('Encryption');?></strong></legend>
<input type='checkbox'<?php if ($_['encryption_enabled']): ?> checked="checked"<?php endif; ?>
id='enable_encryption' ></input>
id='enable_encryption' />
<label for='enable_encryption'><?php echo $l->t('Enable Encryption')?></label><br />
<select id='encryption_blacklist' title="<?php echo $l->t('None')?>" multiple="multiple">
<?php foreach ($_['blacklist'] as $type): ?>

View File

@ -108,7 +108,7 @@ class OC_Filestorage_AmazonS3 extends OC_Filestorage_Common {
$stat['atime'] = time();
$stat['mtime'] = $stat['atime'];
$stat['ctime'] = $stat['atime'];
} else {
} else {
$object = $this->getObject($path);
if ($object) {
$stat['size'] = $object['Size'];

View File

@ -38,7 +38,7 @@ class OC_Mount_Config {
* @return array
*/
public static function getBackends() {
$backends['OC_Filestorage_Local']=array(
'backend' => 'Local',
'configuration' => array(
@ -77,7 +77,7 @@ class OC_Mount_Config {
'token' => '#token',
'token_secret' => '#token secret'),
'custom' => 'google');
$backends['OC_Filestorage_SWIFT']=array(
'backend' => 'OpenStack Swift',
'configuration' => array(
@ -86,7 +86,7 @@ class OC_Mount_Config {
'token' => '*Token',
'root' => '&Root',
'secure' => '!Secure ftps://'));
if(OC_Mount_Config::checksmbclient()) $backends['OC_Filestorage_SMB']=array(
'backend' => 'SMB / CIFS',
'configuration' => array(
@ -95,7 +95,7 @@ class OC_Mount_Config {
'password' => '*Password',
'share' => 'Share',
'root' => '&Root'));
$backends['OC_Filestorage_DAV']=array(
'backend' => 'ownCloud / WebDAV',
'configuration' => array(
@ -103,7 +103,7 @@ class OC_Mount_Config {
'user' => 'Username',
'password' => '*Password',
'root' => '&Root',
'secure' => '!Secure https://'));
'secure' => '!Secure https://'));
return($backends);
}
@ -403,7 +403,7 @@ class OC_Mount_Config {
}
/**
* check if smbclient is installed
* check if smbclient is installed
*/
public static function checksmbclient() {
if(function_exists('shell_exec')) {
@ -415,7 +415,7 @@ class OC_Mount_Config {
}
/**
* check if php-ftp is installed
* check if php-ftp is installed
*/
public static function checkphpftp() {
if(function_exists('ftp_login')) {

View File

@ -234,12 +234,11 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{
$path1=$this->cleanPath($path1);
$path2=$this->root.$this->cleanPath($path2);
try {
$response=$this->client->request('MOVE', $path1, null, array('Destination'=>$path2));
$this->client->request('MOVE', $path1, null, array('Destination'=>$path2));
return true;
} catch(Exception $e) {
echo $e;
echo 'fail';
var_dump($response);
return false;
}
}
@ -248,12 +247,11 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{
$path1=$this->cleanPath($path1);
$path2=$this->root.$this->cleanPath($path2);
try {
$response=$this->client->request('COPY', $path1, null, array('Destination'=>$path2));
$this->client->request('COPY', $path1, null, array('Destination'=>$path2));
return true;
} catch(Exception $e) {
echo $e;
echo 'fail';
var_dump($response);
return false;
}
}

View File

@ -1,7 +1,7 @@
<form id="files_external">
<fieldset class="personalblock">
<legend><strong><?php echo $l->t('External Storage'); ?></strong></legend>
<?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) echo ''.$_['dependencies'].''; ?>
<?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) echo ''.$_['dependencies'].''; ?>
<table id="externalStorage" data-admin='<?php echo json_encode($_['isAdminPage']); ?>'>
<thead>
<tr>
@ -47,7 +47,7 @@
<?php elseif (strpos($placeholder, '!') !== false): ?>
<label><input type="checkbox"
data-parameter="<?php echo $parameter; ?>"
<?php if ($value == 'true'): ?> checked="checked"<?php endif; ?>
<?php if ($value == 'true'): ?> checked="checked"<?php endif; ?>
/><?php echo substr($placeholder, 1); ?></label>
<?php elseif (strpos($placeholder, '&') !== false): ?>
<input type="text"
@ -105,7 +105,7 @@
<?php endif; ?>
<td <?php if ($mountPoint != ''): ?>class="remove"
<?php else: ?>style="visibility:hidden;"
<?php endif ?>><img alt="<?php echo $l->t('Delete'); ?>"
<?php endif ?>><img alt="<?php echo $l->t('Delete'); ?>"
title="<?php echo $l->t('Delete'); ?>"
class="svg action"
src="<?php echo image_path('core', 'actions/delete.svg'); ?>" /></td>

View File

@ -1,7 +1,7 @@
$(document).ready(function() {
if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !publicListView) {
FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) {
if ($('#dir').val() == '/') {
var item = $('#dir').val() + filename;

View File

@ -66,12 +66,12 @@ if (isset($_GET['t'])) {
$type = $linkItem['item_type'];
$fileSource = $linkItem['file_source'];
$shareOwner = $linkItem['uid_owner'];
if (OCP\User::userExists($shareOwner) && $fileSource != -1 ) {
$pathAndUser = getPathAndUser($linkItem['file_source']);
$fileOwner = $pathAndUser['user'];
//if this is a reshare check the file owner also exists
if ($shareOwner != $fileOwner && ! OCP\User::userExists($fileOwner)) {
OCP\Util::writeLog('share', 'original file owner '.$fileOwner
@ -81,7 +81,7 @@ if (isset($_GET['t'])) {
$tmpl->printPage();
exit();
}
//mount filesystem of file owner
OC_Util::setupFS($fileOwner);
}
@ -104,7 +104,7 @@ if (isset($_GET['t'])) {
}
}
$shareOwner = substr($path, 1, strpos($path, '/', 1) - 1);
if (OCP\User::userExists($shareOwner)) {
OC_Util::setupFS($shareOwner);
$fileSource = getId($path);
@ -159,7 +159,7 @@ if ($linkItem) {
$tmpl->printPage();
exit();
}
} else {
// Check if item id is set in session
if (!isset($_SESSION['public_link_authenticated'])

View File

@ -28,7 +28,6 @@ $tmpl = new OCP\Template( 'files_versions', 'history', 'user' );
if ( isset( $_GET['path'] ) ) {
$path = $_GET['path'];
$path = $path;
$tmpl->assign( 'path', $path );
$versions = new OCA_Versions\Storage();

View File

@ -79,6 +79,7 @@ class Storage {
// create all parent folders
$info=pathinfo($filename);
$versionsFolderName=\OCP\Config::getSystemValue('datadirectory').$users_view->getAbsolutePath('files_versions/');
if(!file_exists($versionsFolderName.'/'.$info['dirname'])) {
mkdir($versionsFolderName.'/'.$info['dirname'], 0750, true);
}
@ -127,7 +128,8 @@ class Storage {
list($uid, $oldpath) = self::getUidAndFilename($oldpath);
list($uidn, $newpath) = self::getUidAndFilename($newpath);
$versions_view = new \OC_FilesystemView('/'.$uid .'/files_versions');
$files_view = new \OC_FilesystemView('/'.$uid .'/files');
$files_view = new \OC_FilesystemView('/'.$uid .'/files');
$abs_newpath = \OCP\Config::getSystemValue('datadirectory').$versions_view->getAbsolutePath('').$newpath;
if ( $files_view->is_dir($oldpath) && $versions_view->is_dir($oldpath) ) {
$versions_view->rename($oldpath, $newpath);
@ -149,7 +151,8 @@ class Storage {
if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') {
list($uid, $filename) = self::getUidAndFilename($filename);
$users_view = new \OC_FilesystemView('/'.$uid);
$versionCreated = false;
//first create a new version
$version = 'files_versions'.$filename.'.v'.$users_view->filemtime('files'.$filename);
if ( !$users_view->file_exists($version)) {

View File

@ -1,6 +1,6 @@
<form id="versionssettings">
<fieldset class="personalblock">
<legend><strong><?php echo $l->t('Files Versioning');?></strong></legend>
<input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable'); ?></label> <br/>
</fieldset>
<fieldset class="personalblock">
<legend><strong><?php echo $l->t('Files Versioning');?></strong></legend>
<input type="checkbox" name="versions" id="versions" value="1" <?php if (OCP\Config::getSystemValue('versions', 'true')=='true') echo ' checked="checked"'; ?> /> <label for="versions"><?php echo $l->t('Enable'); ?></label> <br/>
</fieldset>
</form>

View File

@ -1,9 +1,10 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Avís:</b> Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments no desitjats. Demaneu a l'administrador del sistema que en desactivi una.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avís:</b> El mòdul PHP LDAP necessari no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avís:</b> El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li.",
"Host" => "Màquina",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://",
"Base DN" => "DN Base",
"One Base DN per line" => "Una DN Base per línia",
"You can specify Base DN for users and groups in the Advanced tab" => "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat",
"User DN" => "DN Usuari",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "La DN de l'usuari client amb la que s'haurà de fer, per exemple uid=agent,dc=exemple,dc=com. Per un accés anònim, deixeu la DN i la contrasenya en blanc.",
@ -20,7 +21,9 @@
"without any placeholder, e.g. \"objectClass=posixGroup\"." => "sense cap paràmetre de substitució, per exemple \"objectClass=grupPosix\".",
"Port" => "Port",
"Base User Tree" => "Arbre base d'usuaris",
"One User Base DN per line" => "Una DN Base d'Usuari per línia",
"Base Group Tree" => "Arbre base de grups",
"One Group Base DN per line" => "Una DN Base de Grup per línia",
"Group-Member association" => "Associació membres-grup",
"Use TLS" => "Usa TLS",
"Do not use it for SSL connections, it will fail." => "No ho useu en connexions SSL, fallarà.",

View File

@ -1,6 +1,6 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Varování:</b> Aplikace user_ldap a user_webdavauth nejsou kompatibilní. Může nastávat neočekávané chování. Požádejte, prosím, správce systému aby jednu z nich zakázal.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Varování:</b> není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému aby jej nainstaloval.",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Varování:</b> není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému aby jej nainstaloval.",
"Host" => "Počítač",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://",
"Base DN" => "Základní DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Warnung:</b> Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Warnung:</b> Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren.",
"Host" => "Host",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://",
"Base DN" => "Basis-DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Warnung:</b> Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Warnung:</b> Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren.",
"Host" => "Host",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://",
"Base DN" => "Basis-DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Προσοχή:</b> Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Προσοχή:</b> Το PHP LDAP module που απαιτείται δεν είναι εγκατεστημένο και ο μηχανισμός δεν θα λειτουργήσει. Παρακαλώ ζητήστε από τον διαχειριστή του συστήματος να το εγκαταστήσει.",
"Host" => "Διακομιστής",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://",
"Base DN" => "Base DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Advertencia:</b> Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Advertencia:</b> El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo.",
"Host" => "Servidor",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://",
"Base DN" => "DN base",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Advertencia:</b> Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Advertencia:</b> El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo.",
"Host" => "Servidor",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, empezá con ldaps://",
"Base DN" => "DN base",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Abisua:</b> user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Abisua:</b> PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan.",
"Host" => "Hostalaria",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://",
"Base DN" => "Oinarrizko DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Avertissement:</b> Les applications user_ldap et user_webdavauth sont incompatibles. Des disfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il désactive l'une d'elles.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avertissement:</b> Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe.",
"Host" => "Hôte",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://",
"Base DN" => "DN Racine",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Aviso:</b> Os aplicativos user_ldap e user_webdavauth son incompatíbeis. Pode acontecer un comportamento estraño. Consulte co administrador do sistema para desactivar un deles.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Aviso:</b> O módulo PHP LDAP é necesario e non está instalado, a infraestrutura non funcionará. Consulte co administrador do sistema para instalalo.",
"Host" => "Servidor",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo agás que precise de SSL. Nese caso comece con ldaps://",
"Base DN" => "DN base",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Figyelem:</b> a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Figyelem:</b> a szükséges PHP LDAP modul nincs telepítve. Enélkül az LDAP azonosítás nem fog működni. Kérje meg a rendszergazdát, hogy telepítse a szükséges modult!",
"Host" => "Kiszolgáló",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://",
"Base DN" => "DN-gyökér",

View File

@ -1,6 +1,6 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Avviso:</b> le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne uno.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avviso:</b> il modulo PHP LDAP richiesto non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo.",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Avviso:</b> il modulo PHP LDAP non è installato, il motore non funzionerà. Chiedi al tuo amministratore di sistema di installarlo.",
"Host" => "Host",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://",
"Base DN" => "DN base",

View File

@ -1,9 +1,10 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>警告:</b> user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能姓があります。システム管理者にどちらかを無効にするよう問い合わせてください。",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>警告:</b> PHP LDAP モジュールがインストールされていません。バックエンドが正しくどうさしません。システム管理者にインストールするよう問い合わせてください。",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>警告:</b> PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。",
"Host" => "ホスト",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。",
"Base DN" => "ベースDN",
"One Base DN per line" => "1行に1つのベースDN",
"You can specify Base DN for users and groups in the Advanced tab" => "拡張タブでユーザとグループのベースDNを指定することができます。",
"User DN" => "ユーザDN",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。",
@ -20,7 +21,9 @@
"without any placeholder, e.g. \"objectClass=posixGroup\"." => "プレースホルダーを利用しないでください。例 \"objectClass=posixGroup\"",
"Port" => "ポート",
"Base User Tree" => "ベースユーザツリー",
"One User Base DN per line" => "1行に1つのユーザベースDN",
"Base Group Tree" => "ベースグループツリー",
"One Group Base DN per line" => "1行に1つのグループベースDN",
"Group-Member association" => "グループとメンバーの関連付け",
"Use TLS" => "TLSを利用",
"Do not use it for SSL connections, it will fail." => "SSL接続に利用しないでください、失敗します。",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>경고</b>user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여, 둘 중 하나를 비활성화 하시기 바랍니다.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>경고</b>PHP LDAP 모듈이 설치되지 않았습니다. 백엔드가 동작하지 않을 것 입니다. 시스템관리자에게 요청하여 해당 모듈을 설치하시기 바랍니다.",
"Host" => "호스트",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL을 사용하는 경우가 아니라면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.",
"Base DN" => "기본 DN",

View File

@ -1,11 +1,12 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Waarschuwing:</b> De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Waarschuwing:</b> De PHP LDAP module is niet geïnstalleerd, de backend zal dus niet werken. Vraag uw beheerder de module te installeren.",
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Waarschuwing:</b> De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren.",
"Host" => "Host",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://",
"Base DN" => "Basis DN",
"You can specify Base DN for users and groups in the Advanced tab" => "Je kunt het standaard DN voor gebruikers en groepen specificeren in het tab Geavanceerd.",
"User DN" => "Gebruikers DN",
"Base DN" => "Base DN",
"One Base DN per line" => "Een Base DN per regel",
"You can specify Base DN for users and groups in the Advanced tab" => "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab Geavanceerd.",
"User DN" => "User DN",
"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "De DN van de client gebruiker waarmee de verbinding zal worden gemaakt, bijv. uid=agent,dc=example,dc=com. Voor anonieme toegang laat je het DN en het wachtwoord leeg.",
"Password" => "Wachtwoord",
"For anonymous access, leave DN and Password empty." => "Voor anonieme toegang, laat de DN en het wachtwoord leeg.",
@ -20,7 +21,9 @@
"without any placeholder, e.g. \"objectClass=posixGroup\"." => "zonder een placeholder, bijv. \"objectClass=posixGroup\"",
"Port" => "Poort",
"Base User Tree" => "Basis Gebruikers Structuur",
"One User Base DN per line" => "Een User Base DN per regel",
"Base Group Tree" => "Basis Groupen Structuur",
"One Group Base DN per line" => "Een Group Base DN per regel",
"Group-Member association" => "Groepslid associatie",
"Use TLS" => "Gebruik TLS",
"Do not use it for SSL connections, it will fail." => "Gebruik niet voor SSL connecties, deze mislukken.",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Ostrzeżenie:</b> Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Ostrzeżenie:</b> Moduł PHP LDAP nie jest zainstalowany i nie będzie działał. Poproś administratora o włączenie go.",
"Host" => "Host",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://",
"Base DN" => "Baza DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Aviso:</b> A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Aviso:</b> O módulo PHP LDAP necessário não está instalado, o backend não irá funcionar. Peça ao seu administrador para o instalar.",
"Host" => "Anfitrião",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://",
"Base DN" => "DN base",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Atentie:</b> Apps user_ldap si user_webdavauth sunt incompatibile. Este posibil sa experimentati un comportament neasteptat. Vă rugăm să întrebați administratorul de sistem pentru a dezactiva una dintre ele.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Atentie:</b Modulul PHP LDAP care este necesar nu este instalat. Va rugam intrebati administratorul de sistem instalarea acestuia",
"Host" => "Gazdă",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puteți omite protocolul, decât dacă folosiți SSL. Atunci se începe cu ldaps://",
"Base DN" => "DN de bază",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Внимание:</b>Приложения user_ldap и user_webdavauth несовместимы. Вы можете столкнуться с неожиданным поведением. Пожалуйста, обратитесь к системному администратору, чтобы отключить одно из них.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Внимание:</b> Необходимый PHP LDAP модуль не установлен, внутренний интерфейс не будет работать. Пожалуйста, обратитесь к системному администратору, чтобы установить его.",
"Host" => "Сервер",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можно опустить протокол, за исключением того, когда вам требуется SSL. Тогда начните с ldaps :/ /",
"Base DN" => "Базовый DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Предупреждение:</b> Приложения user_ldap и user_webdavauth несовместимы. Вы можете столкнуться с неожиданным поведением системы. Пожалуйста, обратитесь к системному администратору для отключения одного из них.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Предупреждение:</b> Необходимый PHP LDAP-модуль не установлен, backend не будет работать. Пожалуйста, обратитесь к системному администратору, чтобы установить его.",
"Host" => "Хост",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Вы можете пропустить протокол, если Вам не требуется SSL. Затем начните с ldaps://",
"Base DN" => "База DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Opozorilo:</b> Aplikaciji user_ldap in user_webdavauth nista združljivi. Morda boste opazili nepričakovano obnašanje sistema. Prosimo, prosite vašega skrbnika, da eno od aplikacij onemogoči.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Opozorilo:</b> PHP LDAP modul mora biti nameščen, sicer ta vmesnik ne bo deloval. Prosimo, prosite vašega skrbnika, če ga namesti.",
"Host" => "Gostitelj",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://",
"Base DN" => "Osnovni DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Varning:</b> Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Varning:</b> PHP LDAP-modulen måste vara installerad, serversidan kommer inte att fungera. Be din systemadministratör att installera den.",
"Host" => "Server",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du behöver inte ange protokoll förutom om du använder SSL. Starta då med ldaps://",
"Base DN" => "Start DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Увага:</b> Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них.",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Увага:</ b> Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його.",
"Host" => "Хост",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можна не вказувати протокол, якщо вам не потрібен SSL. Тоді почніть з ldaps://",
"Base DN" => "Базовий DN",

View File

@ -1,6 +1,5 @@
<?php $TRANSLATIONS = array(
"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>警告:</b>应用 user_ldap 和 user_webdavauth 不兼容。您可能遭遇未预料的行为。请垂询您的系统管理员禁用其中一个。",
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>警告:</b>需要的 PHP LDAP 模块未安装,后端将无法工作。请垂询您的系统管理员来安装它。",
"Host" => "主机",
"You can omit the protocol, except you require SSL. Then start with ldaps://" => "可以忽略协议但如要使用SSL则需以ldaps://开头",
"Base DN" => "Base DN",

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL: http://"
"WebDAV Authentication" => "Autenticació WebDAV",
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud enviarà les credencials d'usuari a aquesta URL. Aquest endollable en comprova la resposta i interpretarà els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides."
);

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL: http://"
"WebDAV Authentication" => "Ověření WebDAV",
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud odešle uživatelské údaje na zadanou URL. Plugin zkontroluje odpověď a považuje návratovou hodnotu HTTP 401 a 403 za neplatné údaje a všechny ostatní hodnoty jako platné přihlašovací údaje."
);

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL: http://"
"WebDAV Authentication" => "WebDAV Authentifikation",
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud wird die Benutzer-Anmeldedaten an diese URL schicken. Dieses Plugin prüft die Anmeldedaten auf ihre Gültigkeit und interpretiert die HTTP Statusfehler 401 und 403 als ungültige, sowie alle Anderen als gültige Anmeldedaten."
);

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL: http://"
"WebDAV Authentication" => "WebDAV Authentifizierung",
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten."
);

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL: http://"
"WebDAV Authentication" => "Αυθεντικοποίηση μέσω WebDAV ",
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Το ownCloud θα στείλει τα διαπιστευτήρια χρήστη σε αυτό το URL. Αυτό το plugin ελέγχει την απάντηση και την μετατρέπει σε HTTP κωδικό κατάστασης 401 και 403 για μη έγκυρα, όλες οι υπόλοιπες απαντήσεις είναι έγκυρες."
);

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL: http://"
"WebDAV Authentication" => "Autenticazione WebDAV",
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud invierà le credenziali dell'utente a questo URL. Questa estensione controlla la risposta e interpreta i codici di stato 401 e 403 come credenziali non valide, e tutte le altre risposte come credenziali valide."
);

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL: http://"
"WebDAV Authentication" => "WebDAV 認証",
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloudはこのURLにユーザ資格情報を送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。"
);

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL: http://"
"WebDAV Authentication" => "WebDAV authenticatie",
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud stuurt de inloggegevens naar deze URL. Deze plugin controleert het antwoord en interpreteert de HTTP statuscodes 401 als 403 als ongeldige inloggegevens, maar alle andere antwoorden als geldige inloggegevens."
);

View File

@ -1,3 +1,5 @@
<?php $TRANSLATIONS = array(
"URL: http://" => "URL: http://"
"WebDAV Authentication" => "Uwierzytelnienie WebDAV",
"URL: http://" => "URL: http://",
"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud wyśle dane uwierzytelniające do tego URL. Ten plugin sprawdza odpowiedź i zinterpretuje kody HTTP 401 oraz 403 jako nieprawidłowe dane uwierzytelniające, a każdy inny kod odpowiedzi jako poprawne dane."
);

View File

@ -123,12 +123,12 @@ $CONFIG = array(
'path'=> '/var/www/owncloud/apps',
'url' => '/apps',
'writable' => true,
),
),
'user_backends'=>array(
array(
'class'=>'OC_User_IMAP',
'arguments'=>array('{imap.gmail.com:993/imap/ssl}INBOX')
)
)
),
),
'user_backends'=>array(
array(
'class'=>'OC_User_IMAP',
'arguments'=>array('{imap.gmail.com:993/imap/ssl}INBOX')
)
)
);

View File

@ -93,15 +93,13 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b
/* CONTENT ------------------------------------------------------------------ */
#controls { padding:0 0.5em; width:100%; top:3.5em; height:2.8em; margin:0; background:#f7f7f7; border-bottom:1px solid #eee; position:fixed; z-index:50; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; }
#controls .button { display:inline-block; }
#content {
height: 100%;
width: 100%;
padding-top: 3.5em;
padding-left: 64px;
box-sizing: border-box;
-moz-box-sizing: border-box;
#content { position:relative; height:100%; width:100%; }
#content-wrapper {
position:absolute; height:100%; width:100%; padding-top:3.5em; padding-left:64px;
-moz-box-sizing:border-box; box-sizing:border-box;
}
/* TODO check if this is better: #content { top:3.5em; left:12.5em; position:absolute; } */
#leftcontent, .leftcontent { position:fixed; overflow:auto; top:6.4em; width:20em; background:#f8f8f8; border-right:1px solid #ddd; }
#leftcontent li, .leftcontent li { background:#f8f8f8; padding:.5em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 200ms; -moz-transition:background-color 200ms; -o-transition:background-color 200ms; transition:background-color 200ms; }
#leftcontent li:hover, #leftcontent li:active, #leftcontent li.active, .leftcontent li:hover, .leftcontent li:active, .leftcontent li.active { background:#eee; }

View File

@ -5,7 +5,9 @@
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Käyttäjä %s jakoi kansion \"%s\" kanssasi. Se on ladattavissa täältä: %s",
"No category to add?" => "Ei lisättävää luokkaa?",
"This category already exists: " => "Tämä luokka on jo olemassa: ",
"Error adding %s to favorites." => "Virhe lisätessä kohdetta %s suosikkeihin.",
"No categories selected for deletion." => "Luokkia ei valittu poistettavaksi.",
"Error removing %s from favorites." => "Virhe poistaessa kohdetta %s suosikeista.",
"Settings" => "Asetukset",
"seconds ago" => "sekuntia sitten",
"1 minute ago" => "1 minuutti sitten",
@ -31,6 +33,9 @@
"Error while sharing" => "Virhe jaettaessa",
"Error while unsharing" => "Virhe jakoa peruttaessa",
"Error while changing permissions" => "Virhe oikeuksia muuttaessa",
"Shared with you and the group {group} by {owner}" => "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta",
"Shared with you by {owner}" => "Jaettu kanssasi käyttäjän {owner} toimesta",
"Share with" => "Jaa",
"Share with link" => "Jaa linkillä",
"Password protect" => "Suojaa salasanalla",
"Password" => "Salasana",

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
"User %s shared a file with you" => "Používateľ %s zdieľa s Vami súbor",
"User %s shared a folder with you" => "Používateľ %s zdieľa s Vami adresár",
"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Používateľ %s zdieľa s Vami súbor \"%s\". Môžete si ho stiahnuť tu: %s",
"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Používateľ %s zdieľa s Vami adresár \"%s\". Môžete si ho stiahnuť tu: %s",
"Category type not provided." => "Neposkytnutý kategorický typ.",
"No category to add?" => "Žiadna kategória pre pridanie?",
"This category already exists: " => "Táto kategória už existuje:",
@ -39,6 +43,8 @@
"Share with link" => "Zdieľať cez odkaz",
"Password protect" => "Chrániť heslom",
"Password" => "Heslo",
"Email link to person" => "Odoslať odkaz osobe e-mailom",
"Send" => "Odoslať",
"Set expiration date" => "Nastaviť dátum expirácie",
"Expiration date" => "Dátum expirácie",
"Share via email:" => "Zdieľať cez e-mail:",
@ -55,6 +61,8 @@
"Password protected" => "Chránené heslom",
"Error unsetting expiration date" => "Chyba pri odstraňovaní dátumu vypršania platnosti",
"Error setting expiration date" => "Chyba pri nastavení dátumu vypršania platnosti",
"Sending ..." => "Odosielam ...",
"Email sent" => "Email odoslaný",
"ownCloud password reset" => "Obnovenie hesla pre ownCloud",
"Use the following link to reset your password: {link}" => "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}",
"You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte e-mailom.",
@ -118,5 +126,6 @@
"remember" => "zapamätať",
"Log in" => "Prihlásiť sa",
"prev" => "späť",
"next" => "ďalej"
"next" => "ďalej",
"Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať."
);

View File

@ -1,7 +1,7 @@
<input type='hidden' id='hasMySQL' value='<?php echo $_['hasMySQL'] ?>'></input>
<input type='hidden' id='hasSQLite' value='<?php echo $_['hasSQLite'] ?>'></input>
<input type='hidden' id='hasPostgreSQL' value='<?php echo $_['hasPostgreSQL'] ?>'></input>
<input type='hidden' id='hasOracle' value='<?php echo $_['hasOracle'] ?>'></input>
<input type='hidden' id='hasMySQL' value='<?php echo $_['hasMySQL'] ?>'>
<input type='hidden' id='hasSQLite' value='<?php echo $_['hasSQLite'] ?>'>
<input type='hidden' id='hasPostgreSQL' value='<?php echo $_['hasPostgreSQL'] ?>'>
<input type='hidden' id='hasOracle' value='<?php echo $_['hasOracle'] ?>'>
<form action="index.php" method="post">
<input type="hidden" name="install" value="true" />
<?php if(count($_['errors']) > 0): ?>

View File

@ -83,8 +83,10 @@
</ul>
</div></nav>
<div id="content">
<?php echo $_['content']; ?>
<div id="content-wrapper">
<div id="content">
<?php echo $_['content']; ?>
</div>
</div>
</body>
</html>

View File

@ -1,50 +1,50 @@
<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}</style><![endif]-->
<form method="post">
<fieldset>
<?php if (!empty($_['redirect_url'])) {
echo '<input type="hidden" name="redirect_url" value="' . $_['redirect_url'] . '" />';
} ?>
<ul>
<?php if (isset($_['invalidcookie']) && ($_['invalidcookie'])): ?>
<li class="errors">
<?php echo $l->t('Automatic logon rejected!'); ?><br>
<small><?php echo $l->t('If you did not change your password recently, your account may be compromised!'); ?></small>
<br>
<small><?php echo $l->t('Please change your password to secure your account again.'); ?></small>
</li>
<?php endif; ?>
<?php if (isset($_['invalidpassword']) && ($_['invalidpassword'])): ?>
<a href="<?php echo OC_Helper::linkToRoute('core_lostpassword_index') ?>">
<li class="errors">
<?php echo $l->t('Lost your password?'); ?>
</li>
</a>
<?php endif; ?>
</ul>
<p class="infield grouptop">
<input type="text" name="user" id="user"
value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus'] ? ' autofocus' : ''; ?>
autocomplete="on" required/>
<label for="user" class="infield"><?php echo $l->t('Username'); ?></label>
<img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt=""/>
</p>
<fieldset>
<?php if (!empty($_['redirect_url'])) {
echo '<input type="hidden" name="redirect_url" value="' . $_['redirect_url'] . '" />';
} ?>
<ul>
<?php if (isset($_['invalidcookie']) && ($_['invalidcookie'])): ?>
<li class="errors">
<?php echo $l->t('Automatic logon rejected!'); ?><br>
<small><?php echo $l->t('If you did not change your password recently, your account may be compromised!'); ?></small>
<br>
<small><?php echo $l->t('Please change your password to secure your account again.'); ?></small>
</li>
<?php endif; ?>
<?php if (isset($_['invalidpassword']) && ($_['invalidpassword'])): ?>
<a href="<?php echo OC_Helper::linkToRoute('core_lostpassword_index') ?>">
<li class="errors">
<?php echo $l->t('Lost your password?'); ?>
</li>
</a>
<?php endif; ?>
</ul>
<p class="infield grouptop">
<input type="text" name="user" id="user"
value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus'] ? ' autofocus' : ''; ?>
autocomplete="on" required/>
<label for="user" class="infield"><?php echo $l->t('Username'); ?></label>
<img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt=""/>
</p>
<p class="infield groupbottom">
<input type="password" name="password" id="password" value=""
required<?php echo $_['user_autofocus'] ? '' : ' autofocus'; ?> />
<label for="password" class="infield"><?php echo $l->t('Password'); ?></label>
<img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt=""/>
</p>
<input type="checkbox" name="remember_login" value="1" id="remember_login"/><label
for="remember_login"><?php echo $l->t('remember'); ?></label>
<input type="hidden" name="timezone-offset" id="timezone-offset"/>
<input type="submit" id="submit" class="login primary" value="<?php echo $l->t('Log in'); ?>"/>
</fieldset>
<p class="infield groupbottom">
<input type="password" name="password" id="password" value=""
required<?php echo $_['user_autofocus'] ? '' : ' autofocus'; ?> />
<label for="password" class="infield"><?php echo $l->t('Password'); ?></label>
<img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt=""/>
</p>
<input type="checkbox" name="remember_login" value="1" id="remember_login"/><label
for="remember_login"><?php echo $l->t('remember'); ?></label>
<input type="hidden" name="timezone-offset" id="timezone-offset"/>
<input type="submit" id="submit" class="login primary" value="<?php echo $l->t('Log in'); ?>"/>
</fieldset>
</form>
<script>
$(document).ready(function () {
var visitortimezone = (-new Date().getTimezoneOffset() / 60);
$('#timezone-offset').val(visitortimezone);
});
$(document).ready(function () {
var visitortimezone = (-new Date().getTimezoneOffset() / 60);
$('#timezone-offset').val(visitortimezone);
});
</script>

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-24 00:11+0100\n"
"PO-Revision-Date: 2012-12-23 19:00+0000\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
@ -17,27 +17,27 @@ 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"
#: app.php:287
#: app.php:301
msgid "Help"
msgstr "المساعدة"
#: app.php:294
#: app.php:308
msgid "Personal"
msgstr "شخصي"
#: app.php:299
#: app.php:313
msgid "Settings"
msgstr "تعديلات"
#: app.php:304
#: app.php:318
msgid "Users"
msgstr "المستخدمين"
#: app.php:311
#: app.php:325
msgid "Apps"
msgstr ""
#: app.php:313
#: app.php:327
msgid "Admin"
msgstr ""
@ -57,11 +57,15 @@ msgstr ""
msgid "Selected files too large to generate zip file."
msgstr ""
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr ""
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "لم يتم التأكد من الشخصية بنجاح"
@ -81,55 +85,55 @@ msgstr "معلومات إضافية"
msgid "Images"
msgstr ""
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "منذ ثواني"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "منذ دقيقة"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr ""
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr ""
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr ""
#: template.php:108
#: template.php:118
msgid "today"
msgstr "اليوم"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr ""
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr ""
#: template.php:111
#: template.php:121
msgid "last month"
msgstr ""
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr ""
#: template.php:113
#: template.php:123
msgid "last year"
msgstr ""
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-23 00:09+0100\n"
"PO-Revision-Date: 2012-12-22 19:40+0000\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:19+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"
@ -26,8 +26,8 @@ msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
@ -43,6 +43,10 @@ msgstr ""
msgid "Base DN"
msgstr ""
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
@ -114,10 +118,18 @@ msgstr ""
msgid "Base User Tree"
msgstr ""
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2013-01-09 20:43+0000\n"
"Last-Translator: Stefan Ilivanov <ilivanov@gmail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -58,11 +58,15 @@ msgstr "Назад към файловете"
msgid "Selected files too large to generate zip file."
msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "Приложението не е включено."
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Възникна проблем с идентификацията"
@ -82,55 +86,55 @@ msgstr "Текст"
msgid "Images"
msgstr "Снимки"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "преди секунди"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "преди 1 минута"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "преди %d минути"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "преди 1 час"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "преди %d часа"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "днес"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "вчера"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "преди %d дни"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "последният месец"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "преди %d месеца"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "последната година"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "последните години"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-10 00:04+0100\n"
"PO-Revision-Date: 2012-08-12 22:45+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -26,8 +26,8 @@ msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
@ -43,6 +43,10 @@ msgstr ""
msgid "Base DN"
msgstr ""
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
@ -114,10 +118,18 @@ msgstr ""
msgid "Base User Tree"
msgstr ""
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-11 00:05+0100\n"
"PO-Revision-Date: 2013-01-10 10:27+0000\n"
"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -57,11 +57,15 @@ msgstr "ফাইলে ফিরে চল"
msgid "Selected files too large to generate zip file."
msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।"
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "অ্যাপ্লিকেসনটি সক্রিয় নয়"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "অনুমোদন ঘটিত সমস্যা"
@ -81,55 +85,55 @@ msgstr ""
msgid "Images"
msgstr ""
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "সেকেন্ড পূর্বে"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "১ মিনিট পূর্বে"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "%d মিনিট পূর্বে"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "1 ঘন্টা পূর্বে"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr ""
#: template.php:108
#: template.php:118
msgid "today"
msgstr "আজ"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "গতকাল"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "%d দিন পূর্বে"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "গত মাস"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr ""
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "গত বছর"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "বছর পূর্বে"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-11 00:05+0100\n"
"PO-Revision-Date: 2013-01-10 10:27+0000\n"
"Last-Translator: Shubhra Paul <paul_shubhra@yahoo.com>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -26,8 +26,8 @@ msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
@ -43,6 +43,10 @@ msgstr "SSL আবশ্যক না হলে আপনি এই প্র
msgid "Base DN"
msgstr "ভিত্তি DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "সুচারু ট্যঅবে গিয়ে আপনি ব্যবহারকারি এবং গোষ্ঠীসমূহের জন্য ভিত্তি DN নির্ধারণ করতে পারেন।"
@ -114,10 +118,18 @@ msgstr "পোর্ট"
msgid "Base User Tree"
msgstr "ভিত্তি ব্যবহারকারি বৃক্ষাকারে"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "ভিত্তি গোষ্ঠী বৃক্ষাকারে"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "গোষ্ঠী-সদস্য সংস্থাপন"

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-17 00:01+0100\n"
"PO-Revision-Date: 2012-11-16 08:22+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,51 +18,55 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Ajuda"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Personal"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Configuració"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Usuaris"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Aplicacions"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Administració"
#: files.php:332
#: files.php:365
msgid "ZIP download is turned off."
msgstr "La baixada en ZIP està desactivada."
#: files.php:333
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Els fitxers s'han de baixar d'un en un."
#: files.php:333 files.php:358
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Torna a Fitxers"
#: files.php:357
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "L'aplicació no està habilitada"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Error d'autenticació"
@ -82,55 +86,55 @@ msgstr "Text"
msgid "Images"
msgstr "Imatges"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "segons enrere"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "fa 1 minut"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "fa %d minuts"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "fa 1 hora"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "fa %d hores"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "avui"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "ahir"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "fa %d dies"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "el mes passat"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "fa %d mesos"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "l'any passat"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "fa anys"

View File

@ -3,13 +3,13 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# <rcalvoi@yahoo.com>, 2012.
# <rcalvoi@yahoo.com>, 2012-2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-17 00:09+0100\n"
"PO-Revision-Date: 2012-12-16 09:56+0000\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 07:21+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
@ -27,9 +27,9 @@ msgstr "<b>Avís:</b> Les aplicacions user_ldap i user_webdavauth són incompati
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr "<b>Avís:</b> El mòdul PHP LDAP necessari no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr "<b>Avís:</b> El mòdul PHP LDAP no està instal·lat, el dorsal no funcionarà. Demaneu a l'administrador del sistema que l'instal·li."
#: templates/settings.php:15
msgid "Host"
@ -44,6 +44,10 @@ msgstr "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb
msgid "Base DN"
msgstr "DN Base"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr "Una DN Base per línia"
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat"
@ -115,10 +119,18 @@ msgstr "Port"
msgid "Base User Tree"
msgstr "Arbre base d'usuaris"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr "Una DN Base d'Usuari per línia"
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Arbre base de grups"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr "Una DN Base de Grup per línia"
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Associació membres-grup"

View File

@ -3,14 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# <rcalvoi@yahoo.com>, 2012.
# <rcalvoi@yahoo.com>, 2012-2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-15 00:03+0100\n"
"PO-Revision-Date: 2013-01-14 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 07:22+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,7 +20,7 @@ msgstr ""
#: templates/settings.php:3
msgid "WebDAV Authentication"
msgstr ""
msgstr "Autenticació WebDAV"
#: templates/settings.php:4
msgid "URL: http://"
@ -31,4 +31,4 @@ msgid ""
"ownCloud will send the user credentials to this URL. This plugin checks the "
"response and will interpret the HTTP statuscodes 401 and 403 as invalid "
"credentials, and all other responses as valid credentials."
msgstr ""
msgstr "ownCloud enviarà les credencials d'usuari a aquesta URL. Aquest endollable en comprova la resposta i interpretarà els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides."

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-16 00:02+0100\n"
"PO-Revision-Date: 2012-11-15 10:08+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,51 +19,55 @@ msgstr ""
"Language: cs_CZ\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Nápověda"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Osobní"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Nastavení"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Uživatelé"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Aplikace"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Administrace"
#: files.php:332
#: files.php:365
msgid "ZIP download is turned off."
msgstr "Stahování ZIPu je vypnuto."
#: files.php:333
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Soubory musí být stahovány jednotlivě."
#: files.php:333 files.php:358
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Zpět k souborům"
#: files.php:357
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "Aplikace není povolena"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Chyba ověření"
@ -83,55 +87,55 @@ msgstr "Text"
msgid "Images"
msgstr "Obrázky"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "před vteřinami"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "před 1 minutou"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "před %d minutami"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "před hodinou"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "před %d hodinami"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "dnes"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "včera"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "před %d dny"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "minulý měsíc"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "Před %d měsíci"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "loni"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "před lety"

View File

@ -4,13 +4,13 @@
#
# Translators:
# Martin <fireball@atlas.cz>, 2012.
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012.
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-16 00:11+0100\n"
"PO-Revision-Date: 2012-12-15 15:30+0000\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 14:31+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
@ -28,8 +28,8 @@ msgstr "<b>Varování:</b> Aplikace user_ldap a user_webdavauth nejsou kompatibi
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr "<b>Varování:</b> není nainstalován LDAP modul pro PHP, podpůrná vrstva nebude fungovat. Požádejte, prosím, správce systému aby jej nainstaloval."
#: templates/settings.php:15
@ -45,6 +45,10 @@ msgstr "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte
msgid "Base DN"
msgstr "Základní DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny"
@ -116,10 +120,18 @@ msgstr "Port"
msgid "Base User Tree"
msgstr "Základní uživatelský strom"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Základní skupinový strom"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asociace člena skupiny"

View File

@ -3,14 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012.
# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-15 00:03+0100\n"
"PO-Revision-Date: 2013-01-14 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 09:06+0000\n"
"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,7 +20,7 @@ msgstr ""
#: templates/settings.php:3
msgid "WebDAV Authentication"
msgstr ""
msgstr "Ověření WebDAV"
#: templates/settings.php:4
msgid "URL: http://"
@ -31,4 +31,4 @@ msgid ""
"ownCloud will send the user credentials to this URL. This plugin checks the "
"response and will interpret the HTTP statuscodes 401 and 403 as invalid "
"credentials, and all other responses as valid credentials."
msgstr ""
msgstr "ownCloud odešle uživatelské údaje na zadanou URL. Plugin zkontroluje odpověď a považuje návratovou hodnotu HTTP 401 a 403 za neplatné údaje a všechny ostatní hodnoty jako platné přihlašovací údaje."

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-24 00:11+0100\n"
"PO-Revision-Date: 2012-12-23 21:58+0000\n"
"Last-Translator: cronner <cronner@gmail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
@ -20,27 +20,27 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:287
#: app.php:301
msgid "Help"
msgstr "Hjælp"
#: app.php:294
#: app.php:308
msgid "Personal"
msgstr "Personlig"
#: app.php:299
#: app.php:313
msgid "Settings"
msgstr "Indstillinger"
#: app.php:304
#: app.php:318
msgid "Users"
msgstr "Brugere"
#: app.php:311
#: app.php:325
msgid "Apps"
msgstr "Apps"
#: app.php:313
#: app.php:327
msgid "Admin"
msgstr "Admin"
@ -60,11 +60,15 @@ msgstr "Tilbage til Filer"
msgid "Selected files too large to generate zip file."
msgstr "De markerede filer er for store til at generere en ZIP-fil."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "Programmet er ikke aktiveret"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Adgangsfejl"
@ -84,55 +88,55 @@ msgstr "SMS"
msgid "Images"
msgstr "Billeder"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "sekunder siden"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "1 minut siden"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "%d minutter siden"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "1 time siden"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "%d timer siden"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "I dag"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "I går"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "%d dage siden"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "Sidste måned"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "%d måneder siden"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "Sidste år"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "år siden"

View File

@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-26 00:10+0100\n"
"PO-Revision-Date: 2012-12-25 19:52+0000\n"
"Last-Translator: Daraiko <blah@blacksunset.dk>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:19+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"
@ -31,8 +31,8 @@ msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
@ -48,6 +48,10 @@ msgstr "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fal
msgid "Base DN"
msgstr "Base DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "You can specify Base DN for users and groups in the Advanced tab"
@ -119,10 +123,18 @@ msgstr "Port"
msgid "Base User Tree"
msgstr "Base Bruger Træ"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Base Group Tree"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Group-Member association"

View File

@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-12 00:13+0100\n"
"PO-Revision-Date: 2012-12-11 09:31+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
@ -24,51 +24,55 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:287
#: app.php:301
msgid "Help"
msgstr "Hilfe"
#: app.php:294
#: app.php:308
msgid "Personal"
msgstr "Persönlich"
#: app.php:299
#: app.php:313
msgid "Settings"
msgstr "Einstellungen"
#: app.php:304
#: app.php:318
msgid "Users"
msgstr "Benutzer"
#: app.php:311
#: app.php:325
msgid "Apps"
msgstr "Apps"
#: app.php:313
#: app.php:327
msgid "Admin"
msgstr "Administrator"
#: files.php:361
#: files.php:365
msgid "ZIP download is turned off."
msgstr "Der ZIP-Download ist deaktiviert."
#: files.php:362
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Die Dateien müssen einzeln heruntergeladen werden."
#: files.php:362 files.php:387
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Zurück zu \"Dateien\""
#: files.php:386
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "Die Anwendung ist nicht aktiviert"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Authentifizierungs-Fehler"
@ -88,55 +92,55 @@ msgstr "Text"
msgid "Images"
msgstr "Bilder"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "Gerade eben"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "Vor einer Minute"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "Vor %d Minuten"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "Vor einer Stunde"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "Vor %d Stunden"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "Heute"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "Gestern"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "Vor %d Tag(en)"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "Letzten Monat"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "Vor %d Monaten"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "Letztes Jahr"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "Vor Jahren"

View File

@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-23 00:09+0100\n"
"PO-Revision-Date: 2012-12-22 14:04+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
@ -34,9 +34,9 @@ msgstr "<b>Warnung:</b> Die Anwendungen user_ldap und user_webdavauth sind inkom
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr "<b>Warnung:</b> Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host"
@ -51,6 +51,10 @@ msgstr "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginn
msgid "Base DN"
msgstr "Basis-DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren"
@ -122,10 +126,18 @@ msgstr "Port"
msgid "Base User Tree"
msgstr "Basis-Benutzerbaum"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Basis-Gruppenbaum"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Assoziation zwischen Gruppe und Benutzer"

View File

@ -4,14 +4,15 @@
#
# Translators:
# <blobbyjj@ymail.com>, 2012.
# <mibunrui@gmx.de>, 2013.
# <seeed@freenet.de>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-15 00:03+0100\n"
"PO-Revision-Date: 2013-01-14 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 00:30+0000\n"
"Last-Translator: AndryXY <mibunrui@gmx.de>\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"
@ -21,7 +22,7 @@ msgstr ""
#: templates/settings.php:3
msgid "WebDAV Authentication"
msgstr ""
msgstr "WebDAV Authentifikation"
#: templates/settings.php:4
msgid "URL: http://"
@ -32,4 +33,4 @@ msgid ""
"ownCloud will send the user credentials to this URL. This plugin checks the "
"response and will interpret the HTTP statuscodes 401 and 403 as invalid "
"credentials, and all other responses as valid credentials."
msgstr ""
msgstr "ownCloud wird die Benutzer-Anmeldedaten an diese URL schicken. Dieses Plugin prüft die Anmeldedaten auf ihre Gültigkeit und interpretiert die HTTP Statusfehler 401 und 403 als ungültige, sowie alle Anderen als gültige Anmeldedaten."

View File

@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-11 00:04+0100\n"
"PO-Revision-Date: 2012-12-10 13:49+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
@ -24,51 +24,55 @@ msgstr ""
"Language: de_DE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:287
#: app.php:301
msgid "Help"
msgstr "Hilfe"
#: app.php:294
#: app.php:308
msgid "Personal"
msgstr "Persönlich"
#: app.php:299
#: app.php:313
msgid "Settings"
msgstr "Einstellungen"
#: app.php:304
#: app.php:318
msgid "Users"
msgstr "Benutzer"
#: app.php:311
#: app.php:325
msgid "Apps"
msgstr "Apps"
#: app.php:313
#: app.php:327
msgid "Admin"
msgstr "Administrator"
#: files.php:361
#: files.php:365
msgid "ZIP download is turned off."
msgstr "Der ZIP-Download ist deaktiviert."
#: files.php:362
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Die Dateien müssen einzeln heruntergeladen werden."
#: files.php:362 files.php:387
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Zurück zu \"Dateien\""
#: files.php:386
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "Die Anwendung ist nicht aktiviert"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Authentifizierungs-Fehler"
@ -88,55 +92,55 @@ msgstr "Text"
msgid "Images"
msgstr "Bilder"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "Gerade eben"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "Vor einer Minute"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "Vor %d Minuten"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "Vor einer Stunde"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "Vor %d Stunden"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "Heute"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "Gestern"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "Vor %d Tag(en)"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "Letzten Monat"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "Vor %d Monaten"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "Letztes Jahr"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "Vor Jahren"

View File

@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-23 00:09+0100\n"
"PO-Revision-Date: 2012-12-22 14:04+0000\n"
"Last-Translator: Mirodin <blobbyjj@ymail.com>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
@ -33,9 +33,9 @@ msgstr "<b>Warnung:</b> Die Anwendungen user_ldap und user_webdavauth sind inkom
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr "<b>Warnung:</b> Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host"
@ -50,6 +50,10 @@ msgstr "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beg
msgid "Base DN"
msgstr "Basis-DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren"
@ -121,10 +125,18 @@ msgstr "Port"
msgid "Base User Tree"
msgstr "Basis-Benutzerbaum"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Basis-Gruppenbaum"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Assoziation zwischen Gruppe und Benutzer"

View File

@ -3,16 +3,16 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# <a.tangemann@web.de>, 2012.
# <a.tangemann@web.de>, 2012-2013.
# <multimill@gmail.com>, 2012.
# <transifex-2.7.mensaje@spamgourmet.com>, 2012.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-15 00:03+0100\n"
"PO-Revision-Date: 2013-01-14 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 22:23+0000\n"
"Last-Translator: a.tangemann <a.tangemann@web.de>\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"
@ -22,7 +22,7 @@ msgstr ""
#: templates/settings.php:3
msgid "WebDAV Authentication"
msgstr ""
msgstr "WebDAV Authentifizierung"
#: templates/settings.php:4
msgid "URL: http://"
@ -33,4 +33,4 @@ msgid ""
"ownCloud will send the user credentials to this URL. This plugin checks the "
"response and will interpret the HTTP statuscodes 401 and 403 as invalid "
"credentials, and all other responses as valid credentials."
msgstr ""
msgstr "ownCloud sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten."

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-17 00:01+0100\n"
"PO-Revision-Date: 2012-11-16 17:32+0000\n"
"Last-Translator: Efstathios Iosifidis <diamond_gr@freemail.gr>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,51 +18,55 @@ msgstr ""
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Βοήθεια"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Προσωπικά"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Ρυθμίσεις"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Χρήστες"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Εφαρμογές"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Διαχειριστής"
#: files.php:332
#: files.php:365
msgid "ZIP download is turned off."
msgstr "Η λήψη ZIP απενεργοποιήθηκε."
#: files.php:333
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα."
#: files.php:333 files.php:358
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Πίσω στα Αρχεία"
#: files.php:357
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "Δεν ενεργοποιήθηκε η εφαρμογή"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Σφάλμα πιστοποίησης"
@ -82,55 +86,55 @@ msgstr "Κείμενο"
msgid "Images"
msgstr "Εικόνες"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "δευτερόλεπτα πριν"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "1 λεπτό πριν"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "%d λεπτά πριν"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "1 ώρα πριν"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "%d ώρες πριν"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "σήμερα"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "χθές"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "%d ημέρες πριν"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "τον προηγούμενο μήνα"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "%d μήνες πριν"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "τον προηγούμενο χρόνο"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "χρόνια πριν"

View File

@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-28 00:20+0100\n"
"PO-Revision-Date: 2012-12-27 14:12+0000\n"
"Last-Translator: Konstantinos Tzanidis <tzanidis@gmail.com>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -31,9 +31,9 @@ msgstr "<b>Προσοχή:</b> Οι εφαρμογές user_ldap και user_web
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr "<b>Προσοχή:</b> Το PHP LDAP module που απαιτείται δεν είναι εγκατεστημένο και ο μηχανισμός δεν θα λειτουργήσει. Παρακαλώ ζητήστε από τον διαχειριστή του συστήματος να το εγκαταστήσει."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host"
@ -48,6 +48,10 @@ msgstr "Μπορείτε να παραλείψετε το πρωτόκολλο,
msgid "Base DN"
msgstr "Base DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις"
@ -119,10 +123,18 @@ msgstr "Θύρα"
msgid "Base User Tree"
msgstr "Base User Tree"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Base Group Tree"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Group-Member association"

View File

@ -6,13 +6,14 @@
# Dimitris M. <monopatis@gmail.com>, 2012.
# Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012.
# Konstantinos Tzanidis <tzanidis@gmail.com>, 2012.
# Marios Bekatoros <>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-15 00:03+0100\n"
"PO-Revision-Date: 2013-01-14 23:04+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 08:10+0000\n"
"Last-Translator: Marios Bekatoros <>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -22,7 +23,7 @@ msgstr ""
#: templates/settings.php:3
msgid "WebDAV Authentication"
msgstr ""
msgstr "Αυθεντικοποίηση μέσω WebDAV "
#: templates/settings.php:4
msgid "URL: http://"
@ -33,4 +34,4 @@ msgid ""
"ownCloud will send the user credentials to this URL. This plugin checks the "
"response and will interpret the HTTP statuscodes 401 and 403 as invalid "
"credentials, and all other responses as valid credentials."
msgstr ""
msgstr "Το ownCloud θα στείλει τα διαπιστευτήρια χρήστη σε αυτό το URL. Αυτό το plugin ελέγχει την απάντηση και την μετατρέπει σε HTTP κωδικό κατάστασης 401 και 403 για μη έγκυρα, όλες οι υπόλοιπες απαντήσεις είναι έγκυρες."

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-03 00:04+0100\n"
"PO-Revision-Date: 2012-12-02 21:42+0000\n"
"Last-Translator: Mariano <mstreet@kde.org.ar>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,51 +18,55 @@ msgstr ""
"Language: eo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Helpo"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Persona"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Agordo"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Uzantoj"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Aplikaĵoj"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Administranto"
#: files.php:361
#: files.php:365
msgid "ZIP download is turned off."
msgstr "ZIP-elŝuto estas malkapabligita."
#: files.php:362
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Dosieroj devas elŝutiĝi unuope."
#: files.php:362 files.php:387
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Reen al la dosieroj"
#: files.php:386
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "La aplikaĵo ne estas kapabligita"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Aŭtentiga eraro"
@ -82,55 +86,55 @@ msgstr "Teksto"
msgid "Images"
msgstr "Bildoj"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "sekundojn antaŭe"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "antaŭ 1 minuto"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "antaŭ %d minutoj"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "antaŭ 1 horo"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "antaŭ %d horoj"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "hodiaŭ"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "hieraŭ"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "antaŭ %d tagoj"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "lasta monato"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "antaŭ %d monatoj"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "lasta jaro"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "jarojn antaŭe"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-12-14 23:11+0000\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:19+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"
@ -27,8 +27,8 @@ msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
@ -44,6 +44,10 @@ msgstr "Vi povas neglekti la protokolon, escepte se vi bezonas SSL-on. Tiuokaze,
msgid "Base DN"
msgstr "Baz-DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
@ -115,10 +119,18 @@ msgstr "Pordo"
msgid "Base User Tree"
msgstr "Baza uzantarbo"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Baza gruparbo"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asocio de grupo kaj membro"

View File

@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-18 00:01+0100\n"
"PO-Revision-Date: 2012-11-17 08:43+0000\n"
"Last-Translator: Raul Fernandez Garcia <raulfg3@gmail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
@ -21,51 +21,55 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Ayuda"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Personal"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Ajustes"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Usuarios"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Aplicaciones"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Administración"
#: files.php:332
#: files.php:365
msgid "ZIP download is turned off."
msgstr "La descarga en ZIP está desactivada."
#: files.php:333
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Los archivos deben ser descargados uno por uno."
#: files.php:333 files.php:358
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Volver a Archivos"
#: files.php:357
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "La aplicación no está habilitada"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Error de autenticación"
@ -85,55 +89,55 @@ msgstr "Texto"
msgid "Images"
msgstr "Imágenes"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "hace segundos"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "hace 1 minuto"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "hace %d minutos"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "Hace 1 hora"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "Hace %d horas"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "hoy"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "ayer"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "hace %d días"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "este mes"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "Hace %d meses"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "este año"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "hace años"

View File

@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-19 00:03+0100\n"
"PO-Revision-Date: 2012-12-18 00:58+0000\n"
"Last-Translator: valarauco <manudeloz86@gmail.com>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+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"
@ -32,9 +32,9 @@ msgstr "<b>Advertencia:</b> Los Apps user_ldap y user_webdavauth son incompatibl
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr "<b>Advertencia:</b> El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host"
@ -49,6 +49,10 @@ msgstr "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece
msgid "Base DN"
msgstr "DN base"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado"
@ -120,10 +124,18 @@ msgstr "Puerto"
msgid "Base User Tree"
msgstr "Árbol base de usuario"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Árbol base de grupo"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asociación Grupo-Miembro"

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-22 00:01+0100\n"
"PO-Revision-Date: 2012-11-21 09:56+0000\n"
"Last-Translator: cjtess <claudio.tessone@gmail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,51 +18,55 @@ msgstr ""
"Language: es_AR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Ayuda"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Personal"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Ajustes"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Usuarios"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Aplicaciones"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Administración"
#: files.php:361
#: files.php:365
msgid "ZIP download is turned off."
msgstr "La descarga en ZIP está desactivada."
#: files.php:362
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Los archivos deben ser descargados de a uno."
#: files.php:362 files.php:387
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Volver a archivos"
#: files.php:386
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "La aplicación no está habilitada"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Error de autenticación"
@ -82,55 +86,55 @@ msgstr "Texto"
msgid "Images"
msgstr "Imágenes"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "hace unos segundos"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "hace 1 minuto"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "hace %d minutos"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "1 hora atrás"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "%d horas atrás"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "hoy"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "ayer"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "hace %d días"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "este mes"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "%d meses atrás"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "este año"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "hace años"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-04 13:22+0100\n"
"PO-Revision-Date: 2013-01-04 05:53+0000\n"
"Last-Translator: Agustin Ferrario <agustin.ferrario@hotmail.com.ar>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -28,9 +28,9 @@ msgstr "<b>Advertencia:</b> Los Apps user_ldap y user_webdavauth son incompatibl
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr "<b>Advertencia:</b> El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host"
@ -45,6 +45,10 @@ msgstr "Podés omitir el protocolo, excepto si SSL es requerido. En ese caso, em
msgid "Base DN"
msgstr "DN base"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\""
@ -116,10 +120,18 @@ msgstr "Puerto"
msgid "Base User Tree"
msgstr "Árbol base de usuario"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Árbol base de grupo"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asociación Grupo-Miembro"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-16 00:02+0100\n"
"PO-Revision-Date: 2012-11-14 23:13+0000\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
@ -18,51 +18,55 @@ msgstr ""
"Language: et_EE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Abiinfo"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Isiklik"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Seaded"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Kasutajad"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Rakendused"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Admin"
#: files.php:332
#: files.php:365
msgid "ZIP download is turned off."
msgstr "ZIP-ina allalaadimine on välja lülitatud."
#: files.php:333
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Failid tuleb alla laadida ükshaaval."
#: files.php:333 files.php:358
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Tagasi failide juurde"
#: files.php:357
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Valitud failid on ZIP-faili loomiseks liiga suured."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "Rakendus pole sisse lülitatud"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Autentimise viga"
@ -82,55 +86,55 @@ msgstr "Tekst"
msgid "Images"
msgstr "Pildid"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "sekundit tagasi"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "1 minut tagasi"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "%d minutit tagasi"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr ""
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr ""
#: template.php:108
#: template.php:118
msgid "today"
msgstr "täna"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "eile"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "%d päeva tagasi"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "eelmisel kuul"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr ""
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "eelmisel aastal"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "aastat tagasi"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-12-14 23:11+0000\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:19+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n"
"MIME-Version: 1.0\n"
@ -27,8 +27,8 @@ msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
@ -44,6 +44,10 @@ msgstr "Sa ei saa protokolli ära jätta, välja arvatud siis, kui sa nõuad SSL
msgid "Base DN"
msgstr "Baas DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt"
@ -115,10 +119,18 @@ msgstr "Port"
msgid "Base User Tree"
msgstr "Baaskasutaja puu"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Baasgrupi puu"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Grupiliikme seotus"

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-27 00:10+0100\n"
"PO-Revision-Date: 2012-11-25 23:10+0000\n"
"Last-Translator: asieriko <asieriko@gmail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
@ -18,51 +18,55 @@ msgstr ""
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Laguntza"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Pertsonala"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Ezarpenak"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Erabiltzaileak"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Aplikazioak"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Admin"
#: files.php:361
#: files.php:365
msgid "ZIP download is turned off."
msgstr "ZIP deskarga ez dago gaituta."
#: files.php:362
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Fitxategiak banan-banan deskargatu behar dira."
#: files.php:362 files.php:387
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Itzuli fitxategietara"
#: files.php:386
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "Aplikazioa ez dago gaituta"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Autentikazio errorea"
@ -82,55 +86,55 @@ msgstr "Testua"
msgid "Images"
msgstr "Irudiak"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "orain dela segundu batzuk"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "orain dela minutu 1"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "orain dela %d minutu"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "orain dela ordu bat"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "orain dela %d ordu"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "gaur"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "atzo"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "orain dela %d egun"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "joan den hilabetea"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "orain dela %d hilabete"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "joan den urtea"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "orain dela urte batzuk"

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-28 00:20+0100\n"
"PO-Revision-Date: 2012-12-27 20:38+0000\n"
"Last-Translator: asieriko <asieriko@gmail.com>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+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"
@ -27,9 +27,9 @@ msgstr "<b>Abisua:</b> user_ldap eta user_webdavauth aplikazioak bateraezinak di
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr "<b>Abisua:</b> PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host"
@ -44,6 +44,10 @@ msgstr "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada ha
msgid "Base DN"
msgstr "Oinarrizko DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan"
@ -115,10 +119,18 @@ msgstr "Portua"
msgid "Base User Tree"
msgstr "Oinarrizko Erabiltzaile Zuhaitza"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Oinarrizko Talde Zuhaitza"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Talde-Kide elkarketak"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-16 00:02+0100\n"
"PO-Revision-Date: 2012-11-14 23:13+0000\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
@ -18,51 +18,55 @@ msgstr ""
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "راه‌نما"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "شخصی"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "تنظیمات"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "کاربران"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr ""
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "مدیر"
#: files.php:332
#: files.php:365
msgid "ZIP download is turned off."
msgstr ""
#: files.php:333
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr ""
#: files.php:333 files.php:358
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr ""
#: files.php:357
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr ""
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr ""
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "خطا در اعتبار سنجی"
@ -82,55 +86,55 @@ msgstr "متن"
msgid "Images"
msgstr ""
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "ثانیه‌ها پیش"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "1 دقیقه پیش"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "%d دقیقه پیش"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr ""
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr ""
#: template.php:108
#: template.php:118
msgid "today"
msgstr "امروز"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "دیروز"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr ""
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "ماه قبل"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr ""
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "سال قبل"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "سال‌های قبل"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-12-14 23:11+0000\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+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"
@ -27,8 +27,8 @@ msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
@ -44,6 +44,10 @@ msgstr ""
msgid "Base DN"
msgstr ""
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr ""
@ -115,10 +119,18 @@ msgstr ""
msgid "Base User Tree"
msgstr ""
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr ""
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr ""

View File

@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-15 00:03+0100\n"
"PO-Revision-Date: 2013-01-14 23:03+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 09:13+0000\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -75,7 +75,7 @@ msgstr ""
#: ajax/vcategories/addToFavorites.php:35
#, php-format
msgid "Error adding %s to favorites."
msgstr ""
msgstr "Virhe lisätessä kohdetta %s suosikkeihin."
#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136
msgid "No categories selected for deletion."
@ -84,7 +84,7 @@ msgstr "Luokkia ei valittu poistettavaksi."
#: ajax/vcategories/removeFromFavorites.php:35
#, php-format
msgid "Error removing %s from favorites."
msgstr ""
msgstr "Virhe poistaessa kohdetta %s suosikeista."
#: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61
msgid "Settings"
@ -195,15 +195,15 @@ msgstr "Virhe oikeuksia muuttaessa"
#: js/share.js:151
msgid "Shared with you and the group {group} by {owner}"
msgstr ""
msgstr "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta"
#: js/share.js:153
msgid "Shared with you by {owner}"
msgstr ""
msgstr "Jaettu kanssasi käyttäjän {owner} toimesta"
#: js/share.js:158
msgid "Share with"
msgstr ""
msgstr "Jaa"
#: js/share.js:163
msgid "Share with link"

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-16 00:02+0100\n"
"PO-Revision-Date: 2012-11-15 20:58+0000\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,51 +18,55 @@ msgstr ""
"Language: fi_FI\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Ohje"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Henkilökohtainen"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Asetukset"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Käyttäjät"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Sovellukset"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Ylläpitäjä"
#: files.php:332
#: files.php:365
msgid "ZIP download is turned off."
msgstr "ZIP-lataus on poistettu käytöstä."
#: files.php:333
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Tiedostot on ladattava yksittäin."
#: files.php:333 files.php:358
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Takaisin tiedostoihin"
#: files.php:357
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "Sovellusta ei ole otettu käyttöön"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Todennusvirhe"
@ -82,55 +86,55 @@ msgstr "Teksti"
msgid "Images"
msgstr "Kuvat"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "sekuntia sitten"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "1 minuutti sitten"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "%d minuuttia sitten"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "1 tunti sitten"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "%d tuntia sitten"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "tänään"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "eilen"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "%d päivää sitten"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "viime kuussa"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "%d kuukautta sitten"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "viime vuonna"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "vuotta sitten"

View File

@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-15 00:11+0100\n"
"PO-Revision-Date: 2012-12-14 23:11+0000\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+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"
@ -29,8 +29,8 @@ msgstr ""
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
@ -46,6 +46,10 @@ msgstr "Voit jättää protokollan määrittämättä, paitsi kun vaadit SSL:ä
msgid "Base DN"
msgstr "Oletus DN"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished name) 'tarkemmat asetukset'-välilehdeltä "
@ -117,10 +121,18 @@ msgstr "Portti"
msgid "Base User Tree"
msgstr "Oletuskäyttäjäpuu"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Ryhmien juuri"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Ryhmän ja jäsenen assosiaatio (yhteys)"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-11-26 00:01+0100\n"
"PO-Revision-Date: 2012-11-25 00:56+0000\n"
"Last-Translator: Romain DEP. <rom1dep@gmail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
@ -19,51 +19,55 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: app.php:285
#: app.php:301
msgid "Help"
msgstr "Aide"
#: app.php:292
#: app.php:308
msgid "Personal"
msgstr "Personnel"
#: app.php:297
#: app.php:313
msgid "Settings"
msgstr "Paramètres"
#: app.php:302
#: app.php:318
msgid "Users"
msgstr "Utilisateurs"
#: app.php:309
#: app.php:325
msgid "Apps"
msgstr "Applications"
#: app.php:311
#: app.php:327
msgid "Admin"
msgstr "Administration"
#: files.php:361
#: files.php:365
msgid "ZIP download is turned off."
msgstr "Téléchargement ZIP désactivé."
#: files.php:362
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Les fichiers nécessitent d'être téléchargés un par un."
#: files.php:362 files.php:387
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Retour aux Fichiers"
#: files.php:386
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "L'application n'est pas activée"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Erreur d'authentification"
@ -83,55 +87,55 @@ msgstr "Texte"
msgid "Images"
msgstr "Images"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "à l'instant"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "il y a 1 minute"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "il y a %d minutes"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "Il y a une heure"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "Il y a %d heures"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "aujourd'hui"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "hier"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "il y a %d jours"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "le mois dernier"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "Il y a %d mois"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "l'année dernière"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "il y a plusieurs années"

View File

@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-25 00:10+0100\n"
"PO-Revision-Date: 2012-12-24 14:18+0000\n"
"Last-Translator: mishka <mishka.lazzlo@gmail.com>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+0000\n"
"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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"
@ -32,9 +32,9 @@ msgstr "<b>Avertissement:</b> Les applications user_ldap et user_webdavauth sont
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr "<b>Avertissement:</b> Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host"
@ -49,6 +49,10 @@ msgstr "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans
msgid "Base DN"
msgstr "DN Racine"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Vous pouvez détailler les DN Racines de vos utilisateurs et groupes dans l'onglet Avancé"
@ -120,10 +124,18 @@ msgstr "Port"
msgid "Base User Tree"
msgstr "DN racine de l'arbre utilisateurs"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "DN racine de l'arbre groupes"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Association groupe-membre"

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2012-12-08 00:10+0100\n"
"PO-Revision-Date: 2012-12-06 11:56+0000\n"
"Last-Translator: mbouzada <mbouzada@gmail.com>\n"
"POT-Creation-Date: 2013-01-17 00:26+0100\n"
"PO-Revision-Date: 2013-01-16 23:26+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"
@ -20,51 +20,55 @@ msgstr ""
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: app.php:287
#: app.php:301
msgid "Help"
msgstr "Axuda"
#: app.php:294
#: app.php:308
msgid "Personal"
msgstr "Persoal"
#: app.php:299
#: app.php:313
msgid "Settings"
msgstr "Configuracións"
#: app.php:304
#: app.php:318
msgid "Users"
msgstr "Usuarios"
#: app.php:311
#: app.php:325
msgid "Apps"
msgstr "Aplicativos"
#: app.php:313
#: app.php:327
msgid "Admin"
msgstr "Administración"
#: files.php:361
#: files.php:365
msgid "ZIP download is turned off."
msgstr "As descargas ZIP están desactivadas"
#: files.php:362
#: files.php:366
msgid "Files need to be downloaded one by one."
msgstr "Os ficheiros necesitan seren descargados de un en un."
#: files.php:362 files.php:387
#: files.php:366 files.php:391
msgid "Back to Files"
msgstr "Volver aos ficheiros"
#: files.php:386
#: files.php:390
msgid "Selected files too large to generate zip file."
msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip."
#: helper.php:228
msgid "couldn't be determined"
msgstr ""
#: json.php:28
msgid "Application is not enabled"
msgstr "O aplicativo non está activado"
#: json.php:39 json.php:64 json.php:77 json.php:89
#: json.php:39 json.php:62 json.php:73
msgid "Authentication error"
msgstr "Produciuse un erro na autenticación"
@ -84,55 +88,55 @@ msgstr "Texto"
msgid "Images"
msgstr "Imaxes"
#: template.php:103
#: template.php:113
msgid "seconds ago"
msgstr "hai segundos"
#: template.php:104
#: template.php:114
msgid "1 minute ago"
msgstr "hai 1 minuto"
#: template.php:105
#: template.php:115
#, php-format
msgid "%d minutes ago"
msgstr "hai %d minutos"
#: template.php:106
#: template.php:116
msgid "1 hour ago"
msgstr "Vai 1 hora"
#: template.php:107
#: template.php:117
#, php-format
msgid "%d hours ago"
msgstr "Vai %d horas"
#: template.php:108
#: template.php:118
msgid "today"
msgstr "hoxe"
#: template.php:109
#: template.php:119
msgid "yesterday"
msgstr "onte"
#: template.php:110
#: template.php:120
#, php-format
msgid "%d days ago"
msgstr "hai %d días"
#: template.php:111
#: template.php:121
msgid "last month"
msgstr "último mes"
#: template.php:112
#: template.php:122
#, php-format
msgid "%d months ago"
msgstr "Vai %d meses"
#: template.php:113
#: template.php:123
msgid "last year"
msgstr "último ano"
#: template.php:114
#: template.php:124
msgid "years ago"
msgstr "anos atrás"

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: ownCloud\n"
"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n"
"POT-Creation-Date: 2013-01-01 00:04+0100\n"
"PO-Revision-Date: 2012-12-31 08:48+0000\n"
"Last-Translator: mbouzada <mbouzada@gmail.com>\n"
"POT-Creation-Date: 2013-01-16 00:19+0100\n"
"PO-Revision-Date: 2013-01-15 23:20+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"
@ -28,9 +28,9 @@ msgstr "<b>Aviso:</b> Os aplicativos user_ldap e user_webdavauth son incompatíb
#: templates/settings.php:11
msgid ""
"<b>Warning:</b> The PHP LDAP module needs is not installed, the backend will"
" not work. Please ask your system administrator to install it."
msgstr "<b>Aviso:</b> O módulo PHP LDAP é necesario e non está instalado, a infraestrutura non funcionará. Consulte co administrador do sistema para instalalo."
"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not "
"work. Please ask your system administrator to install it."
msgstr ""
#: templates/settings.php:15
msgid "Host"
@ -45,6 +45,10 @@ msgstr "Pode omitir o protocolo agás que precise de SSL. Nese caso comece con l
msgid "Base DN"
msgstr "DN base"
#: templates/settings.php:16
msgid "One Base DN per line"
msgstr ""
#: templates/settings.php:16
msgid "You can specify Base DN for users and groups in the Advanced tab"
msgstr "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»"
@ -116,10 +120,18 @@ msgstr "Porto"
msgid "Base User Tree"
msgstr "Base da árbore de usuarios"
#: templates/settings.php:25
msgid "One User Base DN per line"
msgstr ""
#: templates/settings.php:26
msgid "Base Group Tree"
msgstr "Base da árbore de grupo"
#: templates/settings.php:26
msgid "One Group Base DN per line"
msgstr ""
#: templates/settings.php:27
msgid "Group-Member association"
msgstr "Asociación de grupos e membros"

Some files were not shown because too many files have changed in this diff Show More