From 0067ac6ca6389b61917cd7a19e7772e68ea78e8a Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 30 Jan 2013 00:16:37 +0100 Subject: [PATCH 01/91] Remove the no longer existing function "isUserVerified" Thx @eMerzh --- settings/ajax/changepassword.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 8d45e62e4d8..f6fa38fd9ba 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -15,14 +15,8 @@ if(OC_User::isAdminUser(OC_User::getUser())) { if(OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { $userstatus = 'subadmin'; } -if(OC_User::getUser() === $username) { - if (OC_User::checkPassword($username, $oldPassword)) { +if(OC_User::getUser() === $username && OC_User::checkPassword($username, $oldPassword)) { $userstatus = 'user'; - } else { - if (!OC_Util::isUserVerified()) { - $userstatus = null; - } - } } if(is_null($userstatus)) { From a7aff48658d66f9bd0df891be6bbbf9e11b2d20a Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 30 Jan 2013 00:17:41 +0100 Subject: [PATCH 02/91] Fix indentation --- settings/ajax/changepassword.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index f6fa38fd9ba..c1ff0a63701 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -16,7 +16,7 @@ if(OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) { $userstatus = 'subadmin'; } if(OC_User::getUser() === $username && OC_User::checkPassword($username, $oldPassword)) { - $userstatus = 'user'; + $userstatus = 'user'; } if(is_null($userstatus)) { From 8ded07dd5c0e15a3c05112b3fa5875f326fb44df Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 30 Jan 2013 17:49:05 +0100 Subject: [PATCH 03/91] first style fixes - @samtuke: I added some TODO regarding undefined variables and unreachable code - please review --- apps/files_encryption/lib/crypt.php | 872 ++++++++++++----------- apps/files_encryption/lib/keymanager.php | 204 +++--- 2 files changed, 553 insertions(+), 523 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index fddc89dae54..4323ad66de2 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -3,8 +3,8 @@ * ownCloud * * @author Sam Tuke, Frank Karlitschek, Robin Appelman - * @copyright 2012 Sam Tuke samtuke@owncloud.com, - * Robin Appelman icewind@owncloud.com, Frank Karlitschek + * @copyright 2012 Sam Tuke samtuke@owncloud.com, + * Robin Appelman icewind@owncloud.com, Frank Karlitschek * frank@owncloud.org * * This library is free software; you can redistribute it and/or @@ -31,7 +31,8 @@ require_once 'Crypt_Blowfish/Blowfish.php'; // - Setting if crypto should be on by default // - Add a setting "Don“t encrypt files larger than xx because of performance reasons" // - Transparent decrypt/encrypt in filesystem.php. Autodetect if a file is encrypted (.encrypted extension) -// - Don't use a password directly as encryption key. but a key which is stored on the server and encrypted with the user password. -> password change faster +// - Don't use a password directly as encryption key. but a key which is stored on the server and encrypted with +// the user password. -> password change faster // - IMPORTANT! Check if the block lenght of the encrypted data stays the same /** @@ -46,7 +47,7 @@ class Crypt { * @return string 'client' or 'server' */ public static function mode( $user = null ) { - + // $mode = \OC_Appconfig::getValue( 'files_encryption', 'mode', 'none' ); // // if ( $mode == 'user') { @@ -66,15 +67,15 @@ class Crypt { // return $mode; return 'server'; - + } - - /** - * @brief Create a new encryption keypair - * @return array publicKey, privatekey - */ + + /** + * @brief Create a new encryption keypair + * @return array publicKey, privatekey + */ public static function createKeypair() { - + $res = openssl_pkey_new(); // Get private key @@ -82,551 +83,548 @@ class Crypt { // Get public key $publicKey = openssl_pkey_get_details( $res ); - + $publicKey = $publicKey['key']; - + return( array( 'publicKey' => $publicKey, 'privateKey' => $privateKey ) ); - + } - - /** - * @brief Add arbitrary padding to encrypted data - * @param string $data data to be padded - * @return padded data - * @note In order to end up with data exactly 8192 bytes long we must add two letters. It is impossible to achieve exactly 8192 length blocks with encryption alone, hence padding is added to achieve the required length. - */ + + /** + * @brief Add arbitrary padding to encrypted data + * @param string $data data to be padded + * @return padded data + * @note In order to end up with data exactly 8192 bytes long we must add two letters. It is impossible to achieve + * exactly 8192 length blocks with encryption alone, hence padding is added to achieve the required length. + */ public static function addPadding( $data ) { - + $padded = $data . 'xx'; - + return $padded; - + } - - /** - * @brief Remove arbitrary padding to encrypted data - * @param string $padded padded data to remove padding from - * @return unpadded data on success, false on error - */ + + /** + * @brief Remove arbitrary padding to encrypted data + * @param string $padded padded data to remove padding from + * @return unpadded data on success, false on error + */ public static function removePadding( $padded ) { - + if ( substr( $padded, -2 ) == 'xx' ) { - + $data = substr( $padded, 0, -2 ); - + return $data; - + } else { - + # TODO: log the fact that unpadded data was submitted for removal of padding return false; - + } - + } - - /** - * @brief Check if a file's contents contains an IV and is symmetrically encrypted - * @return true / false - * @note see also OCA\Encryption\Util->isEncryptedPath() - */ + + /** + * @brief Check if a file's contents contains an IV and is symmetrically encrypted + * @param $content + * @return true / false + * @note see also OCA\Encryption\Util->isEncryptedPath() + */ public static function isEncryptedContent( $content ) { - + if ( !$content ) { - + return false; - + } - + $noPadding = self::removePadding( $content ); - + // Fetch encryption metadata from end of file $meta = substr( $noPadding, -22 ); - + // Fetch IV from end of file $iv = substr( $meta, -16 ); - + // Fetch identifier from start of metadata $identifier = substr( $meta, 0, 6 ); - + if ( $identifier == '00iv00') { - return true; - } else { - return false; - } - } - + /** * Check if a file is encrypted according to database file cache * @param string $path * @return bool */ public static function isEncryptedMeta( $path ) { - + # TODO: Use DI to get OC_FileCache_Cached out of here - + // Fetch all file metadata from DB $metadata = \OC_FileCache_Cached::get( $path, '' ); - + // Return encryption status return isset( $metadata['encrypted'] ) and ( bool )$metadata['encrypted']; - + } - - /** - * @brief Check if a file is encrypted via legacy system - * @return true / false - */ + + /** + * @brief Check if a file is encrypted via legacy system + * @param $content + * @return true / false + */ public static function isLegacyEncryptedContent( $content ) { - + // Fetch all file metadata from DB $metadata = \OC_FileCache_Cached::get( $content, '' ); - - // If a file is flagged with encryption in DB, but isn't a valid content + IV combination, it's probably using the legacy encryption system - if ( - $content - and isset( $metadata['encrypted'] ) - and $metadata['encrypted'] === true - and !self::isEncryptedContent( $content ) + + // If a file is flagged with encryption in DB, but isn't a valid content + IV combination, + // it's probably using the legacy encryption system + if ( + $content + and isset( $metadata['encrypted'] ) + and $metadata['encrypted'] === true + and !self::isEncryptedContent( $content ) ) { - + return true; - + } else { - + return false; - + } - + } - - /** - * @brief Symmetrically encrypt a string - * @returns encrypted file - */ + + /** + * @brief Symmetrically encrypt a string + * @returns encrypted file + */ public static function encrypt( $plainContent, $iv, $passphrase = '' ) { - + if ( $encryptedContent = openssl_encrypt( $plainContent, 'AES-128-CFB', $passphrase, false, $iv ) ) { return $encryptedContent; - - } else { - - \OC_Log::write( 'Encryption library', 'Encryption (symmetric) of content failed' , \OC_Log::ERROR ); - - return false; - - } - - } - - /** - * @brief Symmetrically decrypt a string - * @returns decrypted file - */ - public static function decrypt( $encryptedContent, $iv, $passphrase ) { - - if ( $plainContent = openssl_decrypt( $encryptedContent, 'AES-128-CFB', $passphrase, false, $iv ) ) { - return $plainContent; - - } else { - - throw new \Exception( 'Encryption library: Decryption (symmetric) of content failed' ); - + + \OC_Log::write( 'Encryption library', 'Encryption (symmetric) of content failed' , \OC_Log::ERROR ); + return false; - + } - + } - - /** - * @brief Concatenate encrypted data with its IV and padding - * @param string $content content to be concatenated - * @param string $iv IV to be concatenated - * @returns string concatenated content - */ + + /** + * @brief Symmetrically decrypt a string + * @returns decrypted file + */ + public static function decrypt( $encryptedContent, $iv, $passphrase ) { + + if ( $plainContent = openssl_decrypt( $encryptedContent, 'AES-128-CFB', $passphrase, false, $iv ) ) { + return $plainContent; + } else { + throw new \Exception( 'Encryption library: Decryption (symmetric) of content failed' ); + } + + } + + /** + * @brief Concatenate encrypted data with its IV and padding + * @param string $content content to be concatenated + * @param string $iv IV to be concatenated + * @return string concatenated content + */ public static function concatIv ( $content, $iv ) { - + $combined = $content . '00iv00' . $iv; - + return $combined; - + } - - /** - * @brief Split concatenated data and IV into respective parts - * @param string $catFile concatenated data to be split - * @returns array keys: encrypted, iv - */ + + /** + * @brief Split concatenated data and IV into respective parts + * @param string $catFile concatenated data to be split + * @returns array keys: encrypted, iv + */ public static function splitIv ( $catFile ) { - + // Fetch encryption metadata from end of file $meta = substr( $catFile, -22 ); - + // Fetch IV from end of file $iv = substr( $meta, -16 ); - + // Remove IV and IV identifier text to expose encrypted content $encrypted = substr( $catFile, 0, -22 ); - + $split = array( 'encrypted' => $encrypted - , 'iv' => $iv + , 'iv' => $iv ); - + return $split; - + } - - /** - * @brief Symmetrically encrypts a string and returns keyfile content - * @param $plainContent content to be encrypted in keyfile - * @returns encrypted content combined with IV - * @note IV need not be specified, as it will be stored in the returned keyfile - * and remain accessible therein. - */ + + /** + * @brief Symmetrically encrypts a string and returns keyfile content + * @param $plainContent content to be encrypted in keyfile + * @returns encrypted content combined with IV + * @note IV need not be specified, as it will be stored in the returned keyfile + * and remain accessible therein. + */ public static function symmetricEncryptFileContent( $plainContent, $passphrase = '' ) { - + if ( !$plainContent ) { - + return false; - + } - + $iv = self::generateIv(); - + if ( $encryptedContent = self::encrypt( $plainContent, $iv, $passphrase ) ) { - - // Combine content to encrypt with IV identifier and actual IV - $catfile = self::concatIv( $encryptedContent, $iv ); - - $padded = self::addPadding( $catfile ); - - return $padded; - + + // Combine content to encrypt with IV identifier and actual IV + $catfile = self::concatIv( $encryptedContent, $iv ); + + $padded = self::addPadding( $catfile ); + + return $padded; + } else { - + \OC_Log::write( 'Encryption library', 'Encryption (symmetric) of keyfile content failed' , \OC_Log::ERROR ); - + return false; - + } - + } /** - * @brief Symmetrically decrypts keyfile content - * @param string $source - * @param string $target - * @param string $key the decryption key - * @returns decrypted content - * - * This function decrypts a file - */ + * @brief Symmetrically decrypts keyfile content + * @param $keyfileContent + * @param string $passphrase + * @throws \Exception + * @return string + * @internal param string $source + * @internal param string $target + * @internal param string $key the decryption key + * @returns decrypted content + * + * This function decrypts a file + */ public static function symmetricDecryptFileContent( $keyfileContent, $passphrase = '' ) { - + if ( !$keyfileContent ) { - + throw new \Exception( 'Encryption library: no data provided for decryption' ); - + } - + // Remove padding $noPadding = self::removePadding( $keyfileContent ); - + // Split into enc data and catfile $catfile = self::splitIv( $noPadding ); - + if ( $plainContent = self::decrypt( $catfile['encrypted'], $catfile['iv'], $passphrase ) ) { - + return $plainContent; - + } - - } - - /** - * @brief Creates symmetric keyfile content using a generated key - * @param string $plainContent content to be encrypted - * @returns array keys: key, encrypted - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ - public static function symmetricEncryptFileContentKeyfile( $plainContent ) { - - $key = self::generateKey(); - - if( $encryptedContent = self::symmetricEncryptFileContent( $plainContent, $key ) ) { - - return array( - 'key' => $key - , 'encrypted' => $encryptedContent - ); - - } else { - - return false; - - } - - } - - /** - * @brief Create asymmetrically encrypted keyfile content using a generated key - * @param string $plainContent content to be encrypted - * @returns array keys: key, encrypted - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ - public static function multiKeyEncrypt( $plainContent, array $publicKeys ) { - - $envKeys = array(); - - if( openssl_seal( $plainContent, $sealed, $envKeys, $publicKeys ) ) { - - return array( - 'keys' => $envKeys - , 'encrypted' => $sealed - ); - - } else { - - return false; - - } - - } - - /** - * @brief Asymmetrically encrypt a file using multiple public keys - * @param string $plainContent content to be encrypted - * @returns string $plainContent decrypted string - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ - public static function multiKeyDecrypt( $encryptedContent, $envKey, $privateKey ) { - - if ( !$encryptedContent ) { - - return false; - - } - - if ( openssl_open( $encryptedContent, $plainContent, $envKey, $privateKey ) ) { - - return $plainContent; - - } else { - - \OC_Log::write( 'Encryption library', 'Decryption (asymmetric) of sealed content failed' , \OC_Log::ERROR ); - - return false; - - } - - } - - /** - * @brief Asymetrically encrypt a string using a public key - * @returns encrypted file - */ - public static function keyEncrypt( $plainContent, $publicKey ) { - - openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey ); - - return $encryptedContent; - - } - - /** - * @brief Asymetrically decrypt a file using a private key - * @returns decrypted file - */ - public static function keyDecrypt( $encryptedContent, $privatekey ) { - - openssl_private_decrypt( $encryptedContent, $plainContent, $privatekey ); - - return $plainContent; - + } - /** - * @brief Encrypts content symmetrically and generates keyfile asymmetrically - * @returns array containing catfile and new keyfile. - * keys: data, key - * @note this method is a wrapper for combining other crypt class methods - */ + /** + * @brief Creates symmetric keyfile content using a generated key + * @param string $plainContent content to be encrypted + * @return array keys: key, encrypted + * @note symmetricDecryptFileContent() can be used to decrypt files created using this method + * + * This function decrypts a file + */ + public static function symmetricEncryptFileContentKeyfile( $plainContent ) { + + $key = self::generateKey(); + + if( $encryptedContent = self::symmetricEncryptFileContent( $plainContent, $key ) ) { + + return array( + 'key' => $key + , 'encrypted' => $encryptedContent + ); + + } else { + + return false; + + } + + } + + /** + * @brief Create asymmetrically encrypted keyfile content using a generated key + * @param string $plainContent content to be encrypted + * @return array|bool + * @note symmetricDecryptFileContent() can be used to decrypt files created using this method + * + * This function decrypts a file + */ + public static function multiKeyEncrypt( $plainContent, array $publicKeys ) { + + $envKeys = array(); + + if( openssl_seal( $plainContent, $sealed, $envKeys, $publicKeys ) ) { + + return array( + 'keys' => $envKeys + , 'encrypted' => $sealed + ); + + } else { + + return false; + + } + + } + + /** + * @brief Asymmetrically encrypt a file using multiple public keys + * @param $encryptedContent + * @param $envKey + * @param $privateKey + * @return bool + * @internal param string $plainContent content to be encrypted + * @returns string $plainContent decrypted string + * @note symmetricDecryptFileContent() can be used to decrypt files created using this method + * + * This function decrypts a file + */ + public static function multiKeyDecrypt( $encryptedContent, $envKey, $privateKey ) { + + if ( !$encryptedContent ) { + + return false; + + } + + if ( openssl_open( $encryptedContent, $plainContent, $envKey, $privateKey ) ) { + + return $plainContent; + + } else { + + \OC_Log::write( 'Encryption library', 'Decryption (asymmetric) of sealed content failed' , \OC_Log::ERROR ); + + return false; + + } + + } + + /** + * @brief Asymetrically encrypt a string using a public key + * @returns encrypted file + */ + public static function keyEncrypt( $plainContent, $publicKey ) { + + openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey ); + + return $encryptedContent; + + } + + /** + * @brief Asymetrically decrypt a file using a private key + * @returns decrypted file + */ + public static function keyDecrypt( $encryptedContent, $privatekey ) { + + openssl_private_decrypt( $encryptedContent, $plainContent, $privatekey ); + + return $plainContent; + + } + + /** + * @brief Encrypts content symmetrically and generates keyfile asymmetrically + * @returns array containing catfile and new keyfile. + * keys: data, key + * @note this method is a wrapper for combining other crypt class methods + */ public static function keyEncryptKeyfile( $plainContent, $publicKey ) { - + // Encrypt plain data, generate keyfile & encrypted file $cryptedData = self::symmetricEncryptFileContentKeyfile( $plainContent ); - + // Encrypt keyfile $cryptedKey = self::keyEncrypt( $cryptedData['key'], $publicKey ); - + return array( 'data' => $cryptedData['encrypted'], 'key' => $cryptedKey ); - + } - - /** - * @brief Takes catfile, keyfile, and private key, and - * performs decryption - * @returns decrypted content - * @note this method is a wrapper for combining other crypt class methods - */ + + /** + * @brief Takes catfile, keyfile, and private key, and + * performs decryption + * @returns decrypted content + * @note this method is a wrapper for combining other crypt class methods + */ public static function keyDecryptKeyfile( $catfile, $keyfile, $privateKey ) { - + // Decrypt the keyfile with the user's private key $decryptedKeyfile = self::keyDecrypt( $keyfile, $privateKey ); - + // Decrypt the catfile symmetrically using the decrypted keyfile $decryptedData = self::symmetricDecryptFileContent( $catfile, $decryptedKeyfile ); - + return $decryptedData; - + } - + /** - * @brief Symmetrically encrypt a file by combining encrypted component data blocks - */ + * @brief Symmetrically encrypt a file by combining encrypted component data blocks + */ public static function symmetricBlockEncryptFileContent( $plainContent, $key ) { - + $crypted = ''; - + $remaining = $plainContent; - + $testarray = array(); - + while( strlen( $remaining ) ) { - + //echo "\n\n\$block = ".substr( $remaining, 0, 6126 ); - + // Encrypt a chunk of unencrypted data and add it to the rest $block = self::symmetricEncryptFileContent( substr( $remaining, 0, 6126 ), $key ); - + $padded = self::addPadding( $block ); - + $crypted .= $block; - + $testarray[] = $block; - + // Remove the data already encrypted from remaining unencrypted data $remaining = substr( $remaining, 6126 ); - + } - - //echo "hags "; - - //echo "\n\n\n\$crypted = $crypted\n\n\n"; - - //print_r($testarray); - + return $crypted; } /** - * @brief Symmetrically decrypt a file by combining encrypted component data blocks - */ + * @brief Symmetrically decrypt a file by combining encrypted component data blocks + */ public static function symmetricBlockDecryptFileContent( $crypted, $key ) { - + $decrypted = ''; - + $remaining = $crypted; - + $testarray = array(); - + while( strlen( $remaining ) ) { - + $testarray[] = substr( $remaining, 0, 8192 ); - + // Decrypt a chunk of unencrypted data and add it to the rest $decrypted .= self::symmetricDecryptFileContent( $remaining, $key ); - + // Remove the data already encrypted from remaining unencrypted data $remaining = substr( $remaining, 8192 ); - + } - - //echo "\n\n\$testarray = "; print_r($testarray); - + return $decrypted; - + } - - /** - * @brief Generates a pseudo random initialisation vector - * @return String $iv generated IV - */ + + /** + * @brief Generates a pseudo random initialisation vector + * @throws Exception + * @return String $iv generated IV + */ public static function generateIv() { - + if ( $random = openssl_random_pseudo_bytes( 12, $strong ) ) { - + if ( !$strong ) { - + // If OpenSSL indicates randomness is insecure, log error \OC_Log::write( 'Encryption library', 'Insecure symmetric key was generated using openssl_random_pseudo_bytes()' , \OC_Log::WARN ); - + } - + // We encode the iv purely for string manipulation // purposes - it gets decoded before use $iv = base64_encode( $random ); - + return $iv; - + } else { - + throw new Exception( 'Generating IV failed' ); - + } - + } - - /** - * @brief Generate a pseudo random 1024kb ASCII key - * @returns $key Generated key - */ + + /** + * @brief Generate a pseudo random 1024kb ASCII key + * @returns $key Generated key + */ public static function generateKey() { - + // Generate key if ( $key = base64_encode( openssl_random_pseudo_bytes( 183, $strong ) ) ) { - + if ( !$strong ) { - + // If OpenSSL indicates randomness is insecure, log error throw new Exception ( 'Encryption library, Insecure symmetric key was generated using openssl_random_pseudo_bytes()' ); - + } - + return $key; - + } else { - + return false; - + } - + } public static function changekeypasscode($oldPassword, $newPassword) { + // + // TODO: UNDEFINED VARIABLES: $user, $view + // + if(\OCP\User::isLoggedIn()){ $key = Keymanager::getPrivateKey( $user, $view ); - if ( ($key = Crypt::symmetricDecryptFileContent($key,$oldpasswd)) ) { - if ( ($key = Crypt::symmetricEncryptFileContent($key, $newpasswd)) ) { + if ( ($key = Crypt::symmetricDecryptFileContent($key,$oldPassword)) ) { + if ( ($key = Crypt::symmetricEncryptFileContent($key, $newPassword)) ) { Keymanager::setPrivateKey($key); return true; } @@ -634,7 +632,7 @@ class Crypt { } return false; } - + /** * @brief Get the blowfish encryption handeler for a key * @param $key string (optional) @@ -643,21 +641,21 @@ class Crypt { * if the key is left out, the default handeler will be used */ public static function getBlowfish( $key = '' ) { - + if ( $key ) { - + return new \Crypt_Blowfish( $key ); - + } else { - + return false; - + } - + } - + public static function legacyCreateKey( $passphrase ) { - + // Generate a random integer $key = mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ); @@ -665,68 +663,72 @@ class Crypt { $legacyEncKey = self::legacyEncrypt( $key, $passphrase ); return $legacyEncKey; - + } - + /** * @brief encrypts content using legacy blowfish system * @param $content the cleartext message you want to encrypt - * @param $key the encryption key (optional) + * @param string $passphrase + * @return + * @internal param \OCA\Encryption\the $key encryption key (optional) * @returns encrypted content * * This function encrypts an content */ public static function legacyEncrypt( $content, $passphrase = '' ) { - - $bf = self::getBlowfish( $passphrase ); - - return $bf->encrypt( $content ); - - } - - /** - * @brief decrypts content using legacy blowfish system - * @param $content the cleartext message you want to decrypt - * @param $key the encryption key (optional) - * @returns cleartext content - * - * This function decrypts an content - */ - public static function legacyDecrypt( $content, $passphrase = '' ) { - - $bf = self::getBlowfish( $passphrase ); - - $decrypted = $bf->decrypt( $content ); - - $trimmed = rtrim( $decrypted, "\0" ); - - return $trimmed; - - } - - public static function legacyKeyRecryptKeyfile( $legacyEncryptedContent, $legacyPassphrase, $publicKey, $newPassphrase ) { - - $decrypted = self::legacyDecrypt( $legacyEncryptedContent, $legacyPassphrase ); - - $recrypted = self::keyEncryptKeyfile( $decrypted, $publicKey ); - - return $recrypted; - - } - - /** - * @brief Re-encryptes a legacy blowfish encrypted file using AES with integrated IV - * @param $legacyContent the legacy encrypted content to re-encrypt - * @returns cleartext content - * - * This function decrypts an content - */ - public static function legacyRecrypt( $legacyContent, $legacyPassphrase, $newPassphrase ) { - - # TODO: write me - - } - -} -?> \ No newline at end of file + $bf = self::getBlowfish( $passphrase ); + + return $bf->encrypt( $content ); + + } + + /** + * @brief decrypts content using legacy blowfish system + * @param $content the cleartext message you want to decrypt + * @param string $passphrase + * @return string + * @internal param \OCA\Encryption\the $key encryption key (optional) + * @returns cleartext content + * + * This function decrypts an content + */ + public static function legacyDecrypt( $content, $passphrase = '' ) { + + $bf = self::getBlowfish( $passphrase ); + + $decrypted = $bf->decrypt( $content ); + + $trimmed = rtrim( $decrypted, "\0" ); + + return $trimmed; + + } + + public static function legacyKeyRecryptKeyfile( $legacyEncryptedContent, $legacyPassphrase, $publicKey, $newPassphrase ) { + + $decrypted = self::legacyDecrypt( $legacyEncryptedContent, $legacyPassphrase ); + + $recrypted = self::keyEncryptKeyfile( $decrypted, $publicKey ); + + return $recrypted; + + } + + /** + * @brief Re-encrypts a legacy blowfish encrypted file using AES with integrated IV + * @param $legacyContent the legacy encrypted content to re-encrypt + * @param $legacyPassphrase + * @param $newPassphrase + * @returns cleartext content + * + * This function decrypts an content + */ + public static function legacyRecrypt( $legacyContent, $legacyPassphrase, $newPassphrase ) { + + # TODO: write me + + } + +} diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 706e1c2661e..9dcee230501 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -27,63 +27,77 @@ namespace OCA\Encryption; * @note Where a method requires a view object, it's root must be '/' */ class Keymanager { - - # TODO: make all dependencies (including static classes) explicit, such as ocfsview objects, by adding them as method arguments (dependency injection) - + + // TODO: make all dependencies (including static classes) explicit, such as ocfsview objects, + // by adding them as method arguments (dependency injection) + /** * @brief retrieve the ENCRYPTED private key from a user - * + * + * @param \OC_FilesystemView $view + * @param $user * @return string private key or false * @note the key returned by this method must be decrypted before use */ public static function getPrivateKey( \OC_FilesystemView $view, $user ) { - + $path = '/' . $user . '/' . 'files_encryption' . '/' . $user.'.private.key'; - + $key = $view->file_get_contents( $path ); - + return $key; } /** * @brief retrieve public key for a specified user + * @param \OC_FilesystemView $view + * @param $userId * @return string public key or false */ public static function getPublicKey( \OC_FilesystemView $view, $userId ) { - + return $view->file_get_contents( '/public-keys/' . '/' . $userId . '.public.key' ); - + } - + /** * @brief retrieve both keys from a user (private and public) + * @param \OC_FilesystemView $view + * @param $userId * @return array keys: privateKey, publicKey */ public static function getUserKeys( \OC_FilesystemView $view, $userId ) { - + return array( 'publicKey' => self::getPublicKey( $view, $userId ) - , 'privateKey' => self::getPrivateKey( $view, $userId ) + , 'privateKey' => self::getPrivateKey( $view, $userId ) ); - + } - + /** * @brief Retrieve public keys of all users with access to a file - * @param string $path Path to file + * @param \OC_FilesystemView $view + * @param $userId + * @param $filePath + * @internal param string $path Path to file * @return array of public keys for the given file - * @note Checks that the sharing app is enabled should be performed + * @note Checks that the sharing app is enabled should be performed * by client code, that isn't checked here */ public static function getPublicKeys( \OC_FilesystemView $view, $userId, $filePath ) { - + + // + // TODO: UNDEFINED VARIABLE: $path + // + $path = ltrim( $path, '/' ); - + $filepath = '/' . $userId . '/files/' . $filePath; - + // Check if sharing is enabled if ( OC_App::isEnabled( 'files_sharing' ) ) { - + // // Check if file was shared with other users // $query = \OC_DB::prepare( " // SELECT @@ -116,45 +130,48 @@ class Keymanager { // } // // } - + } else { - + // check if it is a file owned by the user and not shared at all $userview = new \OC_FilesystemView( '/'.$userId.'/files/' ); - + if ( $userview->file_exists( $path ) ) { - + $users[] = $userId; - + } - + } - + $view = new \OC_FilesystemView( '/public-keys/' ); - + $keylist = array(); - + $count = 0; - + foreach ( $users as $user ) { - + $keylist['key'.++$count] = $view->file_get_contents( $user.'.public.key' ); - + } - + return $keylist; - + } - + /** * @brief retrieve keyfile for an encrypted file - * @param string file name + * @param \OC_FilesystemView $view + * @param $userId + * @param $filePath + * @internal param \OCA\Encryption\file $string name * @return string file key or false * @note The keyfile returned is asymmetrically encrypted. Decryption * of the keyfile must be performed by client code */ public static function getFileKey( \OC_FilesystemView $view, $userId, $filePath ) { - + $filePath_f = ltrim( $filePath, '/' ); // // update $keypath and $userId if path point to a file shared by someone else @@ -172,17 +189,19 @@ class Keymanager { // } return $view->file_get_contents( '/' . $userId . '/files_encryption/keyfiles/' . $filePath_f . '.key' ); - + } - + /** * @brief retrieve file encryption key * - * @param string file name + * @param $path + * @param string $staticUserClass + * @internal param \OCA\Encryption\file $string name * @return string file key or false */ public static function deleteFileKey( $path, $staticUserClass = 'OCP\User' ) { - + $keypath = ltrim( $path, '/' ); $user = $staticUserClass::getUser(); @@ -199,13 +218,13 @@ class Keymanager { // $keypath = str_replace( '/' . $user . '/files/', '', $keypath ); // // } - + $view = new \OC_FilesystemView('/'.$user.'/files_encryption/keyfiles/'); - + return $view->unlink( $keypath . '.key' ); - + } - + /** * @brief store private key from the user * @param string key @@ -214,21 +233,25 @@ class Keymanager { * as no encryption takes place here */ public static function setPrivateKey( $key ) { - + $user = \OCP\User::getUser(); - + $view = new \OC_FilesystemView( '/' . $user . '/files_encryption' ); - + \OC_FileProxy::$enabled = false; - + if ( !$view->file_exists( '' ) ) $view->mkdir( '' ); - + return $view->file_put_contents( $user . '.private.key', $key ); - + + // + // TODO: UNREACHABLE CODE + // + \OC_FileProxy::$enabled = true; - + } - + /** * @brief store private keys from the user * @@ -237,11 +260,11 @@ class Keymanager { * @return bool true/false */ public static function setUserKeys($privatekey, $publickey) { - + return (self::setPrivateKey($privatekey) && self::setPublicKey($publickey)); - + } - + /** * @brief store public key of the user * @@ -249,33 +272,38 @@ class Keymanager { * @return bool true/false */ public static function setPublicKey( $key ) { - + $view = new \OC_FilesystemView( '/public-keys' ); - + \OC_FileProxy::$enabled = false; - + if ( !$view->file_exists( '' ) ) $view->mkdir( '' ); - + return $view->file_put_contents( \OCP\User::getUser() . '.public.key', $key ); - + + // + // TODO: UNREACHED CODE !!! + // \OC_FileProxy::$enabled = true; - + } - + /** * @brief store file encryption key * * @param string $path relative path of the file, including filename * @param string $key + * @param null $view + * @param string $dbClassName * @return bool true/false - * @note The keyfile is not encrypted here. Client code must + * @note The keyfile is not encrypted here. Client code must * asymmetrically encrypt the keyfile before passing it to this method */ public static function setFileKey( $path, $key, $view = Null, $dbClassName = '\OC_DB') { $targetPath = ltrim( $path, '/' ); $user = \OCP\User::getUser(); - + // // update $keytarget and $user if key belongs to a file shared by someone else // $query = $dbClassName::prepare( "SELECT uid_owner, source, target FROM `*PREFIX*sharing` WHERE target = ? AND uid_shared_with = ?" ); // @@ -304,32 +332,32 @@ class Keymanager { // //TODO: check for write permission on shared file once the new sharing API is in place // // } - + $path_parts = pathinfo( $targetPath ); - + if ( !$view ) { - + $view = new \OC_FilesystemView( '/' ); - + } - + $view->chroot( '/' . $user . '/files_encryption/keyfiles' ); - + // If the file resides within a subdirectory, create it - if ( - isset( $path_parts['dirname'] ) - && ! $view->file_exists( $path_parts['dirname'] ) + if ( + isset( $path_parts['dirname'] ) + && ! $view->file_exists( $path_parts['dirname'] ) ) { - + $view->mkdir( $path_parts['dirname'] ); - + } - + // Save the keyfile in parallel directory return $view->file_put_contents( '/' . $targetPath . '.key', $key ); - + } - + /** * @brief change password of private encryption key * @@ -338,28 +366,28 @@ class Keymanager { * @return bool true/false */ public static function changePasswd($oldpasswd, $newpasswd) { - + if ( \OCP\User::checkPassword(\OCP\User::getUser(), $newpasswd) ) { return Crypt::changekeypasscode($oldpasswd, $newpasswd); } return false; - + } - + /** * @brief Fetch the legacy encryption key from user files - * @param string $login used to locate the legacy key - * @param string $passphrase used to decrypt the legacy key + * @internal param string $login used to locate the legacy key + * @internal param string $passphrase used to decrypt the legacy key * @return true / false * * if the key is left out, the default handeler will be used */ public function getLegacyKey() { - + $user = \OCP\User::getUser(); $view = new \OC_FilesystemView( '/' . $user ); return $view->file_get_contents( 'encryption.key' ); - + } - -} \ No newline at end of file + +} From 6058c2f734ca2259aebab9cc83eb63c2718b2e4d Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Mon, 4 Feb 2013 15:04:26 +0100 Subject: [PATCH 04/91] we get best results regarding mime type detection if we use fileinfo - let's tell the admin about that --- lib/util.php | 8 ++++++++ settings/admin.php | 1 + settings/templates/admin.php | 15 ++++++++++++++- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 91970ab2b96..4de34b9dfda 100755 --- a/lib/util.php +++ b/lib/util.php @@ -516,6 +516,14 @@ class OC_Util { } } + /** + * Check if the PHP module fileinfo is loaded. + * @return bool + */ + public static function fileInfoLoaded() { + return function_exists('finfo_open'); + } + /** * Check if the ownCloud server can connect to the internet */ diff --git a/settings/admin.php b/settings/admin.php index 4d9685ab920..7cca7165153 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -31,6 +31,7 @@ $tmpl->assign('entriesremain', $entriesremain); $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isinternetconnectionworking()); $tmpl->assign('islocaleworking', OC_Util::issetlocaleworking()); +$tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 0097489743f..9a9a691dcbf 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -22,7 +22,20 @@ if (!$_['htaccessworking']) { +
+ t('Module \'fileinfo\' missing');?> + + + t('The PHP module \'fileinfo\' is missing. We strongly recommend to enable this module to get best results with mime-type detection.'); ?> + + +
+
From c5079a63a81a709d8a6f0a299441c1a1c4ffcf00 Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Mon, 4 Feb 2013 23:38:10 +0100 Subject: [PATCH 05/91] Add Redirect to getUrlContent fix #1065 --- lib/util.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/util.php b/lib/util.php index 363e3f105c0..dea1c5ae4a5 100755 --- a/lib/util.php +++ b/lib/util.php @@ -639,6 +639,9 @@ class OC_Util { curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_URL, $url); + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); + curl_setopt($curl, CURLOPT_MAXREDIRS, 10); + curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); if(OC_Config::getValue('proxy','')<>'') { curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('proxy')); From 927d4c98a14e27b9412a205fb94bab2b94e8978b Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Tue, 5 Feb 2013 13:12:34 +0000 Subject: [PATCH 06/91] Fixed todos: undefined vars and unreachable code --- apps/files_encryption/lib/crypt.php | 18 ----------------- apps/files_encryption/lib/keymanager.php | 25 +++++++++--------------- apps/files_encryption/lib/util.php | 24 +++++++++++++++++++++++ 3 files changed, 33 insertions(+), 34 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 4323ad66de2..bfffda9ba32 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -615,24 +615,6 @@ class Crypt { } - public static function changekeypasscode($oldPassword, $newPassword) { - - // - // TODO: UNDEFINED VARIABLES: $user, $view - // - - if(\OCP\User::isLoggedIn()){ - $key = Keymanager::getPrivateKey( $user, $view ); - if ( ($key = Crypt::symmetricDecryptFileContent($key,$oldPassword)) ) { - if ( ($key = Crypt::symmetricEncryptFileContent($key, $newPassword)) ) { - Keymanager::setPrivateKey($key); - return true; - } - } - } - return false; - } - /** * @brief Get the blowfish encryption handeler for a key * @param $key string (optional) diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 9dcee230501..1b5dc5f7e66 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -85,15 +85,11 @@ class Keymanager { * @note Checks that the sharing app is enabled should be performed * by client code, that isn't checked here */ - public static function getPublicKeys( \OC_FilesystemView $view, $userId, $filePath ) { + public static function getPublicKeys( \OC_FilesystemView $view, $userId, $path ) { - // - // TODO: UNDEFINED VARIABLE: $path - // + $trimmed = ltrim( $path, '/' ); - $path = ltrim( $path, '/' ); - - $filepath = '/' . $userId . '/files/' . $filePath; + $filepath = '/' . $userId . '/files/' . $trimmed; // Check if sharing is enabled if ( OC_App::isEnabled( 'files_sharing' ) ) { @@ -242,13 +238,11 @@ class Keymanager { if ( !$view->file_exists( '' ) ) $view->mkdir( '' ); - return $view->file_put_contents( $user . '.private.key', $key ); - - // - // TODO: UNREACHABLE CODE - // + $result = $view->file_put_contents( $user . '.private.key', $key ); \OC_FileProxy::$enabled = true; + + return $result; } @@ -279,12 +273,11 @@ class Keymanager { if ( !$view->file_exists( '' ) ) $view->mkdir( '' ); - return $view->file_put_contents( \OCP\User::getUser() . '.public.key', $key ); + $result = $view->file_put_contents( \OCP\User::getUser() . '.public.key', $key ); - // - // TODO: UNREACHED CODE !!! - // \OC_FileProxy::$enabled = true; + + return $result; } diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index cd46d23108a..8aa926b05f6 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -289,6 +289,30 @@ class Util { } + public static function changekeypasscode( $oldPassword, $newPassword ) { + + if( \OCP\User::isLoggedIn() ) { + + $key = Keymanager::getPrivateKey( $this->userId, $this->view ); + + if ( ( $key = Crypt::symmetricDecryptFileContent( $key, $oldPassword ) ) ) { + + if ( ( $key = Crypt::symmetricEncryptFileContent( $key, $newPassword )) ) { + + Keymanager::setPrivateKey( $key ); + + return true; + + } + + } + + } + + return false; + + } + public function getPath( $pathName ) { switch ( $pathName ) { From 1adcc5fd23004cd7253c87134c30d853e1b3b8b8 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Tue, 5 Feb 2013 23:33:44 +0100 Subject: [PATCH 07/91] basic WebDAV test in place now --- lib/base.php | 23 +++++++++++++++++++++++ lib/util.php | 30 ++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/lib/base.php b/lib/base.php index 90e64f13af6..6dab980dd0e 100644 --- a/lib/base.php +++ b/lib/base.php @@ -546,6 +546,29 @@ class OC { require_once 'core/setup.php'; exit(); } + + // post installation checks + if (!OC_Config::getValue("post-installation-checked", false)) { + // setup was successful -> webdav testing now + $request = OC_Request::getPathInfo(); + if(substr($request, -4) !== '.css' and substr($request, -3) !== '.js' and substr($request, -5) !== '.json') { + if (OC_Util::isWebDAVWorking()) { + OC_Config::setValue("post-installation-checked", true); + } else { + $l=OC_L10N::get('lib'); + + $error = $l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.'); + $hint = $l->t('Please double check the installation guides.', 'http://doc.owncloud.org/server/5.0/admin_manual/installation.html'); + + $tmpl = new OC_Template('', 'error', 'guest'); + $tmpl->assign('errors', array(1 => array('error' => $error, 'hint' => $hint)), false); + $tmpl->printPage(); + exit(); + } + } + } + + $request = OC_Request::getPathInfo(); if(substr($request, -3) !== '.js'){// we need these files during the upgrade self::checkMaintenanceMode(); diff --git a/lib/util.php b/lib/util.php index 4932be2d6cc..ae0900d7e84 100755 --- a/lib/util.php +++ b/lib/util.php @@ -514,6 +514,36 @@ class OC_Util { } } + /** + * we test if webDAV is working properly + * + * The basic assumption is that if the server returns 401/Not Authenticated for an unauthenticated PROPFIND + * the web server it self is setup properly. + * + * Why not an authenticated PROFIND and other verbs? + * - We don't have the password available + * - We have no idea about other auth methods implemented (e.g. OAuth with Bearer header) + * + */ + public static function isWebDAVWorking() { + $settings = array( + 'baseUri' => OC_Helper::linkToRemote('webdav'), + ); + + $client = new \Sabre_DAV_Client($settings); + + $return = true; + try { + // test PROPFIND + $client->propfind('', array('{DAV:}resourcetype')); + } catch(\Sabre_DAV_Exception_NotAuthenticated $e) { + $return = true; + } catch(\Exception $e) { + $return = false; + } + + return $return; + } /** * Check if the setlocal call doesn't work. This can happen if the right local packages are not available on the server. From 33ec26f6d62b7558bac3665b90315c950e5cb7b0 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 6 Feb 2013 14:24:00 +0100 Subject: [PATCH 08/91] LDAP: info string improved --- apps/user_ldap/templates/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index eb3840a611b..c6f1834e013 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -35,7 +35,7 @@

-

+

>


t('Not recommended, use for testing only.');?>

From e122fdbcb63cc4e36982dc23bd2a38c904417447 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 6 Feb 2013 14:30:17 +0100 Subject: [PATCH 09/91] LDAP: when ldaps and tls are configured, disable the latter one - they do not work together. ldaps already creates a secure connection. --- apps/user_ldap/lib/connection.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index acc33e047c6..38b2b131e50 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -409,6 +409,11 @@ class Connection { $this->config[$key] = array(); } } + if((strpos($this->config['ldapHost'], 'ldaps') === 0) + && $this->config['ldapTLS']) { + $this->config['ldapTLS'] = false; + \OCP\Util::writeLog('user_ldap', 'LDAPS (already using secure connection) and TLS do not work together. Switched of TLS.', \OCP\Util::INFO); + } From 781d247b39930e54d4e40c2c197c80367827b852 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 6 Feb 2013 14:32:00 +0100 Subject: [PATCH 10/91] LDAP: better detect timeouts. do not try to reconnect. do not try to bind when connection failed. makes ownCloud more responsive, esp. with multiple server connections configured --- apps/user_ldap/lib/connection.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 38b2b131e50..9b440da4f9f 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -528,7 +528,7 @@ class Connection { if(!$this->config['ldapOverrideMainServer'] && !$this->getFromCache('overrideMainServer')) { $this->doConnect($this->config['ldapHost'], $this->config['ldapPort']); $bindStatus = $this->bind(); - $error = ldap_errno($this->ldapConnectionRes); + $error = is_resource($this->ldapConnectionRes) ? ldap_errno($this->ldapConnectionRes) : -1; } else { $bindStatus = false; $error = null; @@ -552,6 +552,9 @@ class Connection { } private function doConnect($host, $port) { + if(empty($host)) { + return false; + } $this->ldapConnectionRes = ldap_connect($host, $port); if(ldap_set_option($this->ldapConnectionRes, LDAP_OPT_PROTOCOL_VERSION, 3)) { if(ldap_set_option($this->ldapConnectionRes, LDAP_OPT_REFERRALS, 0)) { @@ -569,9 +572,13 @@ class Connection { if(!$this->config['ldapConfigurationActive']) { return false; } - $ldapLogin = @ldap_bind($this->getConnectionResource(), $this->config['ldapAgentName'], $this->config['ldapAgentPassword']); + $cr = $this->getConnectionResource(); + if(!is_resource($cr)) { + return false; + } + $ldapLogin = @ldap_bind($cr, $this->config['ldapAgentName'], $this->config['ldapAgentPassword']); if(!$ldapLogin) { - \OCP\Util::writeLog('user_ldap', 'Bind failed: ' . ldap_errno($this->ldapConnectionRes) . ': ' . ldap_error($this->ldapConnectionRes), \OCP\Util::ERROR); + \OCP\Util::writeLog('user_ldap', 'Bind failed: ' . ldap_errno($cr) . ': ' . ldap_error($cr), \OCP\Util::ERROR); $this->ldapConnectionRes = null; return false; } From d2b288ca704af4d74d1fa13e44966b1c34cf56bd Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 13:59:21 +0000 Subject: [PATCH 11/91] Reverted erroneous commit --- .htaccess | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.htaccess b/.htaccess index 5a97bdc5990..048a56d6389 100755 --- a/.htaccess +++ b/.htaccess @@ -9,8 +9,8 @@ RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION ErrorDocument 403 /core/templates/403.php ErrorDocument 404 /core/templates/404.php -php_value upload_max_filesize 512M -php_value post_max_size 512M +php_value upload_max_filesize 513M +php_value post_max_size 513M php_value memory_limit 512M SetEnv htaccessWorking true @@ -20,8 +20,11 @@ php_value memory_limit 512M RewriteEngine on RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L] +RewriteRule ^.well-known/host-meta.json /public.php?service=host-meta-json [QSA,L] RewriteRule ^.well-known/carddav /remote.php/carddav/ [R] -RewriteRule ^.well-known/caldav /remote.php/caldav/ [R] +RewriteRule ^.well-known/caldav /remote.php/caldav/ [R] +RewriteRule ^apps/calendar/caldav.php remote.php/caldav/ [QSA,L] +RewriteRule ^apps/contacts/carddav.php remote.php/carddav/ [QSA,L] RewriteRule ^apps/([^/]*)/(.*\.(css|php))$ index.php?app=$1&getfile=$2 [QSA,L] RewriteRule ^remote/(.*) remote.php [QSA,L] From 16a5ace43497ada40848ed1478caa2901a481684 Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 14:30:40 +0000 Subject: [PATCH 12/91] Fixed bug causing encrypted files to be doubly encrypted at login Added comments and docblocks --- apps/files_encryption/hooks/hooks.php | 3 +++ apps/files_encryption/lib/crypt.php | 6 ------ apps/files_encryption/lib/util.php | 14 ++++++-------- 3 files changed, 9 insertions(+), 14 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 065ef9d2410..2d7bd73487e 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -38,12 +38,15 @@ class Hooks { */ public static function login( $params ) { + // Manually initialise Filesystem{} singleton with correct + // fake root path, in order to avoid fatal webdav errors \OC\Files\Filesystem::init( $params['uid'] . '/' . 'files' . '/' ); $view = new \OC_FilesystemView( '/' ); $util = new Util( $view, $params['uid'] ); + // Check files_encryption infrastructure is ready for action if ( ! $util->ready() ) { \OC_Log::write( 'Encryption library', 'User account "' . $params['uid'] . '" is not ready for encryption; configuration started', \OC_Log::DEBUG ); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index e3ffacabc9a..136c776045c 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -133,12 +133,6 @@ class Crypt { * @note see also OCA\Encryption\Util->isEncryptedPath() */ public static function isCatfile( $content ) { - - if ( !$content ) { - - return false; - - } $noPadding = self::removePadding( $content ); diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 355ffb90ef0..52bc74db27a 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -69,11 +69,6 @@ class Util { //// DONE: add method to fetch legacy key //// DONE: add method to decrypt legacy encrypted data - //// TODO: add method to encrypt all user files using new system - //// TODO: add method to decrypt all user files using new system - //// TODO: add method to encrypt all user files using old system - //// TODO: add method to decrypt all user files using old system - // Admin UI: @@ -93,7 +88,6 @@ class Util { // Integration testing: - //// TODO: test new encryption with webdav //// TODO: test new encryption with versioning //// TODO: test new encryption with sharing //// TODO: test new encryption with proxies @@ -278,7 +272,7 @@ class Util { // will eat server resources :( if ( Keymanager::getFileKey( $this->view, $this->userId, $file ) - && Crypt::isCatfile( $filePath ) + && Crypt::isCatfile( $data ) ) { $found['encrypted'][] = array( 'name' => $file, 'path' => $filePath ); @@ -391,7 +385,6 @@ class Util { } - // FIXME: Legacy recrypting here isn't finished yet // Encrypt legacy encrypted files if ( ! empty( $legacyPassphrase ) @@ -437,6 +430,11 @@ class Util { } + /** + * @brief Return important encryption related paths + * @param string $pathName Name of the directory to return the path of + * @return string path + */ public function getPath( $pathName ) { switch ( $pathName ) { From 6870add18f92d94ec520671dfa94021b340d7a4f Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 15:08:36 +0000 Subject: [PATCH 13/91] Development snapshot --- apps/files_encryption/hooks/hooks.php | 6 ++++-- apps/files_encryption/lib/crypt.php | 18 ------------------ apps/files_encryption/lib/keymanager.php | 2 +- 3 files changed, 5 insertions(+), 21 deletions(-) diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 2d7bd73487e..9a4aef79464 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -107,14 +107,16 @@ class Hooks { * @param array $params keys: uid, password */ public static function setPassphrase( $params ) { - + trigger_error("HOSH"); // Only attempt to change passphrase if server-side encryption // is in use (client-side encryption does not have access to // the necessary keys) if ( Crypt::mode() == 'server' ) { + $session = new Session(); + // Get existing decrypted private key - $privateKey = $_SESSION['privateKey']; + $privateKey = $session->getPrivateKey(); // Encrypt private key with new user pwd as passphrase $encryptedPrivateKey = Crypt::symmetricEncryptFileContent( $privateKey, $params['password'] ); diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 136c776045c..d00f71b6141 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -45,24 +45,6 @@ class Crypt { * @return string 'client' or 'server' */ public static function mode( $user = null ) { - -// $mode = \OC_Appconfig::getValue( 'files_encryption', 'mode', 'none' ); -// -// if ( $mode == 'user') { -// if ( !$user ) { -// $user = \OCP\User::getUser(); -// } -// $mode = 'none'; -// if ( $user ) { -// $query = \OC_DB::prepare( "SELECT mode FROM *PREFIX*encryption WHERE uid = ?" ); -// $result = $query->execute(array($user)); -// if ($row = $result->fetchRow()){ -// $mode = $row['mode']; -// } -// } -// } -// -// return $mode; return 'server'; diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 43af70dacc2..65efd387813 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -206,7 +206,7 @@ class Keymanager { * as no encryption takes place here */ public static function setPrivateKey( $key ) { - + trigger_error("MOSH"); $user = \OCP\User::getUser(); $view = new \OC_FilesystemView( '/' . $user . '/files_encryption' ); From e2516a2b65185bd3081361d0b8f25e6eaf7d698f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 6 Feb 2013 16:23:22 +0100 Subject: [PATCH 14/91] allow to delete single files from the trash bin permanently --- apps/files/js/fileactions.js | 2 + apps/files_trashbin/ajax/delete.php | 24 ++++++++++++ .../js/disableDefaultActions.js | 1 + apps/files_trashbin/js/trash.js | 25 ++++++++++++ apps/files_trashbin/lib/trash.php | 39 +++++++++++++++++++ 5 files changed, 91 insertions(+) create mode 100644 apps/files_trashbin/ajax/delete.php diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index c30f1bcddd8..af3fc483910 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -115,6 +115,8 @@ var FileActions = { // NOTE: Temporary fix to allow unsharing of files in root of Shared folder if ($('#dir').val() == '/Shared') { var html = ''; + } else if (typeof trashBinApp !== 'undefined' && trashBinApp) { + var html = ''; } else { var html = ''; } diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php new file mode 100644 index 00000000000..fe41f53d49e --- /dev/null +++ b/apps/files_trashbin/ajax/delete.php @@ -0,0 +1,24 @@ + array("filename" => $file))); +} else { + OCP\JSON::error(array("data" => array("message" => "Couldn't delete ".$file. " permanently"))); +} + diff --git a/apps/files_trashbin/js/disableDefaultActions.js b/apps/files_trashbin/js/disableDefaultActions.js index 56b95407dd3..27c3e13db4d 100644 --- a/apps/files_trashbin/js/disableDefaultActions.js +++ b/apps/files_trashbin/js/disableDefaultActions.js @@ -1,3 +1,4 @@ /* disable download and sharing actions */ var disableDownloadActions = true; var disableSharing = true; +var trashBinApp = true; \ No newline at end of file diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index f1241fce51e..6c810e4c2bd 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -22,6 +22,31 @@ $(document).ready(function() { }); }; + FileActions.register('all', 'Delete', OC.PERMISSION_READ, function () { + return OC.imagePath('core', 'actions/delete'); + }, function (filename) { + $('.tipsy').remove(); + + var tr=$('tr').filterAttr('data-file', filename); + var deleteAction = $('tr').filterAttr('data-file',filename).children("td.date").children(".action.delete"); + var oldHTML = deleteAction[0].outerHTML; + var newHTML = ''; + deleteAction[0].outerHTML = newHTML; + + $.post(OC.filePath('files_trashbin','ajax','delete.php'), + {file:tr.attr('data-file') }, + function(result){ + if ( result.status == 'success' ) { + var row = document.getElementById(result.data.filename); + row.parentNode.removeChild(row); + } else { + deleteAction[0].outerHTML = oldHTML; + OC.dialogs.alert(result.data.message, 'Error'); + } + }); + + }); + // Sets the select_all checkbox behaviour : $('#select_all').click(function() { if($(this).attr('checked')){ diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index a7eff3d44e0..bf98b6dfe80 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -150,6 +150,45 @@ class Trashbin { return false; } + /** + * delete file from trash bin permanently + * @param $filename path to the file + * @param $timestamp of deletion time + * @return true/false + */ + public static function delete($filename, $timestamp=null) { + + $user = \OCP\User::getUser(); + $view = new \OC_FilesystemView('/'.$user); + + if ( $timestamp ) { + $query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE user=? AND id=? AND timestamp=?'); + $query->execute(array($user,$filename,$timestamp))->fetchAll(); + $file = $filename.'.d'.$timestamp; + } else { + $file = $filename; + } + + if ( \OCP\App::isEnabled('files_versions') ) { + if ($view->is_dir('versions_trashbin/'.$file)) { + $view->unlink('versions_trashbin/'.$file); + } else if ( $versions = self::getVersionsFromTrash($file, $timestamp) ) { + foreach ($versions as $v) { + if ($timestamp ) { + $view->unlink('versions_trashbin/'.$filename.'.v'.$v.'.d'.$timestamp); + } else { + $view->unlink('versions_trashbin/'.$file.'.v'.$v); + } + } + } + } + + $view->unlink('/files_trashbin/'.$file); + + return true; + } + + /** * clean up the trash bin */ From 8cc7bab0e5e8245977dbc0a52e89fc8a7a0f8552 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 6 Feb 2013 16:25:10 +0100 Subject: [PATCH 15/91] delete debug code --- apps/files_trashbin/ajax/delete.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index fe41f53d49e..a166ce55c88 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -14,7 +14,7 @@ if ($path_parts['dirname'] == '.') { $filename = $file; $timestamp = null; } -sleep(5); + if (OCA_Trash\Trashbin::delete($filename, $timestamp)) { error_log("feinifeini"); OCP\JSON::success(array("data" => array("filename" => $file))); From fd171a4f3407a4c4c01b7eac256e2b1a9f920f25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 6 Feb 2013 16:50:16 +0100 Subject: [PATCH 16/91] copy&paste bug, no fetchAll() needed here --- apps/files_trashbin/lib/trash.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index bf98b6dfe80..e41dcb096c9 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -163,7 +163,7 @@ class Trashbin { if ( $timestamp ) { $query = \OC_DB::prepare('DELETE FROM *PREFIX*files_trash WHERE user=? AND id=? AND timestamp=?'); - $query->execute(array($user,$filename,$timestamp))->fetchAll(); + $query->execute(array($user,$filename,$timestamp)); $file = $filename.'.d'.$timestamp; } else { $file = $filename; From a8c0e3612cf12879c5f1d20832f0cfd9b6236348 Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 16:01:43 +0000 Subject: [PATCH 17/91] Removed call to depreciated isUserVerified() --- settings/ajax/changepassword.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 8d45e62e4d8..6c4cab44a2b 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -19,9 +19,7 @@ if(OC_User::getUser() === $username) { if (OC_User::checkPassword($username, $oldPassword)) { $userstatus = 'user'; } else { - if (!OC_Util::isUserVerified()) { - $userstatus = null; - } + $userstatus = null; } } From a4f909cefd93928f87088b7111ed9f133786ebc3 Mon Sep 17 00:00:00 2001 From: Christian Koch Date: Wed, 6 Feb 2013 17:22:07 +0100 Subject: [PATCH 18/91] Update lib/public/util.php The call of \OC_MAIL::send() overrides all optional parameters. This is not necessary. But if you want to have html mail templates (what I'm thinking about) it is a real problem --- lib/public/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/public/util.php b/lib/public/util.php index a78a52f326e..968ca891b4c 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -59,9 +59,9 @@ class Util { * @param string $fromname * @param bool $html */ - public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html=0, $altbody='', $ccaddress='', $ccname='', $bcc='') { + public static function sendMail( $toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = '') { // call the internal mail class - \OC_MAIL::send($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html = 0, $altbody = '', $ccaddress = '', $ccname = '', $bcc = ''); + \OC_MAIL::send($toaddress, $toname, $subject, $mailtext, $fromaddress, $fromname, $html, $altbody, $ccaddress, $ccname, $bcc); } /** From a4d3cc798fe8b9ee4d0c13ee89059129b265c6b8 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 6 Feb 2013 17:37:47 +0100 Subject: [PATCH 19/91] Correct lib/public/contacts.php tests --- lib/public/contacts.php | 4 ++-- tests/lib/public/contacts.php | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/public/contacts.php b/lib/public/contacts.php index 44d82c37908..88d812e735a 100644 --- a/lib/public/contacts.php +++ b/lib/public/contacts.php @@ -149,14 +149,14 @@ namespace OCP { /** * @param \OCP\IAddressBook $address_book */ - public static function registerAddressBook($address_book) { + public static function registerAddressBook(\OCP\IAddressBook $address_book) { self::$address_books[$address_book->getKey()] = $address_book; } /** * @param \OCP\IAddressBook $address_book */ - public static function unregisterAddressBook($address_book) { + public static function unregisterAddressBook(\OCP\IAddressBook $address_book) { unset(self::$address_books[$address_book->getKey()]); } diff --git a/tests/lib/public/contacts.php b/tests/lib/public/contacts.php index 23994667a26..ce5d762226b 100644 --- a/tests/lib/public/contacts.php +++ b/tests/lib/public/contacts.php @@ -39,7 +39,7 @@ class Test_Contacts extends PHPUnit_Framework_TestCase public function testEnabledAfterRegister() { // create mock for the addressbook - $stub = $this->getMock("SimpleAddressBook", array('getKey')); + $stub = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey')); // we expect getKey to be called twice: // first time on register @@ -65,7 +65,7 @@ class Test_Contacts extends PHPUnit_Framework_TestCase public function testAddressBookEnumeration() { // create mock for the addressbook - $stub = $this->getMock("SimpleAddressBook", array('getKey', 'getDisplayName')); + $stub = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey', 'getDisplayName')); // setup return for method calls $stub->expects($this->any()) @@ -85,8 +85,8 @@ class Test_Contacts extends PHPUnit_Framework_TestCase public function testSearchInAddressBook() { // create mock for the addressbook - $stub1 = $this->getMock("SimpleAddressBook1", array('getKey', 'getDisplayName', 'search')); - $stub2 = $this->getMock("SimpleAddressBook2", array('getKey', 'getDisplayName', 'search')); + $stub1 = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey', 'getDisplayName', 'search')); + $stub2 = $this->getMockForAbstractClass("OCP\IAddressBook", array('getKey', 'getDisplayName', 'search')); $searchResult1 = array( array('id' => 0, 'FN' => 'Frank Karlitschek', 'EMAIL' => 'a@b.c', 'GEO' => '37.386013;-122.082932'), From 3582f7bd09f81e1aadb583ab0d36fb0cbc695514 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 6 Feb 2013 17:54:20 +0100 Subject: [PATCH 20/91] Execute the post setup check after finishing the setup --- core/routes.php | 4 ++++ core/setup.php | 2 +- lib/base.php | 22 ---------------------- lib/setup.php | 20 ++++++++++++++++++++ 4 files changed, 25 insertions(+), 23 deletions(-) diff --git a/core/routes.php b/core/routes.php index 7408858b107..2527816b662 100644 --- a/core/routes.php +++ b/core/routes.php @@ -6,6 +6,10 @@ * See the COPYING-README file. */ +// Post installation check +$this->create('post_setup_check', '/post-setup-check') + ->action('OC_Setup', 'postSetupCheck'); + // Core ajax actions // Search $this->create('search_ajax_search', '/search/ajax/search.php') diff --git a/core/setup.php b/core/setup.php index 66b8cf378bd..f16385466cb 100644 --- a/core/setup.php +++ b/core/setup.php @@ -43,7 +43,7 @@ if(isset($_POST['install']) AND $_POST['install']=='true') { OC_Template::printGuestPage("", "installation", $options); } else { - header("Location: ".OC::$WEBROOT.'/'); + header( 'Location: '.OC_Helper::linkToRoute( 'post_setup_check' )); exit(); } } diff --git a/lib/base.php b/lib/base.php index 6dab980dd0e..e195d305d5c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -547,28 +547,6 @@ class OC { exit(); } - // post installation checks - if (!OC_Config::getValue("post-installation-checked", false)) { - // setup was successful -> webdav testing now - $request = OC_Request::getPathInfo(); - if(substr($request, -4) !== '.css' and substr($request, -3) !== '.js' and substr($request, -5) !== '.json') { - if (OC_Util::isWebDAVWorking()) { - OC_Config::setValue("post-installation-checked", true); - } else { - $l=OC_L10N::get('lib'); - - $error = $l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.'); - $hint = $l->t('Please double check the installation guides.', 'http://doc.owncloud.org/server/5.0/admin_manual/installation.html'); - - $tmpl = new OC_Template('', 'error', 'guest'); - $tmpl->assign('errors', array(1 => array('error' => $error, 'hint' => $hint)), false); - $tmpl->printPage(); - exit(); - } - } - } - - $request = OC_Request::getPathInfo(); if(substr($request, -3) !== '.js'){// we need these files during the upgrade self::checkMaintenanceMode(); diff --git a/lib/setup.php b/lib/setup.php index 4dd190b99fb..f342142c957 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -610,4 +610,24 @@ class OC_Setup { file_put_contents(OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data').'/.htaccess', $content); file_put_contents(OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data').'/index.html', ''); } + + /** + * @brief Post installation checks + */ + public static function postSetupCheck($params) { + // setup was successful -> webdav testing now + if (OC_Util::isWebDAVWorking()) { + header("Location: ".OC::$WEBROOT.'/'); + } else { + $l=OC_L10N::get('lib'); + + $error = $l->t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.'); + $hint = $l->t('Please double check the installation guides.', 'http://doc.owncloud.org/server/5.0/admin_manual/installation.html'); + + $tmpl = new OC_Template('', 'error', 'guest'); + $tmpl->assign('errors', array(1 => array('error' => $error, 'hint' => $hint)), false); + $tmpl->printPage(); + exit(); + } + } } From 4c406c9ab1880558d5f09bcdb92a1f0d16e1fbb4 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 6 Feb 2013 18:19:26 +0100 Subject: [PATCH 21/91] fix shorttag issue mentioned in #1357 --- core/templates/login.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/templates/login.php b/core/templates/login.php index ed9aaba8a4c..e66d27f6d69 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -48,9 +48,9 @@
t('Alternative Logins') ?>
    - +
  • - +
From abb3635bd8921ec34e89f52b147da2029f147b5b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 6 Feb 2013 18:27:04 +0100 Subject: [PATCH 22/91] gitignore Cloud9IDE system folder --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 09af6808d64..40d6e6ca0fe 100644 --- a/.gitignore +++ b/.gitignore @@ -56,6 +56,7 @@ nbproject # Cloud9IDE .settings.xml +.c9revisions # vim ex mode .vimrc From 70d937cb29e2b1310e20f6cb8bf8d6fd53acf767 Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 17:42:15 +0000 Subject: [PATCH 23/91] Fixed syntax bug --- core/templates/login.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/templates/login.php b/core/templates/login.php index ed9aaba8a4c..e66d27f6d69 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -48,9 +48,9 @@
t('Alternative Logins') ?>
    - +
  • - +
From 81de09711b27bbe5ba421448671bfdf7cf48be22 Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 17:42:29 +0000 Subject: [PATCH 24/91] Fixed bug causing password change related hooks to not be called due to ajax --- settings/ajax/changepassword.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 6c4cab44a2b..3bc88e6b664 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -4,6 +4,8 @@ OCP\JSON::callCheck(); OC_JSON::checkLoggedIn(); +OC_APP::loadApps(); + $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); $password = $_POST["password"]; $oldPassword=isset($_POST["oldpassword"])?$_POST["oldpassword"]:''; From ae8cfe6569f3c23f162b2d36dfad3aeb3cf5b522 Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 17:43:03 +0000 Subject: [PATCH 25/91] Added comments --- lib/hook.php | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/lib/hook.php b/lib/hook.php index 4da331bb5d8..e30aefb5e18 100644 --- a/lib/hook.php +++ b/lib/hook.php @@ -20,19 +20,22 @@ class OC_Hook{ * TODO: write example */ static public function connect( $signalclass, $signalname, $slotclass, $slotname ) { - // Create the data structure + // If we're trying to connect to an emitting class that isn't + // yet registered, register it if( !array_key_exists( $signalclass, self::$registered )) { self::$registered[$signalclass] = array(); } - if( !array_key_exists( $signalname, self::$registered[$signalclass] )) { + // If we're trying to connect to an emitting method that isn't + // yet registered, register it with the emitting class + if( !array_key_exists( $signalname, self::$registered[$signalclass] )) { self::$registered[$signalclass][$signalname] = array(); } - - // register hook + + // Connect the hook handler to the requested emitter self::$registered[$signalclass][$signalname][] = array( "class" => $slotclass, "name" => $slotname ); - + // No chance for failure ;-) return true; } @@ -49,14 +52,19 @@ class OC_Hook{ * TODO: write example */ static public function emit( $signalclass, $signalname, $params = array()) { - // Return false if there are no slots + + // Return false if no hook handlers are listening to this + // emitting class if( !array_key_exists( $signalclass, self::$registered )) { return false; } + + // Return false if no hook handlers are listening to this + // emitting method if( !array_key_exists( $signalname, self::$registered[$signalclass] )) { return false; } - + // Call all slots foreach( self::$registered[$signalclass][$signalname] as $i ) { try { From 2b07afc8ab5eddb53973f57a63e586ffde201809 Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 17:59:47 +0000 Subject: [PATCH 26/91] Removed debugging code --- apps/files_encryption/appinfo/app.php | 2 +- apps/files_encryption/hooks/hooks.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index e426f237bbe..f83109a18ea 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -12,7 +12,7 @@ OC_FileProxy::register( new OCA\Encryption\Proxy() ); // User-related hooks OCP\Util::connectHook( 'OC_User', 'post_login', 'OCA\Encryption\Hooks', 'login' ); -OCP\Util::connectHook( 'OC_User', 'post_setPassword','OCA\Encryption\Hooks', 'setPassphrase' ); +OCP\Util::connectHook( 'OC_User', 'pre_setPassword','OCA\Encryption\Hooks', 'setPassphrase' ); // Sharing-related hooks OCP\Util::connectHook( 'OCP\Share', 'post_shared', 'OCA\Encryption\Hooks', 'postShared' ); diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 9a4aef79464..8bdeee0937b 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -107,7 +107,7 @@ class Hooks { * @param array $params keys: uid, password */ public static function setPassphrase( $params ) { - trigger_error("HOSH"); + // Only attempt to change passphrase if server-side encryption // is in use (client-side encryption does not have access to // the necessary keys) From 954a6274836e8fbf83fbbfb34fc89c250c7da13b Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 18:24:35 +0000 Subject: [PATCH 27/91] Added comment --- apps/files_encryption/lib/keymanager.php | 2 +- settings/ajax/changepassword.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 65efd387813..43af70dacc2 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -206,7 +206,7 @@ class Keymanager { * as no encryption takes place here */ public static function setPrivateKey( $key ) { - trigger_error("MOSH"); + $user = \OCP\User::getUser(); $view = new \OC_FilesystemView( '/' . $user . '/files_encryption' ); diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index 3bc88e6b664..ce4e326830c 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -4,6 +4,7 @@ OCP\JSON::callCheck(); OC_JSON::checkLoggedIn(); +// Manually load apps to ensure hooks work correctly (workaround for issue 1503) OC_APP::loadApps(); $username = isset($_POST["username"]) ? $_POST["username"] : OC_User::getUser(); From ddd47978e115381e2fa9f22496994c54383c67f4 Mon Sep 17 00:00:00 2001 From: Myles McNamara Date: Wed, 6 Feb 2013 13:44:41 -0500 Subject: [PATCH 28/91] Remove left float from actions div class --- apps/files/css/files.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index f37ac4c262a..67bd569ceef 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -3,7 +3,7 @@ See the COPYING-README file. */ /* FILE MENU */ -.actions { padding:.3em; float:left; height:2em; width: 100%; } +.actions { padding:.3em; height:2em; width: 100%; } .actions input, .actions button, .actions .button { margin:0; float:left; } #new { From 2c22619a18961d107b61b7486f2caf5cff4bc6a5 Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 19:06:55 +0000 Subject: [PATCH 29/91] Reverted fix temporarily; another fix by LukasReschke is awaiting merge --- settings/ajax/changepassword.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index ce4e326830c..3077e77bf4a 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -22,7 +22,9 @@ if(OC_User::getUser() === $username) { if (OC_User::checkPassword($username, $oldPassword)) { $userstatus = 'user'; } else { - $userstatus = null; + if (!OC_Util::isUserVerified()) { + $userstatus = null; + } } } From fd8cb9974be30aaca0d65d1807d6a4f784da5f0b Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 6 Feb 2013 23:36:38 +0100 Subject: [PATCH 30/91] initial version of a local storage implementation which will use unique slugified filename on the local filesystem. This implementation will only be enabled on windows based system to solve the issues around UTF-8 file names with php on windows. --- db_structure.xml | 44 ++++ lib/files/mapper.php | 216 ++++++++++++++++++ lib/files/storage/local.php | 5 + lib/files/storage/mappedlocal.php | 335 ++++++++++++++++++++++++++++ lib/files/storage/temporary.php | 1 + tests/lib/files/storage/storage.php | 17 +- 6 files changed, 614 insertions(+), 4 deletions(-) create mode 100644 lib/files/mapper.php create mode 100644 lib/files/storage/mappedlocal.php diff --git a/db_structure.xml b/db_structure.xml index f4111bfabd0..fc7f1082ffa 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -94,6 +94,50 @@ + + + *dbprefix*file_map + + + + + logic_path + text + + true + 512 + + + + physic_path + text + + true + 512 + + + + file_map_lp_index + true + + logic_path + ascending + + + + + file_map_pp_index + true + + physic_path + ascending + + + + + +
+ *dbprefix*mimetypes diff --git a/lib/files/mapper.php b/lib/files/mapper.php new file mode 100644 index 00000000000..90e4e1ca669 --- /dev/null +++ b/lib/files/mapper.php @@ -0,0 +1,216 @@ +resolveLogicPath($logicPath); + if ($physicalPath !== null) { + return $physicalPath; + } + + return $this->create($logicPath, $create); + } + + /** + * @param string $physicalPath + * @return string|null + */ + public function physicalToLogic($physicalPath) { + $logicPath = $this->resolvePhysicalPath($physicalPath); + if ($logicPath !== null) { + return $logicPath; + } + + $this->insert($physicalPath, $physicalPath); + return $physicalPath; + } + + /** + * @param string $path + * @param bool $isLogicPath indicates if $path is logical or physical + * @param $recursive + */ + public function removePath($path, $isLogicPath, $recursive) { + if ($recursive) { + $path=$path.'%'; + } + + if ($isLogicPath) { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*file_map` WHERE `logic_path` LIKE ?'); + $query->execute(array($path)); + } else { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*file_map` WHERE `physic_path` LIKE ?'); + $query->execute(array($path)); + } + } + + /** + * @param $path1 + * @param $path2 + * @throws \Exception + */ + public function copy($path1, $path2) + { + $path1 = $this->stripLast($path1); + $path2 = $this->stripLast($path2); + $physicPath1 = $this->logicToPhysical($path1, true); + $physicPath2 = $this->logicToPhysical($path2, true); + + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*file_map` WHERE `logic_path` LIKE ?'); + $result = $query->execute(array($path1.'%')); + $updateQuery = \OC_DB::prepare('UPDATE `*PREFIX*file_map`' + .' SET `logic_path` = ?' + .' AND `physic_path` = ?' + .' WHERE `logic_path` = ?'); + while( $row = $result->fetchRow()) { + $currentLogic = $row['logic_path']; + $currentPhysic = $row['physic_path']; + $newLogic = $path2.$this->stripRootFolder($currentLogic, $path1); + $newPhysic = $physicPath2.$this->stripRootFolder($currentPhysic, $physicPath1); + if ($path1 !== $currentLogic) { + try { + $updateQuery->execute(array($newLogic, $newPhysic, $currentLogic)); + } catch (\Exception $e) { + error_log('Mapper::Copy failed '.$currentLogic.' -> '.$newLogic.'\n'.$e); + throw $e; + } + } + } + } + + /** + * @param $path + * @param $root + * @return bool|string + */ + public function stripRootFolder($path, $root) { + if (strpos($path, $root) !== 0) { + // throw exception ??? + return false; + } + if (strlen($path) > strlen($root)) { + return substr($path, strlen($root)); + } + + return ''; + } + + private function stripLast($path) { + if (substr($path, -1) == '/') { + $path = substr_replace($path ,'',-1); + } + return $path; + } + + private function resolveLogicPath($logicPath) { + $logicPath = $this->stripLast($logicPath); + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*file_map` WHERE `logic_path` = ?'); + $result = $query->execute(array($logicPath)); + $result = $result->fetchRow(); + + return $result['physic_path']; + } + + private function resolvePhysicalPath($physicalPath) { + $physicalPath = $this->stripLast($physicalPath); + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*file_map` WHERE `physic_path` = ?'); + $result = $query->execute(array($physicalPath)); + $result = $result->fetchRow(); + + return $result['logic_path']; + } + + private function create($logicPath, $store) { + $logicPath = $this->stripLast($logicPath); + $index = 0; + + // create the slugified path + $physicalPath = $this->slugifyPath($logicPath); + + // detect duplicates + while ($this->resolvePhysicalPath($physicalPath) !== null) { + $physicalPath = $this->slugifyPath($physicalPath, $index++); + } + + // insert the new path mapping if requested + if ($store) { + $this->insert($logicPath, $physicalPath); + } + + return $physicalPath; + } + + private function insert($logicPath, $physicalPath) { + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*file_map`(`logic_path`,`physic_path`) VALUES(?,?)'); + $query->execute(array($logicPath, $physicalPath)); + } + + private function slugifyPath($path, $index=null) { + $pathElements = explode('/', $path); + $sluggedElements = array(); + + // skip slugging the drive letter on windows - TODO: test if local path + if (strpos(strtolower(php_uname('s')), 'win') !== false) { + $sluggedElements[]= $pathElements[0]; + array_shift($pathElements); + } + foreach ($pathElements as $pathElement) { + // TODO: remove file ext before slugify on last element + $sluggedElements[] = self::slugify($pathElement); + } + + // + // TODO: add the index before the file extension + // + if ($index !== null) { + $last= end($sluggedElements); + array_pop($sluggedElements); + array_push($sluggedElements, $last.'-'.$index); + } + return implode(DIRECTORY_SEPARATOR, $sluggedElements); + } + + /** + * Modifies a string to remove all non ASCII characters and spaces. + * + * @param string $text + * @return string + */ + private function slugify($text) + { + // replace non letter or digits by - + $text = preg_replace('~[^\\pL\d]+~u', '-', $text); + + // trim + $text = trim($text, '-'); + + // transliterate + if (function_exists('iconv')) { + $text = iconv('utf-8', 'us-ascii//TRANSLIT', $text); + } + + // lowercase + $text = strtolower($text); + + // remove unwanted characters + $text = preg_replace('~[^-\w]+~', '', $text); + + if (empty($text)) + { + // TODO: we better generate a guid in this case + return 'n-a'; + } + + return $text; + } +} diff --git a/lib/files/storage/local.php b/lib/files/storage/local.php index a5db4ba9194..d387a898320 100644 --- a/lib/files/storage/local.php +++ b/lib/files/storage/local.php @@ -8,6 +8,10 @@ namespace OC\Files\Storage; +if (\OC_Util::runningOnWindows()) { + require_once 'mappedlocal.php'; +} else { + /** * for local filestore, we only have to map the paths */ @@ -245,3 +249,4 @@ class Local extends \OC\Files\Storage\Common{ return $this->filemtime($path)>$time; } } +} diff --git a/lib/files/storage/mappedlocal.php b/lib/files/storage/mappedlocal.php new file mode 100644 index 00000000000..80dd79bc41f --- /dev/null +++ b/lib/files/storage/mappedlocal.php @@ -0,0 +1,335 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ +namespace OC\Files\Storage; + +/** + * for local filestore, we only have to map the paths + */ +class Local extends \OC\Files\Storage\Common{ + protected $datadir; + private $mapper; + + public function __construct($arguments) { + $this->datadir=$arguments['datadir']; + if(substr($this->datadir, -1)!=='/') { + $this->datadir.='/'; + } + + $this->mapper= new \OC\Files\Mapper(); + } + public function __destruct() { + if (defined('PHPUNIT_RUN')) { + $this->mapper->removePath($this->datadir, true, true); + } + } + public function getId(){ + return 'local::'.$this->datadir; + } + public function mkdir($path) { + return @mkdir($this->buildPath($path)); + } + public function rmdir($path) { + if ($result = @rmdir($this->buildPath($path))) { + $this->cleanMapper($path); + } + return $result; + } + public function opendir($path) { + $files = array('.', '..'); + $physicalPath= $this->buildPath($path); + + $logicalPath = $this->mapper->physicalToLogic($physicalPath); + $dh = opendir($physicalPath); + while ($file = readdir($dh)) { + if ($file === '.' or $file === '..') { + continue; + } + + $logicalFilePath = $this->mapper->physicalToLogic($physicalPath.DIRECTORY_SEPARATOR.$file); + + $file= $this->mapper->stripRootFolder($logicalFilePath, $logicalPath); + $file = $this->stripLeading($file); + $files[]= $file; + } + + \OC\Files\Stream\Dir::register('local-win32'.$path, $files); + return opendir('fakedir://local-win32'.$path); + } + public function is_dir($path) { + if(substr($path,-1)=='/') { + $path=substr($path, 0, -1); + } + return is_dir($this->buildPath($path)); + } + public function is_file($path) { + return is_file($this->buildPath($path)); + } + public function stat($path) { + $fullPath = $this->buildPath($path); + $statResult = stat($fullPath); + + if ($statResult['size'] < 0) { + $size = self::getFileSizeFromOS($fullPath); + $statResult['size'] = $size; + $statResult[7] = $size; + } + return $statResult; + } + public function filetype($path) { + $filetype=filetype($this->buildPath($path)); + if($filetype=='link') { + $filetype=filetype(realpath($this->buildPath($path))); + } + return $filetype; + } + public function filesize($path) { + if($this->is_dir($path)) { + return 0; + }else{ + $fullPath = $this->buildPath($path); + $fileSize = filesize($fullPath); + if ($fileSize < 0) { + return self::getFileSizeFromOS($fullPath); + } + + return $fileSize; + } + } + public function isReadable($path) { + return is_readable($this->buildPath($path)); + } + public function isUpdatable($path) { + return is_writable($this->buildPath($path)); + } + public function file_exists($path) { + return file_exists($this->buildPath($path)); + } + public function filemtime($path) { + return filemtime($this->buildPath($path)); + } + public function touch($path, $mtime=null) { + // sets the modification time of the file to the given value. + // If mtime is nil the current time is set. + // note that the access time of the file always changes to the current time. + if(!is_null($mtime)) { + $result=touch( $this->buildPath($path), $mtime ); + }else{ + $result=touch( $this->buildPath($path)); + } + if( $result ) { + clearstatcache( true, $this->buildPath($path) ); + } + + return $result; + } + public function file_get_contents($path) { + return file_get_contents($this->buildPath($path)); + } + public function file_put_contents($path, $data) {//trigger_error("$path = ".var_export($path, 1)); + return file_put_contents($this->buildPath($path), $data); + } + public function unlink($path) { + return $this->delTree($path); + } + public function rename($path1, $path2) { + if (!$this->isUpdatable($path1)) { + \OC_Log::write('core','unable to rename, file is not writable : '.$path1,\OC_Log::ERROR); + return false; + } + if(! $this->file_exists($path1)) { + \OC_Log::write('core','unable to rename, file does not exists : '.$path1,\OC_Log::ERROR); + return false; + } + + $physicPath1 = $this->buildPath($path1); + $physicPath2 = $this->buildPath($path2); + if($return=rename($physicPath1, $physicPath2)) { + // mapper needs to create copies or all children + $this->copyMapping($path1, $path2); + $this->cleanMapper($physicPath1, false, true); + } + return $return; + } + public function copy($path1, $path2) { + if($this->is_dir($path2)) { + if(!$this->file_exists($path2)) { + $this->mkdir($path2); + } + $source=substr($path1, strrpos($path1, '/')+1); + $path2.=$source; + } + if($return=copy($this->buildPath($path1), $this->buildPath($path2))) { + // mapper needs to create copies or all children + $this->copyMapping($path1, $path2); + } + return $return; + } + public function fopen($path, $mode) { + if($return=fopen($this->buildPath($path), $mode)) { + switch($mode) { + case 'r': + break; + case 'r+': + case 'w+': + case 'x+': + case 'a+': + break; + case 'w': + case 'x': + case 'a': + break; + } + } + return $return; + } + + public function getMimeType($path) { + if($this->isReadable($path)) { + return \OC_Helper::getMimeType($this->buildPath($path)); + }else{ + return false; + } + } + + private function delTree($dir, $isLogicPath=true) { + $dirRelative=$dir; + if ($isLogicPath) { + $dir=$this->buildPath($dir); + } + if (!file_exists($dir)) { + return true; + } + if (!is_dir($dir) || is_link($dir)) { + if($return=unlink($dir)) { + $this->cleanMapper($dir, false); + return $return; + } + } + foreach (scandir($dir) as $item) { + if ($item == '.' || $item == '..') { + continue; + } + if(is_file($dir.'/'.$item)) { + if(unlink($dir.'/'.$item)) { + $this->cleanMapper($dir.'/'.$item, false); + } + }elseif(is_dir($dir.'/'.$item)) { + if (!$this->delTree($dir. "/" . $item, false)) { + return false; + }; + } + } + if($return=rmdir($dir)) { + $this->cleanMapper($dir, false); + } + return $return; + } + + private static function getFileSizeFromOS($fullPath) { + $name = strtolower(php_uname('s')); + // Windows OS: we use COM to access the filesystem + if (strpos($name, 'win') !== false) { + if (class_exists('COM')) { + $fsobj = new \COM("Scripting.FileSystemObject"); + $f = $fsobj->GetFile($fullPath); + return $f->Size; + } + } else if (strpos($name, 'bsd') !== false) { + if (\OC_Helper::is_function_enabled('exec')) { + return (float)exec('stat -f %z ' . escapeshellarg($fullPath)); + } + } else if (strpos($name, 'linux') !== false) { + if (\OC_Helper::is_function_enabled('exec')) { + return (float)exec('stat -c %s ' . escapeshellarg($fullPath)); + } + } else { + \OC_Log::write('core', 'Unable to determine file size of "'.$fullPath.'". Unknown OS: '.$name, \OC_Log::ERROR); + } + + return 0; + } + + public function hash($path, $type, $raw=false) { + return hash_file($type, $this->buildPath($path), $raw); + } + + public function free_space($path) { + return @disk_free_space($this->buildPath($path)); + } + + public function search($query) { + return $this->searchInDir($query); + } + public function getLocalFile($path) { + return $this->buildPath($path); + } + public function getLocalFolder($path) { + return $this->buildPath($path); + } + + protected function searchInDir($query, $dir='', $isLogicPath=true) { + $files=array(); + $physicalDir = $this->buildPath($dir); + foreach (scandir($physicalDir) as $item) { + if ($item == '.' || $item == '..') + continue; + $physicalItem = $this->mapper->physicalToLogic($physicalDir.DIRECTORY_SEPARATOR.$item); + $item = substr($physicalItem, strlen($physicalDir)+1); + + if(strstr(strtolower($item), strtolower($query)) !== false) { + $files[]=$dir.'/'.$item; + } + if(is_dir($physicalItem)) { + $files=array_merge($files, $this->searchInDir($query, $physicalItem, false)); + } + } + return $files; + } + + /** + * check if a file or folder has been updated since $time + * @param string $path + * @param int $time + * @return bool + */ + public function hasUpdated($path, $time) { + return $this->filemtime($path)>$time; + } + + private function buildPath($path, $create=true) { + $path = $this->stripLeading($path); + $fullPath = $this->datadir.$path; + return $this->mapper->logicToPhysical($fullPath, $create); + } + + private function cleanMapper($path, $isLogicPath=true, $recursive=true) { + $fullPath = $path; + if ($isLogicPath) { + $fullPath = $this->datadir.$path; + } + $this->mapper->removePath($fullPath, $isLogicPath, $recursive); + } + + private function copyMapping($path1, $path2) { + $path1 = $this->stripLeading($path1); + $path2 = $this->stripLeading($path2); + + $fullPath1 = $this->datadir.$path1; + $fullPath2 = $this->datadir.$path2; + + $this->mapper->copy($fullPath1, $fullPath2); + } + + private function stripLeading($path) { + if(strpos($path, '/') === 0) { + $path = substr($path, 1); + } + + return $path; + } +} diff --git a/lib/files/storage/temporary.php b/lib/files/storage/temporary.php index 542d2cd9f48..d84dbda2e39 100644 --- a/lib/files/storage/temporary.php +++ b/lib/files/storage/temporary.php @@ -21,6 +21,7 @@ class Temporary extends Local{ } public function __destruct() { + parent::__destruct(); $this->cleanUp(); } } diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index 781c0f92c92..c74a16f509f 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -146,10 +146,19 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $localFolder = $this->instance->getLocalFolder('/folder'); $this->assertTrue(is_dir($localFolder)); - $this->assertTrue(file_exists($localFolder . '/lorem.txt')); - $this->assertEquals(file_get_contents($localFolder . '/lorem.txt'), file_get_contents($textFile)); - $this->assertEquals(file_get_contents($localFolder . '/bar.txt'), 'asd'); - $this->assertEquals(file_get_contents($localFolder . '/recursive/file.txt'), 'foo'); + + // test below require to use instance->getLocalFile because the physical storage might be different + $localFile = $this->instance->getLocalFile('/folder/lorem.txt'); + $this->assertTrue(file_exists($localFile)); + $this->assertEquals(file_get_contents($localFile), file_get_contents($textFile)); + + $localFile = $this->instance->getLocalFile('/folder/bar.txt'); + $this->assertTrue(file_exists($localFile)); + $this->assertEquals(file_get_contents($localFile), 'asd'); + + $localFile = $this->instance->getLocalFile('/folder/recursive/file.txt'); + $this->assertTrue(file_exists($localFile)); + $this->assertEquals(file_get_contents($localFile), 'foo'); } public function testStat() { From 35bd7a400d30fb27703d4fa02b107f9629845b7d Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 7 Feb 2013 00:11:04 +0100 Subject: [PATCH 31/91] [tx-robot] updated from transifex --- apps/files/l10n/es_AR.php | 5 +- apps/files/l10n/ru.php | 8 ++- apps/files_encryption/l10n/ca.php | 3 + apps/files_encryption/l10n/cs_CZ.php | 3 + apps/files_encryption/l10n/es.php | 3 + apps/files_encryption/l10n/it.php | 3 + apps/files_encryption/l10n/lv.php | 3 + apps/files_encryption/l10n/sv.php | 3 + apps/files_sharing/l10n/sr.php | 3 +- apps/files_trashbin/l10n/sv.php | 1 + apps/user_ldap/l10n/es_AR.php | 15 +++++ core/l10n/ru.php | 3 + l10n/af_ZA/core.po | 10 +++- l10n/af_ZA/files.po | 48 +++++++++------- l10n/af_ZA/files_trashbin.po | 22 ++++--- l10n/af_ZA/settings.po | 71 ++++++++++++++--------- l10n/ar/core.po | 38 ++++++------ l10n/ar/files.po | 46 ++++++++------- l10n/ar/files_trashbin.po | 22 ++++--- l10n/ar/settings.po | 71 ++++++++++++++--------- l10n/bg_BG/core.po | 38 ++++++------ l10n/bg_BG/files.po | 46 ++++++++------- l10n/bg_BG/files_trashbin.po | 22 ++++--- l10n/bg_BG/settings.po | 71 ++++++++++++++--------- l10n/bn_BD/core.po | 40 +++++++------ l10n/bn_BD/files.po | 46 ++++++++------- l10n/bn_BD/files_trashbin.po | 22 ++++--- l10n/bn_BD/settings.po | 71 ++++++++++++++--------- l10n/ca/core.po | 40 +++++++------ l10n/ca/files.po | 48 +++++++++------- l10n/ca/files_encryption.po | 12 ++-- l10n/ca/files_trashbin.po | 22 ++++--- l10n/ca/settings.po | 73 ++++++++++++++--------- l10n/cs_CZ/core.po | 40 +++++++------ l10n/cs_CZ/files.po | 48 +++++++++------- l10n/cs_CZ/files_encryption.po | 12 ++-- l10n/cs_CZ/files_trashbin.po | 22 ++++--- l10n/cs_CZ/settings.po | 73 ++++++++++++++--------- l10n/da/core.po | 38 ++++++------ l10n/da/files.po | 46 ++++++++------- l10n/da/files_trashbin.po | 22 ++++--- l10n/da/settings.po | 71 ++++++++++++++--------- l10n/de/core.po | 38 ++++++------ l10n/de/files.po | 46 ++++++++------- l10n/de/files_trashbin.po | 22 ++++--- l10n/de/settings.po | 71 ++++++++++++++--------- l10n/de_DE/core.po | 38 ++++++------ l10n/de_DE/files.po | 48 +++++++++------- l10n/de_DE/files_trashbin.po | 22 ++++--- l10n/de_DE/settings.po | 73 ++++++++++++++--------- l10n/el/core.po | 38 ++++++------ l10n/el/files.po | 46 ++++++++------- l10n/el/files_trashbin.po | 22 ++++--- l10n/el/settings.po | 71 ++++++++++++++--------- l10n/eo/core.po | 38 ++++++------ l10n/eo/files.po | 46 ++++++++------- l10n/eo/files_trashbin.po | 22 ++++--- l10n/eo/settings.po | 71 ++++++++++++++--------- l10n/es/core.po | 40 +++++++------ l10n/es/files.po | 14 +++-- l10n/es/files_encryption.po | 13 +++-- l10n/es/files_trashbin.po | 24 ++++---- l10n/es/settings.po | 59 ++++++++++++------- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 40 +++++++------ l10n/es_AR/files.po | 52 +++++++++-------- l10n/es_AR/files_trashbin.po | 22 ++++--- l10n/es_AR/settings.po | 71 ++++++++++++++--------- l10n/es_AR/user_ldap.po | 36 ++++++------ l10n/et_EE/core.po | 38 ++++++------ l10n/et_EE/files.po | 46 ++++++++------- l10n/et_EE/files_trashbin.po | 22 ++++--- l10n/et_EE/settings.po | 71 ++++++++++++++--------- l10n/eu/core.po | 40 +++++++------ l10n/eu/files.po | 46 ++++++++------- l10n/eu/files_trashbin.po | 22 ++++--- l10n/eu/settings.po | 71 ++++++++++++++--------- l10n/fa/core.po | 40 +++++++------ l10n/fa/files.po | 46 ++++++++------- l10n/fa/files_trashbin.po | 22 ++++--- l10n/fa/settings.po | 59 ++++++++++++------- l10n/fi_FI/core.po | 40 +++++++------ l10n/fi_FI/files.po | 48 +++++++++------- l10n/fi_FI/files_trashbin.po | 22 ++++--- l10n/fi_FI/settings.po | 73 ++++++++++++++--------- l10n/fr/core.po | 40 +++++++------ l10n/fr/files.po | 48 +++++++++------- l10n/fr/files_trashbin.po | 22 ++++--- l10n/fr/settings.po | 59 ++++++++++++------- l10n/gl/core.po | 38 ++++++------ l10n/gl/files.po | 46 ++++++++------- l10n/gl/files_trashbin.po | 22 ++++--- l10n/gl/settings.po | 71 ++++++++++++++--------- l10n/he/core.po | 38 ++++++------ l10n/he/files.po | 46 ++++++++------- l10n/he/files_trashbin.po | 22 ++++--- l10n/he/settings.po | 71 ++++++++++++++--------- l10n/hi/core.po | 42 ++++++++------ l10n/hi/files.po | 46 ++++++++------- l10n/hi/files_trashbin.po | 22 ++++--- l10n/hi/settings.po | 71 ++++++++++++++--------- l10n/hr/core.po | 38 ++++++------ l10n/hr/files.po | 46 ++++++++------- l10n/hr/files_trashbin.po | 22 ++++--- l10n/hr/settings.po | 71 ++++++++++++++--------- l10n/hu_HU/core.po | 38 ++++++------ l10n/hu_HU/files.po | 46 ++++++++------- l10n/hu_HU/files_trashbin.po | 22 ++++--- l10n/hu_HU/settings.po | 71 ++++++++++++++--------- l10n/ia/core.po | 42 ++++++++------ l10n/ia/files.po | 46 ++++++++------- l10n/ia/files_trashbin.po | 22 ++++--- l10n/ia/settings.po | 71 ++++++++++++++--------- l10n/id/core.po | 38 ++++++------ l10n/id/files.po | 46 ++++++++------- l10n/id/files_trashbin.po | 22 ++++--- l10n/id/settings.po | 71 ++++++++++++++--------- l10n/is/core.po | 38 ++++++------ l10n/is/files.po | 46 ++++++++------- l10n/is/files_trashbin.po | 22 ++++--- l10n/is/settings.po | 71 ++++++++++++++--------- l10n/it/core.po | 40 +++++++------ l10n/it/files.po | 48 +++++++++------- l10n/it/files_encryption.po | 12 ++-- l10n/it/files_trashbin.po | 22 ++++--- l10n/it/settings.po | 73 ++++++++++++++--------- l10n/ja_JP/core.po | 38 ++++++------ l10n/ja_JP/files.po | 28 +++++---- l10n/ja_JP/files_trashbin.po | 22 ++++--- l10n/ja_JP/settings.po | 73 ++++++++++++++--------- l10n/ka_GE/core.po | 38 ++++++------ l10n/ka_GE/files.po | 46 ++++++++------- l10n/ka_GE/files_trashbin.po | 22 ++++--- l10n/ka_GE/settings.po | 71 ++++++++++++++--------- l10n/ko/core.po | 40 +++++++------ l10n/ko/files.po | 46 ++++++++------- l10n/ko/files_trashbin.po | 22 ++++--- l10n/ko/settings.po | 71 ++++++++++++++--------- l10n/ku_IQ/core.po | 38 ++++++------ l10n/ku_IQ/files.po | 46 ++++++++------- l10n/ku_IQ/files_trashbin.po | 22 ++++--- l10n/ku_IQ/settings.po | 71 ++++++++++++++--------- l10n/lb/core.po | 38 ++++++------ l10n/lb/files.po | 46 ++++++++------- l10n/lb/files_trashbin.po | 22 ++++--- l10n/lb/settings.po | 71 ++++++++++++++--------- l10n/lt_LT/core.po | 38 ++++++------ l10n/lt_LT/files.po | 46 ++++++++------- l10n/lt_LT/files_trashbin.po | 22 ++++--- l10n/lt_LT/settings.po | 71 ++++++++++++++--------- l10n/lv/core.po | 10 +++- l10n/lv/files.po | 14 +++-- l10n/lv/files_encryption.po | 12 ++-- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 24 ++++---- l10n/lv/lib.po | 16 +++--- l10n/lv/settings.po | 73 ++++++++++++++--------- l10n/mk/core.po | 38 ++++++------ l10n/mk/files.po | 46 ++++++++------- l10n/mk/files_trashbin.po | 22 ++++--- l10n/mk/settings.po | 71 ++++++++++++++--------- l10n/ms_MY/core.po | 38 ++++++------ l10n/ms_MY/files.po | 46 ++++++++------- l10n/ms_MY/files_trashbin.po | 22 ++++--- l10n/ms_MY/settings.po | 71 ++++++++++++++--------- l10n/nb_NO/core.po | 38 ++++++------ l10n/nb_NO/files.po | 46 ++++++++------- l10n/nb_NO/files_trashbin.po | 22 ++++--- l10n/nb_NO/settings.po | 71 ++++++++++++++--------- l10n/nl/core.po | 40 +++++++------ l10n/nl/files.po | 48 +++++++++------- l10n/nl/files_trashbin.po | 22 ++++--- l10n/nl/settings.po | 71 ++++++++++++++--------- l10n/nn_NO/core.po | 38 ++++++------ l10n/nn_NO/files.po | 46 ++++++++------- l10n/nn_NO/files_trashbin.po | 22 ++++--- l10n/nn_NO/settings.po | 71 ++++++++++++++--------- l10n/oc/core.po | 38 ++++++------ l10n/oc/files.po | 46 ++++++++------- l10n/oc/files_trashbin.po | 22 ++++--- l10n/oc/settings.po | 71 ++++++++++++++--------- l10n/pl/core.po | 38 ++++++------ l10n/pl/files.po | 46 ++++++++------- l10n/pl/files_trashbin.po | 22 ++++--- l10n/pl/settings.po | 71 ++++++++++++++--------- l10n/pl_PL/core.po | 42 ++++++++------ l10n/pl_PL/files.po | 46 ++++++++------- l10n/pl_PL/files_trashbin.po | 22 ++++--- l10n/pl_PL/settings.po | 71 ++++++++++++++--------- l10n/pt_BR/core.po | 40 +++++++------ l10n/pt_BR/files.po | 46 ++++++++------- l10n/pt_BR/files_trashbin.po | 22 ++++--- l10n/pt_BR/settings.po | 71 ++++++++++++++--------- l10n/pt_PT/core.po | 40 +++++++------ l10n/pt_PT/files.po | 48 +++++++++------- l10n/pt_PT/files_trashbin.po | 24 ++++---- l10n/pt_PT/settings.po | 73 ++++++++++++++--------- l10n/ro/core.po | 38 ++++++------ l10n/ro/files.po | 46 ++++++++------- l10n/ro/files_trashbin.po | 22 ++++--- l10n/ro/settings.po | 71 ++++++++++++++--------- l10n/ru/core.po | 45 ++++++++------- l10n/ru/files.po | 59 ++++++++++--------- l10n/ru/files_trashbin.po | 22 ++++--- l10n/ru/lib.po | 31 +++++----- l10n/ru/settings.po | 86 +++++++++++++++++----------- l10n/ru_RU/core.po | 38 ++++++------ l10n/ru_RU/files.po | 46 ++++++++------- l10n/ru_RU/files_trashbin.po | 22 ++++--- l10n/ru_RU/settings.po | 71 ++++++++++++++--------- l10n/si_LK/core.po | 38 ++++++------ l10n/si_LK/files.po | 46 ++++++++------- l10n/si_LK/files_trashbin.po | 22 ++++--- l10n/si_LK/settings.po | 71 ++++++++++++++--------- l10n/sk_SK/core.po | 38 ++++++------ l10n/sk_SK/files.po | 14 +++-- l10n/sk_SK/files_trashbin.po | 24 ++++---- l10n/sk_SK/settings.po | 73 ++++++++++++++--------- l10n/sl/core.po | 38 ++++++------ l10n/sl/files.po | 46 ++++++++------- l10n/sl/files_trashbin.po | 22 ++++--- l10n/sl/settings.po | 71 ++++++++++++++--------- l10n/sr/core.po | 8 ++- l10n/sr/files.po | 46 ++++++++------- l10n/sr/files_sharing.po | 6 +- l10n/sr/files_trashbin.po | 22 ++++--- l10n/sr/lib.po | 16 +++--- l10n/sr/settings.po | 57 +++++++++++------- l10n/sr@latin/core.po | 42 ++++++++------ l10n/sr@latin/files.po | 46 ++++++++------- l10n/sr@latin/files_trashbin.po | 22 ++++--- l10n/sr@latin/settings.po | 71 ++++++++++++++--------- l10n/sv/core.po | 38 ++++++------ l10n/sv/files.po | 48 +++++++++------- l10n/sv/files_encryption.po | 13 +++-- l10n/sv/files_trashbin.po | 22 ++++--- l10n/sv/settings.po | 73 ++++++++++++++--------- l10n/ta_LK/core.po | 38 ++++++------ l10n/ta_LK/files.po | 46 ++++++++------- l10n/ta_LK/files_trashbin.po | 22 ++++--- l10n/ta_LK/settings.po | 71 ++++++++++++++--------- l10n/templates/core.pot | 6 +- l10n/templates/files.pot | 10 +++- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 20 ++++--- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 14 ++--- l10n/templates/settings.pot | 55 ++++++++++++------ l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 10 +++- l10n/th_TH/files.po | 28 +++++---- l10n/th_TH/files_trashbin.po | 22 ++++--- l10n/th_TH/settings.po | 73 ++++++++++++++--------- l10n/tr/core.po | 38 ++++++------ l10n/tr/files.po | 46 ++++++++------- l10n/tr/files_trashbin.po | 22 ++++--- l10n/tr/settings.po | 71 ++++++++++++++--------- l10n/uk/core.po | 38 ++++++------ l10n/uk/files.po | 46 ++++++++------- l10n/uk/files_trashbin.po | 22 ++++--- l10n/uk/settings.po | 71 ++++++++++++++--------- l10n/vi/core.po | 38 ++++++------ l10n/vi/files.po | 46 ++++++++------- l10n/vi/files_trashbin.po | 22 ++++--- l10n/vi/settings.po | 71 ++++++++++++++--------- l10n/zh_CN.GB2312/core.po | 38 ++++++------ l10n/zh_CN.GB2312/files.po | 46 ++++++++------- l10n/zh_CN.GB2312/files_trashbin.po | 22 ++++--- l10n/zh_CN.GB2312/settings.po | 71 ++++++++++++++--------- l10n/zh_CN/core.po | 38 ++++++------ l10n/zh_CN/files.po | 46 ++++++++------- l10n/zh_CN/files_trashbin.po | 22 ++++--- l10n/zh_CN/settings.po | 71 ++++++++++++++--------- l10n/zh_HK/core.po | 42 ++++++++------ l10n/zh_HK/files.po | 46 ++++++++------- l10n/zh_HK/files_trashbin.po | 22 ++++--- l10n/zh_HK/settings.po | 71 ++++++++++++++--------- l10n/zh_TW/core.po | 40 +++++++------ l10n/zh_TW/files.po | 48 +++++++++------- l10n/zh_TW/files_trashbin.po | 22 ++++--- l10n/zh_TW/settings.po | 73 ++++++++++++++--------- lib/l10n/ru.php | 1 + settings/l10n/ar.php | 2 +- settings/l10n/bn_BD.php | 2 +- settings/l10n/ca.php | 4 +- settings/l10n/cs_CZ.php | 4 +- settings/l10n/da.php | 2 +- settings/l10n/de.php | 4 +- settings/l10n/de_DE.php | 4 +- settings/l10n/el.php | 2 +- settings/l10n/eo.php | 2 +- settings/l10n/es.php | 4 +- settings/l10n/es_AR.php | 4 +- settings/l10n/et_EE.php | 2 +- settings/l10n/eu.php | 4 +- settings/l10n/fa.php | 2 +- settings/l10n/fi_FI.php | 4 +- settings/l10n/fr.php | 4 +- settings/l10n/gl.php | 2 +- settings/l10n/he.php | 2 +- settings/l10n/hr.php | 2 +- settings/l10n/hu_HU.php | 2 +- settings/l10n/id.php | 2 +- settings/l10n/is.php | 2 +- settings/l10n/it.php | 4 +- settings/l10n/ja_JP.php | 4 +- settings/l10n/ka_GE.php | 2 +- settings/l10n/ko.php | 4 +- settings/l10n/lb.php | 2 +- settings/l10n/lt_LT.php | 2 +- settings/l10n/lv.php | 4 +- settings/l10n/mk.php | 2 +- settings/l10n/ms_MY.php | 2 +- settings/l10n/nb_NO.php | 2 +- settings/l10n/nl.php | 4 +- settings/l10n/nn_NO.php | 2 +- settings/l10n/oc.php | 2 +- settings/l10n/pl.php | 2 +- settings/l10n/pt_BR.php | 4 +- settings/l10n/pt_PT.php | 4 +- settings/l10n/ro.php | 2 +- settings/l10n/ru.php | 10 +++- settings/l10n/ru_RU.php | 2 +- settings/l10n/si_LK.php | 2 +- settings/l10n/sk_SK.php | 4 +- settings/l10n/sl.php | 2 +- settings/l10n/sr.php | 2 +- settings/l10n/sv.php | 4 +- settings/l10n/ta_LK.php | 2 +- settings/l10n/th_TH.php | 4 +- settings/l10n/tr.php | 2 +- settings/l10n/uk.php | 2 +- settings/l10n/vi.php | 2 +- settings/l10n/zh_CN.GB2312.php | 2 +- settings/l10n/zh_CN.php | 2 +- settings/l10n/zh_TW.php | 4 +- 339 files changed, 6613 insertions(+), 4724 deletions(-) diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index ea8352e3251..7c4e8220c7c 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -20,6 +20,7 @@ "replaced {new_name}" => "reemplazado {new_name}", "undo" => "deshacer", "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", +"perform delete operation" => "Eliminar", "'.' is an invalid file name." => "'.' es un nombre de archivo invĆ”lido.", "File name cannot be empty." => "El nombre del archivo no puede quedar vacĆ­o.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no estĆ”n permitidos.", @@ -56,11 +57,13 @@ "Text file" => "Archivo de texto", "Folder" => "Carpeta", "From link" => "Desde enlace", +"Trash" => "Papelera", "Cancel upload" => "Cancelar subida", "Nothing in here. Upload something!" => "No hay nada. Ā”SubĆ­ contenido!", "Download" => "Descargar", "Upload too large" => "El archivo es demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentĆ”s subir sobrepasan el tamaƱo mĆ”ximo ", "Files are being scanned, please wait." => "Se estĆ”n escaneando los archivos, por favor esperĆ”.", -"Current scanning" => "Escaneo actual" +"Current scanning" => "Escaneo actual", +"Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos" ); diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 716afa5f29a..52bc4395128 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -20,9 +20,13 @@ "replaced {new_name}" => "заменено {new_name}", "undo" => "отмена", "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", +"perform delete operation" => "Š²Ń‹ŠæŠ¾Š»Š½ŃŠµŃ‚ŃŃ Š¾ŠæŠµŃ€Š°Ń†ŠøŃ ŃƒŠ“Š°Š»ŠµŠ½ŠøŃ", "'.' is an invalid file name." => "'.' - Š½ŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š¾Šµ ŠøŠ¼Ń файла.", "File name cannot be empty." => "Š˜Š¼Ń файла не может Š±Ń‹Ń‚ŃŒ ŠæŃƒŃŃ‚Ń‹Š¼.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ŠŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š¾Šµ ŠøŠ¼Ń, '\\', '/', '<', '>', ':', '\"', '|', '?' Šø '*' Š½ŠµŠ“Š¾ŠæŃƒŃŃ‚ŠøŠ¼Ń‹.", +"Your storage is full, files can not be updated or synced anymore!" => "Š’Š°ŃˆŠµ Гисковое пространство ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ заполнено, произвеГите Š¾Ń‡ŠøŃŃ‚ŠŗŃƒ переГ Š·Š°Š³Ń€ŃƒŠ·ŠŗŠ¾Š¹ новых файлов.", +"Your storage is almost full ({usedSpacePercent}%)" => "Š’Š°ŃˆŠµ хранилище почти заполнено ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° Š½Š°Ń‡Š°Š»Š°ŃŃŒ. Это может ŠæŠ¾Ń‚Ń€ŠµŠ±Š¾Š²Š°Ń‚ŃŒ много времени, если файл большого размера.", "Unable to upload your file as it is a directory or has 0 bytes" => "ŠŠµ ŃƒŠ“Š°ŠµŃ‚ŃŃ Š·Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ файл размером 0 байт в каталог", "Upload Error" => "ŠžŃˆŠøŠ±ŠŗŠ° Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø", "Close" => "Š—Š°ŠŗŃ€Ń‹Ń‚ŃŒ", @@ -53,11 +57,13 @@ "Text file" => "Текстовый файл", "Folder" => "Папка", "From link" => "Из ссылки", +"Trash" => "ŠšŠ¾Ń€Š·ŠøŠ½Š°", "Cancel upload" => "ŠžŃ‚Š¼ŠµŠ½Š° Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø", "Nothing in here. Upload something!" => "Š—Š“ŠµŃŃŒ ничего нет. Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚Šµ что-нибуГь!", "Download" => "Š”ŠŗŠ°Ń‡Š°Ń‚ŃŒ", "Upload too large" => "Файл слишком большой", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые Š’Ń‹ ŠæŃ‹Ń‚Š°ŠµŃ‚ŠµŃŃŒ Š·Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ, ŠæŃ€ŠµŠ²Ń‹ŃˆŠ°ŃŽŃ‚ лимит Š“Š»Ń файлов на ŃŃ‚Š¾Š¼ сервере.", "Files are being scanned, please wait." => "ŠŸŠ¾Š“Š¾Š¶Š“ŠøŃ‚Šµ, файлы ŃŠŗŠ°Š½ŠøŃ€ŃƒŃŽŃ‚ŃŃ.", -"Current scanning" => "Š¢ŠµŠŗŃƒŃ‰ŠµŠµ сканирование" +"Current scanning" => "Š¢ŠµŠŗŃƒŃ‰ŠµŠµ сканирование", +"Upgrading filesystem cache..." => "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½ŠøŠµ кеша файловой системы..." ); diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 815cf1af003..1b888f7714b 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Comproveu les contrasenyes i proveu-ho de nou.", "Could not change your file encryption password to your login password" => "No s'ha pogut canviar la contrasenya d'encriptació de fitxers per la d'accĆ©s", "Encryption" => "Encriptatge", +"File encryption is enabled." => "L'encriptació de fitxers estĆ  activada.", +"The following file types will not be encrypted:" => "Els tipus de fitxers següents no s'encriptaran:", +"Exclude the following file types from encryption:" => "Exclou els tipus de fitxers següents de l'encriptatge:", "None" => "Cap" ); diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 27d2ae544b5..3278f13920a 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Zkontrolujte, prosĆ­m, svĆ© heslo a zkuste to znovu.", "Could not change your file encryption password to your login password" => "Nelze změnit Å”ifrovacĆ­ heslo na přihlaÅ”ovacĆ­.", "Encryption" => "Å ifrovĆ”nĆ­", +"File encryption is enabled." => "Å ifrovĆ”nĆ­ je povoleno.", +"The following file types will not be encrypted:" => "NĆ”sledujĆ­cĆ­ typy souborÅÆ nebudou Å”ifrovĆ”ny:", +"Exclude the following file types from encryption:" => "Vyjmout nĆ”sledujĆ­cĆ­ typy souborÅÆ ze Å”ifrovĆ”nĆ­:", "None" => "ŽÔdnĆ©" ); diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 87f984c2c10..73b5f273d1f 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Por favor revise su contraseƱa e intentelo de nuevo.", "Could not change your file encryption password to your login password" => "No se pudo cambiar la contraseƱa de cifrado de archivos de su contraseƱa de inicio de sesión", "Encryption" => "Cifrado", +"File encryption is enabled." => "La encriptacion de archivo esta activada.", +"The following file types will not be encrypted:" => "Los siguientes tipos de archivo no seran encriptados:", +"Exclude the following file types from encryption:" => "Excluir los siguientes tipos de archivo de la encriptacion:", "None" => "Ninguno" ); diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 86e1a66c458..ffa20b718d9 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Controlla la password e prova ancora.", "Could not change your file encryption password to your login password" => "Impossibile convertire la password di cifratura nella password di accesso", "Encryption" => "Cifratura", +"File encryption is enabled." => "La cifratura dei file ĆØ abilitata.", +"The following file types will not be encrypted:" => "I seguenti tipi di file non saranno cifrati:", +"Exclude the following file types from encryption:" => "Escludi i seguenti tipi di file dalla cifratura:", "None" => "Nessuna" ); diff --git a/apps/files_encryption/l10n/lv.php b/apps/files_encryption/l10n/lv.php index 7b94bb99e1a..1aae1377516 100644 --- a/apps/files_encryption/l10n/lv.php +++ b/apps/files_encryption/l10n/lv.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "LÅ«dzu, pārbaudiet savas paroles un mēģiniet vēlreiz.", "Could not change your file encryption password to your login password" => "Nevarēja mainÄ«t datņu Å”ifrēŔanas paroli uz ierakstīŔanās paroli", "Encryption" => "Å ifrēŔana", +"File encryption is enabled." => "Datņu Å”ifrēŔana ir aktivēta.", +"The following file types will not be encrypted:" => "SekojoŔās datnes netiks Å”ifrētas:", +"Exclude the following file types from encryption:" => "SekojoÅ”os datņu tipus izslēgt no Å”ifrēŔanas:", "None" => "Nav" ); diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index c3f92dc66eb..e5294974e4e 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Kontrollera dina lƶsenord och fƶrsƶk igen.", "Could not change your file encryption password to your login password" => "Kunde inte Ƥndra ditt filkrypteringslƶsenord till ditt loginlƶsenord", "Encryption" => "Kryptering", +"File encryption is enabled." => "Filkryptering Ƥr aktiverat.", +"The following file types will not be encrypted:" => "Fƶljande filtyper kommer inte att krypteras:", +"Exclude the following file types from encryption:" => "Exkludera fƶljande filtyper frĆ„n kryptering:", "None" => "Ingen" ); diff --git a/apps/files_sharing/l10n/sr.php b/apps/files_sharing/l10n/sr.php index 2eb61a738e3..6e277f67711 100644 --- a/apps/files_sharing/l10n/sr.php +++ b/apps/files_sharing/l10n/sr.php @@ -1,4 +1,5 @@ "Лозинка", -"Submit" => "ŠŸŠ¾ŃˆŠ°Ń™Šø" +"Submit" => "ŠŸŠ¾ŃˆŠ°Ń™Šø", +"Download" => "ŠŸŃ€ŠµŃƒŠ·Š¼Šø" ); diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index ca4dba04967..5bde85e7056 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -1,4 +1,5 @@ "utfƶr Ć„terstƤllning", "Name" => "Namn", "Deleted" => "Raderad", "1 folder" => "1 mapp", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index dce2321e6b1..28bc318a52f 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -1,7 +1,17 @@ "Fallo al borrar la configuración del servidor", +"The configuration is valid and the connection could be established!" => "La configuración es valida y la conexión pudo ser establecida.", "Deletion failed" => "Error al borrar", +"Keep settings?" => "ĀæMantener preferencias?", +"Cannot add server configuration" => "No se pudo aƱadir la configuración del servidor", +"Connection test succeeded" => "El este de conexión ha sido completado satisfactoriamente", +"Connection test failed" => "Falló es test de conexión", +"Do you really want to delete the current Server Configuration?" => "ĀæRealmente desea borrar la configuración actual del servidor?", +"Confirm Deletion" => "Confirmar borrado", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Advertencia: 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.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Atención: El módulo PHP LDAP no estĆ” instalado, este elemento no va a funcionar. Por favor, pedile al administrador que lo instale.", +"Server configuration" => "Configuración del Servidor", +"Add Server Configuration" => "AƱadir Configuración del Servidor", "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", @@ -20,7 +30,10 @@ "Group Filter" => "Filtro de grupo", "Defines the filter to apply, when retrieving groups." => "Define el filtro a aplicar cuando se obtienen grupos.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\".", +"Connection Settings" => "Configuración de Conección", +"Configuration Active" => "Configuración activa", "Port" => "Puerto", +"Disable Main Server" => "Deshabilitar el Servidor Principal", "Use TLS" => "Usar TLS", "Do not use it for SSL connections, it will fail." => "No usarlo para SSL, darĆ” error.", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayĆŗsculas/minĆŗsculas (Windows)", @@ -28,6 +41,7 @@ "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importĆ” el certificado SSL del servidor LDAP en tu servidor ownCloud.", "Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", "in seconds. A change empties the cache." => "en segundos. Cambiarlo vacĆ­a la cache.", +"Directory Settings" => "Configuración de Directorio", "User Display Name Field" => "Campo de nombre de usuario a mostrar", "The LDAP attribute to use to generate the user`s ownCloud name." => "El atributo LDAP a usar para generar el nombre de usuario de ownCloud.", "Base User Tree" => "Ɓrbol base de usuario", @@ -37,6 +51,7 @@ "Base Group Tree" => "Ɓrbol base de grupo", "One Group Base DN per line" => "Una DN base de grupo por lĆ­nea", "Group-Member association" => "Asociación Grupo-Miembro", +"Special Attributes" => "Atributos Especiales", "in bytes" => "en bytes", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "VacĆ­o para el nombre de usuario (por defecto). En otro caso, especificĆ” un atributo LDAP/AD.", "Help" => "Ayuda" diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 7b11ea43a4b..2aebf734981 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -54,6 +54,7 @@ "The app name is not specified." => "Š˜Š¼Ń ŠæŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŃ не указано", "The required file {file} is not installed!" => "ŠŠµŠ¾Š±Ń…Š¾Š“ŠøŠ¼Ń‹Š¹ файл {file} не ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½!", "Share" => "ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ Š“Š¾ŃŃ‚ŃƒŠæ", +"Shared" => "ŠžŠ±Ń‰ŠøŠµ", "Error while sharing" => "ŠžŃˆŠøŠ±ŠŗŠ° при открытии Š“Š¾ŃŃ‚ŃƒŠæŠ°", "Error while unsharing" => "ŠžŃˆŠøŠ±ŠŗŠ° при закрытии Š“Š¾ŃŃ‚ŃƒŠæŠ°", "Error while changing permissions" => "ŠžŃˆŠøŠ±ŠŗŠ° при смене Ń€Š°Š·Ń€ŠµŃˆŠµŠ½ŠøŠ¹", @@ -83,6 +84,8 @@ "Error setting expiration date" => "ŠžŃˆŠøŠ±ŠŗŠ° при ŃƒŃŃ‚Š°Š½Š¾Š²ŠŗŠµ срока Š“Š¾ŃŃ‚ŃƒŠæŠ°", "Sending ..." => "ŠžŃ‚ŠæŃ€Š°Š²Š»ŃŠµŃ‚ŃŃ ...", "Email sent" => "Письмо отправлено", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "ŠŸŃ€Šø обновлении ŠæŃ€Š¾ŠøŠ·Š¾ŃˆŠ»Š° ошибка. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° сообщите об ŃŃ‚Š¾Š¼ в ownCloud сообщество.", +"The update was successful. Redirecting you to ownCloud now." => "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½ŠøŠµ ŠæŃ€Š¾ŃˆŠ»Š¾ успешно. ŠŸŠµŃ€ŠµŠ½Š°ŠæŃ€Š°Š²Š»ŃŠµŠ¼ŃŃ в Š’Š°Ńˆ ownCloud...", "ownCloud password reset" => "Дброс ŠæŠ°Ń€Š¾Š»Ń ", "Use the following link to reset your password: {link}" => "Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŃƒŃŽ ŃŃŃ‹Š»ŠŗŃƒ чтобы ŃŠ±Ń€Š¾ŃŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ: {link}", "You will receive a link to reset your password via Email." => "ŠŠ° ваш аГрес Email выслана ссылка Š“Š»Ń сброса ŠæŠ°Ń€Š¾Š»Ń.", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index cee3db1d1b3..a08c5adb097 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 17:00+0000\n" -"Last-Translator: Jano Barnard \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -571,6 +571,10 @@ msgstr "onthou" msgid "Log in" msgstr "Teken aan" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 3814f1cfa0c..243d6a0e53a 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,46 +17,46 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index ca4278cffc8..0ac05a625a1 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index f621a8914be..a768c32d6cd 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 17:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Wagwoord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nuwe wagwoord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų§ŁˆŁ„" msgid "Settings" msgstr "ŲŖŲ¹ŲÆŁŠŁ„Ų§ŲŖ" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "منذ Ų«ŁˆŲ§Ł†ŁŠ" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "منذ ŲÆŁ‚ŁŠŁ‚Ų©" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Ų§Ł„ŁŠŁˆŁ…" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -564,14 +564,18 @@ msgstr "الرجاؔ Ų„Ų¹Ų§ŲÆŲ© ŲŖŲ¹ŁŠŁŠŁ† ŁƒŁ„Ł…Ų© السر Ł„ŲŖŲ£Ł…ŁŠŁ† Ų­Ų³Ų§ msgid "Lost your password?" msgstr "هل Ł†Ų³ŁŠŲŖ ŁƒŁ„Ł…Ų© Ų§Ł„Ų³Ų±ŲŸ" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "تذكر" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "أدخل" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "السابق" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index eefbee4f65e..76278a3e1a4 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ 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" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ŲŖŁ… ترفيع الملفات بنجاح." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف Ų§Ł„Ų°ŁŠ تريد ŲŖŲ±ŁŁŠŲ¹Ł‡ أعلى Ł…Ł…Ų§ MAX_FILE_SIZE ŁŠŲ³Ł…Ų­ به في ŁˆŲ§Ų¬Ł‡Ų© Ų§Ł„ HTML." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "ŲŖŁ… ترفيع Ų¬Ų²Ų” من الملفات Ų§Ł„Ų°ŁŠ تريد ŲŖŲ±ŁŁŠŲ¹Ł‡Ų§ فقط" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "لم ŁŠŲŖŁ… ترفيع أي من الملفات" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير Ł…ŁˆŲ¬ŁˆŲÆ" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "الملفات" msgid "Unshare" msgstr "؄لغاؔ Ł…Ų“Ų§Ų±ŁƒŲ©" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ł…Ų­Ų°ŁˆŁ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "الاسم" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "حجم" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Ł…Ų¹ŲÆŁ„" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index d892fd2a983..6b11eb74a10 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ 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" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "اسم" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index c3a33123458..e3785a9b5a7 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "فؓل ŲŖŲ­Ł…ŁŠŁ„ القائمة من الآب ستور" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "لم ŁŠŲŖŁ… Ų§Ł„ŲŖŲ£ŁƒŲÆ من Ų§Ł„Ų“Ų®ŲµŁŠŲ© بنجاح" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Ų§Ł„Ł…Ų¬Ł…ŁˆŲ¹Ų© Ł…ŁˆŲ¬ŁˆŲÆŲ© مسبقاً" @@ -48,10 +57,6 @@ msgstr "Ų§Ł„ŲØŲ±ŁŠŲÆ Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠ غير صالح" msgid "Unable to delete group" msgstr "فؓل ؄زالة Ų§Ł„Ł…Ų¬Ł…ŁˆŲ¹Ų©" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "لم ŁŠŲŖŁ… Ų§Ł„ŲŖŲ£ŁƒŲÆ من Ų§Ł„Ų“Ų®ŲµŁŠŲ© بنجاح" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "فؓل ؄زالة المستخدم" @@ -114,7 +119,7 @@ msgstr "Ų®Ų·Ų£" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "حفظ" @@ -191,67 +196,83 @@ msgstr "ŲŖŲ­Ł…ŁŠŁ„ Ų¹Ł…ŁŠŁ„ Ų¢Ł†ŲÆŲ±ŁˆŁŠŲÆ" msgid "Download iOS Client" msgstr "ŲŖŲ­Ł…ŁŠŁ„ Ų¹Ł…ŁŠŁ„ آي أو Ų£Ų³" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ŁƒŁ„Ł…Ų§ŲŖ السر" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "لقد ŲŖŁ… تغيير ŁƒŁ„Ł…Ų© السر" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "لم ŁŠŲŖŁ… ŲŖŲ¹ŲÆŁŠŁ„ ŁƒŁ„Ł…Ų© السر بنجاح" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ŁƒŁ„Ł…Ų§ŲŖ السر Ų§Ł„Ų­Ų§Ł„ŁŠŲ©" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ŁƒŁ„Ł…Ų§ŲŖ Ų³Ų± جديدة" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "أظهر" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Ų¹ŲÆŁ„ ŁƒŁ„Ł…Ų© السر" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Ų§Ł„Ų¹Ł†ŁˆŲ§Ł† Ų§Ł„ŲØŲ±ŁŠŲÆŁŠ" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ų¹Ł†ŁˆŲ§Ł†Łƒ Ų§Ł„ŲØŲ±ŁŠŲÆŁŠ" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "أدخل Ų¹Ł†ŁˆŲ§Ł†Łƒ Ų§Ł„ŲØŲ±ŁŠŲÆŁŠ Ł„ŲŖŁŲ¹ŁŠŁ„ Ų§Ų³ŲŖŲ±Ų¬Ų§Ų¹ ŁƒŁ„Ł…Ų© Ų§Ł„Ł…Ų±ŁˆŲ±" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "اللغة" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ų³Ų§Ų¹ŲÆ في الترجمه" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ų„Ų³ŲŖŲ®ŲÆŁ… هذا Ų§Ł„Ų¹Ł†ŁˆŲ§Ł† لل؄تصال ŲØŁ€ ownCloud في Ł…ŲÆŁŠŲ± الملفات" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Ų„ŲµŲÆŲ§Ų±" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -163,55 +163,55 @@ msgstr "" msgid "Settings" msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "преГи секунГи" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "преГи 1 Š¼ŠøŠ½ŃƒŃ‚Š°" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "преГи 1 час" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Гнес" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ŠæŠ¾ŃŠ»ŠµŠ“Š½ŠøŃŃ‚ месец" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "послеГната гоГина" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "послеГните гоГини" @@ -566,14 +566,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index b1a38c33dba..ef076ab4f33 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "Файлове" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Š˜Š·Ń‚Ń€ŠøŠ²Š°Š½Šµ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ŠŸŃ€ŠµŠøŠ¼ŠµŠ½ŃƒŠ²Š°Š½Šµ" @@ -179,31 +183,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ŠŸŃ€Š¾Š¼ŠµŠ½ŠµŠ½Š¾" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 61fe9f67efc..f759ccb5bde 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f056463c578..4cef09976a2 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Š’ŃŠŠ·Š½ŠøŠŗŠ½Š° проблем с ŠøŠ“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń†ŠøŃŃ‚Š°" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -48,10 +57,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Š’ŃŠŠ·Š½ŠøŠŗŠ½Š° проблем с ŠøŠ“ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń†ŠøŃŃ‚Š°" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -114,7 +119,7 @@ msgstr "Š“Ń€ŠµŃˆŠŗŠ°" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -191,67 +196,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ŠŸŠ°Ń€Š¾Š»Š°" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -161,55 +161,55 @@ msgstr "ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°" msgid "Settings" msgstr "ą¦Øą¦æą§Ÿą¦¾ą¦®ą¦•ą¦øą¦®ą§‚ą¦¹" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦” ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 মিনিট ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 ą¦˜ą¦Øą§ą¦Ÿą¦¾ ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} ą¦˜ą¦Øą§ą¦Ÿą¦¾ ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "ą¦†ą¦œ" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} দিন ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "গতমাস" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} মাস ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "মাস ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "গত বছর" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "বছর ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" @@ -564,14 +564,18 @@ msgstr "" msgid "Lost your password?" msgstr "ą¦•ą§‚ą¦Ÿą¦¶ą¦¬ą§ą¦¦ ą¦¹ą¦¾ą¦°ą¦æą§Ÿą§‡ą¦›ą§‡ą¦Ø?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "মনে রাখ" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ą¦Ŗą§ą¦°ą¦¬ą§‡ą¦¶" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą¦¬ą¦°ą§ą¦¤ą§€" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 8192e6fedfc..c2ccab5b338 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোঔ করা হয় ą¦Øą¦æą„¤ ą¦øą¦®ą¦øą§ą¦Æą¦¾ ą¦…ą¦œą§ą¦žą¦¾ą¦¤ą„¤" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "কোন ą¦øą¦®ą¦øą§ą¦Æą¦¾ নেই, ফাইল আপলোঔ ą¦øą§ą¦øą¦®ą§ą¦Ŗą¦Øą§ą¦Ø ą¦¹ą§Ÿą§‡ą¦›ą§‡" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোঔ করা ą¦«ą¦¾ą¦‡ą¦²ą¦Ÿą¦æ php.ini তে ą¦¬ą¦°ą§ą¦£ą¦æą¦¤ upload_max_filesize ą¦Øą¦æą¦°ą§ą¦¦ą§‡ą¦¶ą¦æą¦¤ ą¦†ą§Ÿą¦¤ą¦Ø ą¦…ą¦¤ą¦æą¦•ą§ą¦°ą¦® ą¦•ą¦°ą¦›ą§‡ą¦ƒ" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোঔ করা ą¦«ą¦¾ą¦‡ą¦²ą¦Ÿą¦æ HTML ą¦«ą¦°ą§ą¦®ą§‡ ą¦Øą¦æą¦°ą§ą¦§ą¦¾ą¦°ą¦æą¦¤ MAX_FILE_SIZE ą¦Øą¦æą¦°ą§ą¦¦ą§‡ą¦¶ą¦æą¦¤ ą¦øą¦°ą§ą¦¬ą§‹ą¦šą§ą¦š আকার ą¦…ą¦¤ą¦æą¦•ą§ą¦°ą¦® করেছে " -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "আপলোঔ করা ą¦«ą¦¾ą¦‡ą¦²ą¦Ÿą¦æ আংশিক আপলোঔ করা ą¦¹ą§Ÿą§‡ą¦›ą§‡" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোঔ করা হয় নি" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ą¦…ą¦øą§ą¦„ą¦¾ą§Ÿą§€ ą¦«ą§‹ą¦²ą§ą¦”ą¦¾ą¦° ą¦–ą§‹ą§Ÿą¦¾ ą¦—ą¦æą§Ÿą§‡ą¦›ą§‡" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ą¦”ą¦æą¦øą§ą¦•ą§‡ লিখতে ą¦¬ą§ą¦Æą¦°ą§ą¦„" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "ą¦Æą¦„ą§‡ą¦·ą§ą¦  পরিমাণ ą¦øą§ą¦„ą¦¾ą¦Ø নেই" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ভুল ą¦”ą¦æą¦°ą§‡ą¦•ą§ą¦Ÿą¦°ą¦æ" @@ -69,11 +69,15 @@ msgstr "ফাইল" msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "মুছে ফেল" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ą¦Ŗą§‚ą¦Øą¦ƒą¦Øą¦¾ą¦®ą¦•ą¦°ą¦£" @@ -178,31 +182,31 @@ msgstr "URL ফাঁকা রাখা যাবে ą¦Øą¦¾ą„¤" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ą¦«ą§‹ą¦²ą§ą¦”ą¦¾ą¦°ą§‡ą¦° নামটি সঠিক ą¦Øą§Ÿą„¤ 'ভাগাভাগি করা' ą¦¶ą§ą¦§ą§ą¦®ą¦¾ą¦¤ą§ą¦° Owncloud ą¦ą¦° ą¦œą¦Øą§ą¦Æ ą¦øą¦‚ą¦°ą¦•ą§ą¦·ą¦æą¦¤ą„¤" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "নাম" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "আকার" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ą¦Ŗą¦°ą¦æą¦¬ą¦°ą§ą¦¤ą¦æą¦¤" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "১টি ą¦«ą§‹ą¦²ą§ą¦”ą¦¾ą¦°" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} টি ą¦«ą§‹ą¦²ą§ą¦”ą¦¾ą¦°" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "১টি ফাইল" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} টি ফাইল" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 8cb4d9688e8..e3052a641a0 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "রাম" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "১টি ą¦«ą§‹ą¦²ą§ą¦”ą¦¾ą¦°" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} টি ą¦«ą§‹ą¦²ą§ą¦”ą¦¾ą¦°" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "১টি ফাইল" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} টি ফাইল" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index e5911603308..946bd8cd254 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ŗą¦øą§ą¦Ÿą§‹ą¦° ঄েকে তালিকা লোঔ করতে ą¦øą¦•ą§ą¦·ą¦® নয়" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "অনুমোদন ঘটিত ą¦øą¦®ą¦øą§ą¦Æą¦¾" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ą¦—ą§‹ą¦·ą§ą¦ ą§€ą¦Ÿą¦æ ą¦Ŗą§‚ą¦°ą§ą¦¬ ঄েকেই ą¦¬ą¦æą¦¦ą§ą¦Æą¦®ą¦¾ą¦Ø" @@ -46,10 +55,6 @@ msgstr "ই-ą¦®ą§‡ą¦‡ą¦²ą¦Ÿą¦æ সঠিক নয়" msgid "Unable to delete group" msgstr "ą¦—ą§‹ą¦·ą§ą¦ ą§€ মুছে ফেলা ą¦øą¦®ą§ą¦­ą¦¬ হলো না " -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "অনুমোদন ঘটিত ą¦øą¦®ą¦øą§ą¦Æą¦¾" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦°ą¦•ą¦¾ą¦°ą§€ মুছে ফেলা ą¦øą¦®ą§ą¦­ą¦¬ হলো না " @@ -112,7 +117,7 @@ msgstr "ą¦øą¦®ą¦øą§ą¦Æą¦¾" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ą¦øą¦‚ą¦°ą¦•ą§ą¦·ą¦£ করা ą¦¹ą¦šą§ą¦›ą§‡.." @@ -189,67 +194,83 @@ msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦”ą§ą¦°ą§Ÿą§‡ą¦” ą¦•ą§ą¦²ą¦¾ą§Ÿą§‡ą¦Øą§ą¦Ÿ ঔা msgid "Download iOS Client" msgstr "iOS ą¦•ą§ą¦²ą¦¾ą§Ÿą§‡ą¦Øą§ą¦Ÿ ঔাউনলোঔ করুন" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ą¦•ą§‚ą¦Ÿą¦¶ą¦¬ą§ą¦¦" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "আপনার ą¦•ą§‚ą¦Ÿą¦¶ą¦¬ą§ą¦¦ą¦Ÿą¦æ ą¦Ŗą¦°ą¦æą¦¬ą¦°ą§ą¦¤ą¦Ø করা ą¦¹ą§Ÿą§‡ą¦›ą§‡ " -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "আপনার ą¦•ą§‚ą¦Ÿą¦¶ą¦¬ą§ą¦¦ą¦Ÿą¦æ ą¦Ŗą¦°ą¦æą¦¬ą¦°ą§ą¦¤ą¦Ø করতে ą¦øą¦•ą§ą¦·ą¦® নয়" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ą¦¬ą¦°ą§ą¦¤ą¦®ą¦¾ą¦Ø ą¦•ą§‚ą¦Ÿą¦¶ą¦¬ą§ą¦¦" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "নতুন ą¦•ą§‚ą¦Ÿą¦¶ą¦¬ą§ą¦¦" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ą¦Ŗą§ą¦°ą¦¦ą¦°ą§ą¦¶ą¦Ø" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ą¦•ą§‚ą¦Ÿą¦¶ą¦¬ą§ą¦¦ ą¦Ŗą¦°ą¦æą¦¬ą¦°ą§ą¦¤ą¦Ø করুন" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ই-মেইল " -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "ą¦•ą§‚ą¦Ÿą¦¶ą¦¬ą§ą¦¦ ą¦Ŗą§‚ą¦Øą¦°ą§‚ą¦¦ą§ą¦§ą¦¾ą¦° ą¦øą¦•ą§ą¦°ą¦æą§Ÿ করার ą¦œą¦Øą§ą¦Æ ই-মেইল ą¦ ą¦æą¦•ą¦¾ą¦Øą¦¾ą¦Ÿą¦æ পূরণ করুন" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "আপনার ownCloud ą¦ ą¦øą¦‚ą¦Æą§ą¦•ą§ą¦¤ হতে ą¦ą¦‡ ą¦ ą¦æą¦•ą¦¾ą¦Øą¦¾ą¦Ÿą¦æ আপনার ফাইল ą¦¬ą§ą¦Æą¦¬ą¦øą§ą¦„ą¦¾ą¦Ŗą¦•ą§‡ ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦° করুন" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ą¦­ą¦¾ą¦°ą§ą¦øą¦Ø" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \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" @@ -162,55 +162,55 @@ msgstr "Desembre" msgid "Settings" msgstr "Arranjament" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "avui" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ahir" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "el mes passat" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "l'any passat" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anys enrere" @@ -565,14 +565,18 @@ msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "recorda'm" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Inici de sessió" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 758bde167ae..78422f41e60 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 08:40+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -24,46 +24,46 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "El fitxer s'ha pujat correctament" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el mĆ xim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer de pujada excedeix la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer nomĆ©s s'ha pujat parcialment" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "El fitxer no s'ha pujat" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "S'ha perdut un fitxer temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directori no vĆ lid." @@ -75,11 +75,15 @@ msgstr "Fitxers" msgid "Unshare" msgstr "Deixa de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Suprimeix" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Reanomena" @@ -184,31 +188,31 @@ msgstr "La URL no pot ser buida" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no vĆ lid. L'Ćŗs de 'Shared' estĆ  reservat per Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Mida" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fitxers" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index c5cc2dc2b4a..481b00ceee9 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 07:20+0000\n" +"Last-Translator: rogerc \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" @@ -47,15 +47,15 @@ msgstr "Encriptatge" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "L'encriptació de fitxers estĆ  activada." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Els tipus de fitxers següents no s'encriptaran:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Exclou els tipus de fitxers següents de l'encriptatge:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 3bb530ebc63..2563d256cc7 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "executa l'operació de restauració" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Eliminat" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 carpeta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} carpetes" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fitxer" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fitxers" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 4ad389d707e..4f2bbf05a06 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 16:48+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "No s'ha pogut carregar la llista des de l'App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error d'autenticació" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "El grup ja existeix" @@ -51,10 +60,6 @@ msgstr "El correu electrònic no Ć©s vĆ lid" msgid "Unable to delete group" msgstr "No es pot eliminar el grup" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error d'autenticació" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "No es pot eliminar l'usuari" @@ -117,7 +122,7 @@ msgstr "Error" msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "S'estĆ  desant..." @@ -194,67 +199,83 @@ msgstr " Baixa el client per Android" msgid "Download iOS Client" msgstr "Baixa el client per iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostra" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nom a mostrar" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Useu aquesta adreƧa per connectar amb ownCloud des del gestor de fitxers" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versió" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -163,55 +163,55 @@ msgstr "Prosinec" msgid "Settings" msgstr "NastavenĆ­" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "před pĆ”r vteřinami" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "dnes" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "včera" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "minulý mesĆ­c" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "před {months} měsĆ­ci" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "před měsĆ­ci" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "minulý rok" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "před lety" @@ -566,14 +566,18 @@ msgstr "Změňte, prosĆ­m, svĆ© heslo pro opětovnĆ© zabezpečenĆ­ VaÅ”eho ĆŗÄt msgid "Lost your password?" msgstr "Ztratili jste svĆ© heslo?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "zapamatovat si" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "PřihlĆ”sit" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "předchozĆ­" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 36e541de84c..09eccd46440 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:40+0000\n" -"Last-Translator: TomÔŔ ChvĆ”tal \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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,46 +20,46 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslĆ”n. NeznĆ”mĆ” chyba" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslĆ”n ĆŗspěŔně" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "OdesĆ­laný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesĆ”hl svou velikostĆ­ parametr MAX_FILE_SIZE specifikovaný v formulÔři HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslĆ”n pouze ÄĆ”stečně" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ŽÔdný soubor nebyl odeslĆ”n" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ChybĆ­ adresÔř pro dočasnĆ© soubory" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ZĆ”pis na disk selhal" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nedostatek dostupnĆ©ho mĆ­sta" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Neplatný adresÔř" @@ -71,11 +71,15 @@ msgstr "Soubory" msgid "Unshare" msgstr "ZruÅ”it sdĆ­lenĆ­" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Smazat" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Přejmenovat" @@ -180,31 +184,31 @@ msgstr "URL nemůže být prĆ”zdnĆ”" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatný nĆ”zev složky. PoužitĆ­ 'Shared' je rezervovĆ”no pro vnitřnĆ­ potřeby Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "NĆ”zev" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Změněno" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 složka" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 soubor" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} soubory" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 2df7a8af809..ea06c00d305 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 09:51+0000\n" +"Last-Translator: TomÔŔ ChvĆ”tal \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" @@ -47,15 +47,15 @@ msgstr "Å ifrovĆ”nĆ­" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Å ifrovĆ”nĆ­ je povoleno." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "NĆ”sledujĆ­cĆ­ typy souborÅÆ nebudou Å”ifrovĆ”ny:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Vyjmout nĆ”sledujĆ­cĆ­ typy souborÅÆ ze Å”ifrovĆ”nĆ­:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 29c424b5de7..11b7352f658 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "provĆ©st obnovu" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "NĆ”zev" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "SmazĆ”no" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 složka" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} složky" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 soubor" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} soubory" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index c232c3b36df..88caa49b136 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 08:10+0000\n" -"Last-Translator: TomÔŔ ChvĆ”tal \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nelze načƭst seznam z App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Chyba ověřenĆ­" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Skupina již existuje" @@ -51,10 +60,6 @@ msgstr "Neplatný e-mail" msgid "Unable to delete group" msgstr "Nelze smazat skupinu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Chyba ověřenĆ­" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nelze smazat uživatele" @@ -117,7 +122,7 @@ msgstr "Chyba" msgid "Updated" msgstr "AktualizovĆ”no" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "UklĆ”dĆ”m..." @@ -194,67 +199,83 @@ msgstr "StĆ”hnout klienta pro android" msgid "Download iOS Client" msgstr "StĆ”hnout klienta pro iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Heslo" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "VaÅ”e heslo bylo změněno" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "VaÅ”e heslo nelze změnit" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "SoučasnĆ© heslo" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "NovĆ© heslo" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zobrazit" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "ZobrazovanĆ© jmĆ©no" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "VaÅ”e e-mailovĆ” adresa" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Pro povolenĆ­ změny hesla vyplňte adresu e-mailu" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použijte tuto adresu pro připojenĆ­ k vaÅ”emu ownCloud skrze sprĆ”vce souborÅÆ" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Verze" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -168,55 +168,55 @@ msgstr "December" msgid "Settings" msgstr "Indstillinger" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "i dag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "i gĆ„r" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "sidste mĆ„ned" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} mĆ„neder siden" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mĆ„neder siden" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "sidste Ć„r" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Ć„r siden" @@ -571,14 +571,18 @@ msgstr "Skift adgangskode for at sikre din konto igen." msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "husk" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log ind" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/da/files.po b/l10n/da/files.po index 2768aaf4490..9477b306d4f 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -25,46 +25,46 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Der er ingen fejl, filen blev uploadet med success" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Den uploadede file blev kun delvist uploadet" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen fil blev uploadet" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -76,11 +76,15 @@ msgstr "Filer" msgid "Unshare" msgstr "Fjern deling" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slet" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "OmdĆøb" @@ -185,31 +189,31 @@ msgstr "URLen kan ikke vƦre tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "StĆørrelse" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Ɔndret" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fil" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 34a7ae71319..6f1c6e6b463 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappe" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mapper" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fil" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 297100e94e2..b2be1f63796 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -31,6 +31,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kunne ikke indlƦse listen fra App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Adgangsfejl" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppen findes allerede" @@ -55,10 +64,6 @@ msgstr "Ugyldig email adresse" msgid "Unable to delete group" msgstr "Gruppen kan ikke slettes" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Adgangsfejl" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Bruger kan ikke slettes" @@ -121,7 +126,7 @@ msgstr "Fejl" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Gemmer..." @@ -198,67 +203,83 @@ msgstr "Hent Android Klient" msgid "Download iOS Client" msgstr "Hent iOS Klient" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Kodeord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Din adgangskode blev Ʀndret" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ude af stand til at Ʀndre dit kodeord" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "NuvƦrende adgangskode" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Ny adgangskode" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "vis" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Indtast en emailadresse for at kunne fĆ„ pĆ„mindelse om adgangskode" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprog" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "HjƦlp med oversƦttelsen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -175,55 +175,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Heute" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "Gestern" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Vor Jahren" @@ -578,14 +578,18 @@ msgstr "Bitte Ƥndere Dein Passwort, um Deinen Account wieder zu schützen." msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "merken" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Einloggen" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" diff --git a/l10n/de/files.po b/l10n/de/files.po index 06930bfca5c..7cf13d9caa2 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 00:10+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -38,46 +38,46 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Datei fehlerfrei hochgeladen." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "TemporƤrer Ordner fehlt." -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nicht genug Speicherplatz verfügbar" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -89,11 +89,15 @@ msgstr "Dateien" msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Lƶschen" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Umbenennen" @@ -198,31 +202,31 @@ msgstr "Die URL darf nicht leer sein." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 Datei" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index ae8505b00e4..6950494d029 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -19,31 +19,35 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Wiederherstellung ausführen" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "gelƶscht" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 Ordner" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} Ordner" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 Datei" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 25f769704b0..701892688ca 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -40,6 +40,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Fehler bei der Anmeldung" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppe existiert bereits" @@ -64,10 +73,6 @@ msgstr "Ungültige E-Mail Adresse" msgid "Unable to delete group" msgstr "Gruppe konnte nicht gelƶscht werden" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Fehler bei der Anmeldung" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Benutzer konnte nicht gelƶscht werden" @@ -130,7 +135,7 @@ msgstr "Fehler" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Speichern..." @@ -207,67 +212,83 @@ msgstr "Android-Client herunterladen" msgid "Download iOS Client" msgstr "iOS-Client herunterladen" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passwort" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Dein Passwort wurde geƤndert." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Passwort konnte nicht geƤndert werden" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zeigen" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Passwort Ƥndern" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Anzeigename" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprache" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -176,55 +176,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Heute" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "Gestern" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Vor Jahren" @@ -579,14 +579,18 @@ msgstr "Bitte Ƥndern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "merken" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Einloggen" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Zurück" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 474d7e5ab28..20ad6643182 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -29,9 +29,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 19:21+0000\n" -"Last-Translator: quick_wango \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -39,46 +39,46 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Es sind keine Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Größe der hochzuladenden Datei überschreitet die MAX_FILE_SIZE-Richtlinie, die im HTML-Formular angegeben wurde" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei wurde nur teilweise hochgeladen." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Es wurde keine Datei hochgeladen." -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Der temporƤre Ordner fehlt." -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nicht genügend Speicherplatz verfügbar" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -90,11 +90,15 @@ msgstr "Dateien" msgid "Unshare" msgstr "Nicht mehr freigeben" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Lƶschen" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Umbenennen" @@ -199,31 +203,31 @@ msgstr "Die URL darf nicht leer sein." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 Datei" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index f08dcbd0043..46d04db9deb 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -19,31 +19,35 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Führe die Wiederherstellung aus" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Gelƶscht" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 Ordner" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} Ordner" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 Datei" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index ffbcc368ff6..980889f5928 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -28,9 +28,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 00:10+0000\n" -"Last-Translator: Lukas Reschke \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -42,6 +42,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Fehler bei der Anmeldung" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Die Gruppe existiert bereits" @@ -66,10 +75,6 @@ msgstr "Ungültige E-Mail-Adresse" msgid "Unable to delete group" msgstr "Die Gruppe konnte nicht gelƶscht werden" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Fehler bei der Anmeldung" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Der Benutzer konnte nicht gelƶscht werden" @@ -132,7 +137,7 @@ msgstr "Fehler" msgid "Updated" msgstr "Geupdated" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Speichern..." @@ -209,67 +214,83 @@ msgstr "Android-Client herunterladen" msgid "Download iOS Client" msgstr "iOS-Client herunterladen" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passwort" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ihr Passwort wurde geƤndert." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geƤndert werden" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zeigen" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Passwort Ƥndern" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Anzeigename" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprache" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -167,55 +167,55 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ī”Ļ…ĪøĪ¼ĪÆĻƒĪµĪ¹Ļ‚" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Ī± πριν" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 Ī»ĪµĻ€Ļ„ĻŒ πριν" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 ĻŽĻĪ± πριν" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} ĻŽĻĪµĻ‚ πριν" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "σήμερα" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "χτες" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "τελευταίο Ļ‡ĻĻŒĪ½Īæ" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Ļ‡ĻĻŒĪ½Ī¹Ī± πριν" @@ -570,14 +570,18 @@ msgstr "Ī Ī±ĻĪ±ĪŗĪ±Ī»ĻŽ αλλάξτε το ĻƒĻ…Ī½ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŒ ĻƒĪ±Ļ‚ γι msgid "Lost your password?" msgstr "ĪžĪµĻ‡Ī¬ĻƒĪ±Ļ„Īµ το ĻƒĻ…Ī½ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŒ ĻƒĪ±Ļ‚;" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "Ī±Ļ€ĪæĪ¼Ī½Ī·Ī¼ĻŒĪ½ĪµĻ…ĻƒĪ·" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Ī•ĪÆĻƒĪæĪ“ĪæĻ‚" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Ļ€ĻĪæĪ·Ī³ĪæĻĪ¼ĪµĪ½Īæ" diff --git a/l10n/el/files.po b/l10n/el/files.po index 233012d37cb..ee4f5f3cf1d 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -25,46 +25,46 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ ĻƒĻ†Ī¬Ī»Ī¼Ī±" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει ĻƒĻ†Ī¬Ī»Ī¼Ī±, το αρχείο ĪµĻƒĻ„Ī¬Ī»ĪµĪ¹ ĪµĻ€Ī¹Ļ„Ļ…Ļ‡ĻŽĻ‚" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το Ī±Ļ€ĪµĻƒĻ„Ī±Ī»Ī¼Ī­Ī½Īæ αρχείο ξεπερνά την οΓηγία upload_max_filesize ĻƒĻ„Īæ php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το αρχείο υπερβαίνει την οΓηγία Ī¼Ī­Ī³Ī¹ĻƒĻ„ĪæĻ… ĪµĻ€Ī¹Ļ„ĻĪµĻ€Ļ„ĪæĻ μεγέθους \"MAX_FILE_SIZE\" που έχει ĪæĻĪ¹ĻƒĻ„ĪµĪÆ ĻƒĻ„Ī·Ī½ HTML Ļ†ĻŒĻĪ¼Ī±" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο ĪµĻƒĻ„Ī¬Ī»ĪµĪ¹ μόνο εν μέρει" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Κανένα αρχείο Γεν ĻƒĻ„Ī¬Ī»ĪøĪ·ĪŗĪµ" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Λείπει Īæ Ļ€ĻĪæĻƒĻ‰ĻĪ¹Ī½ĻŒĻ‚ φάκελος" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής ĻƒĻ„Īæ Γίσκο" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Δεν υπάρχει Ī±ĻĪŗĪµĻ„ĻŒĻ‚ Ī“Ī¹Ī±ĪøĪ­ĻƒĪ¹Ī¼ĪæĻ‚ Ļ‡ĻŽĻĪæĻ‚" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -76,11 +76,15 @@ msgstr "Αρχεία" msgid "Unshare" msgstr "Διακοπή κοινής Ļ‡ĻĪ®ĻƒĪ·Ļ‚" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Διαγραφή" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ĪœĪµĻ„ĪæĪ½ĪæĪ¼Ī±ĻƒĪÆĪ±" @@ -185,31 +189,31 @@ msgstr "Ī— URL Γεν πρέπει να είναι κενή." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Ī— Ļ‡ĻĪ®ĻƒĪ· του 'ĪšĪæĪ¹Ī½ĻŒĻ‡ĻĪ·ĻƒĻ„ĪæĻ‚' Ļ‡ĻĪ·ĻƒĪ¹Ī¼ĪæĻ€ĪæĪ¹ĪµĪÆĻ„Ī±Ī¹ Ī±Ļ€ĻŒ Īæ Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Όνομα" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ĪœĪ­Ī³ĪµĪøĪæĻ‚" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} αρχεία" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index e29ec4d6caf..21fb46b9862 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Όνομα" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 φάκελος" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 αρχείο" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} αρχεία" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index ffd6028e9c1..c6c5dfb10f0 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -33,6 +33,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Σφάλμα ĻƒĻ„Ī·Ī½ Ļ†ĻŒĻĻ„Ļ‰ĻƒĪ· της Ī»ĪÆĻƒĻ„Ī±Ļ‚ Ī±Ļ€ĻŒ το App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Σφάλμα Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪÆĪ·ĻƒĪ·Ļ‚" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Ī— ομάΓα υπάρχει ήΓη" @@ -57,10 +66,6 @@ msgstr "Μη έγκυρο email" msgid "Unable to delete group" msgstr "ΑΓυναμία Γιαγραφής ομάΓας" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Σφάλμα Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪÆĪ·ĻƒĪ·Ļ‚" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ΑΓυναμία Γιαγραφής Ļ‡ĻĪ®ĻƒĻ„Ī·" @@ -123,7 +128,7 @@ msgstr "Σφάλμα" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Ī‘Ļ€ĪæĪøĪ®ĪŗĪµĻ…ĻƒĪ·..." @@ -200,67 +205,83 @@ msgstr "Ī›Ī®ĻˆĪ· Προγράμματος Android" msgid "Download iOS Client" msgstr "Ī›Ī®ĻˆĪ· Προγράμματος iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Ī£Ļ…Ī½ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŒ" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Το ĻƒĻ…Ī½ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŒ ĻƒĪ±Ļ‚ έχει αλλάξει" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Δεν ήταν Γυνατή Ī· αλλαγή του ĪŗĻ‰Ī“Ī¹ĪŗĪæĻ Ļ€ĻĻŒĻƒĪ²Ī±ĻƒĪ·Ļ‚" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Τρέχων ĻƒĻ…Ī½ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŒ" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ĪĪ­Īæ ĻƒĻ…Ī½ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŒ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ĪµĪ¼Ļ†Ī¬Ī½Ī¹ĻƒĪ·" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Αλλαγή ĻƒĻ…Ī½ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĪæĻ" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ī— Ī“Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· Ī·Ī»ĪµĪŗĻ„ĻĪæĪ½Ī¹ĪŗĪæĻ ταχυΓρομείου ĻƒĪ±Ļ‚" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ī£Ļ…Ī¼Ļ€Ī»Ī·ĻĻŽĻƒĻ„Īµ μια Ī“Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· Ī·Ī»ĪµĪŗĻ„ĻĪæĪ½Ī¹ĪŗĪæĻ ταχυΓρομείου για να ενεργοποιηθεί Ī· Ī±Ī½Ī¬ĪŗĻ„Ī·ĻƒĪ· ĻƒĻ…Ī½ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĪæĻ" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Ī“Ī»ĻŽĻƒĻƒĪ±" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ī’ĪæĪ·ĪøĪ®ĻƒĻ„Īµ ĻƒĻ„Ī· Ī¼ĪµĻ„Ī¬Ļ†ĻĪ±ĻƒĪ·" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Χρήση αυτής της Ī“Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ·Ļ‚ για ĻƒĻĪ½Ī“ĪµĻƒĪ· ĻƒĻ„Īæ ownCloud με τον Ī“Ī¹Ī±Ļ‡ĪµĪ¹ĻĪ¹ĻƒĻ„Ī® αρχείων ĻƒĪ±Ļ‚" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ΈκΓοση" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "Decembro" msgid "Settings" msgstr "Agordo" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekundoj antaÅ­e" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "antaÅ­ 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "antaÅ­ {minutes} minutoj" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "antaÅ­ 1 horo" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "antaÅ­ {hours} horoj" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hodiaÅ­" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "hieraÅ­" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "antaÅ­ {days} tagoj" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "lastamonate" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "antaÅ­ {months} monatoj" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "monatoj antaÅ­e" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "lastajare" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "jaroj antaÅ­e" @@ -565,14 +565,18 @@ msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "memori" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Ensaluti" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "maljena" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index d4406185134..aa88fa9c85e 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "La alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Neniu dosiero estas alŝutita" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Mankas tempa dosierujo" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Ne haveblas sufiĉa spaco" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -71,11 +71,15 @@ msgstr "Dosieroj" msgid "Unshare" msgstr "Malkunhavigi" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Forigi" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Alinomigi" @@ -180,31 +184,31 @@ msgstr "URL ne povas esti malplena." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nevalida dosierujnomo. Uzo de ā€œSharedā€ rezervatas de Owncloud." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Grando" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modifita" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} dosierujoj" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index c1491a33446..6a61ee22d0e 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nomo" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 dosierujo" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 dosiero" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} dosierujoj" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index f422c123005..d48c43e7b6f 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ne eblis ŝargi liston el aplikaĵovendejo" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "AÅ­tentiga eraro" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "La grupo jam ekzistas" @@ -48,10 +57,6 @@ msgstr "Nevalida retpoŝtadreso" msgid "Unable to delete group" msgstr "Ne eblis forigi la grupon" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "AÅ­tentiga eraro" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ne eblis forigi la uzanton" @@ -114,7 +119,7 @@ msgstr "Eraro" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Konservante..." @@ -191,67 +196,83 @@ msgstr "Elŝuti Android-klienton" msgid "Download iOS Client" msgstr "Elŝuti iOS-klienton" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "montri" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Enigu retpoŝtadreson por kapabligi pasvortan restaÅ­ron" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Eldono" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \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" @@ -171,55 +171,55 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoy" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ayer" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "hace {days} dĆ­as" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "mes pasado" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "hace meses" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "aƱo pasado" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "hace aƱos" @@ -574,14 +574,18 @@ msgstr "Por favor cambie su contraseƱa para asegurar su cuenta nuevamente." msgid "Lost your password?" msgstr "ĀæHas perdido tu contraseƱa?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "recuĆ©rdame" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Entrar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es/files.po b/l10n/es/files.po index d5984a7cbf7..6cb15f29315 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 22:50+0000\n" -"Last-Translator: msvladimir \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -78,11 +78,15 @@ msgstr "Archivos" msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renombrar" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index cfd77783345..b7d69adaf02 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -6,13 +6,14 @@ # Felix Liberio , 2013. # , 2012. # Raul Fernandez Garcia , 2013. +# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-05 23:10+0000\n" +"Last-Translator: msvladimir \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" @@ -48,15 +49,15 @@ msgstr "Cifrado" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "La encriptacion de archivo esta activada." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Los siguientes tipos de archivo no seran encriptados:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Excluir los siguientes tipos de archivo de la encriptacion:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 14f67707885..e0804a6ea50 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 22:40+0000\n" -"Last-Translator: msvladimir \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"Last-Translator: I Robot \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" @@ -18,31 +18,35 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Restaurar" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 carpeta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} carpetas" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 archivo" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 5087cce0920..6c498f9b5f8 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:00+0000\n" -"Last-Translator: msvladimir \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -34,6 +34,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error de autenticación" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "El grupo ya existe" @@ -58,10 +67,6 @@ msgstr "Correo no vĆ”lido" msgid "Unable to delete group" msgstr "No se pudo eliminar el grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error de autenticación" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "No se pudo eliminar el usuario" @@ -124,7 +129,7 @@ msgstr "Error" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Guardando..." @@ -229,39 +234,55 @@ msgstr "mostrar" msgid "Change password" msgstr "Cambiar contraseƱa" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "Tu dirección de correo" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Escribe una dirección de correo electrónico para restablecer la contraseƱa" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr "AyĆŗdanos a traducir" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index b8625fa972f..2fab6ec64a4 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -162,55 +162,55 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segundos atrĆ”s" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} horas atrĆ”s" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoy" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ayer" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "hace {days} dĆ­as" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "el mes pasado" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} meses atrĆ”s" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses atrĆ”s" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "el aƱo pasado" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "aƱos atrĆ”s" @@ -565,14 +565,18 @@ msgstr "Por favor, cambiĆ” tu contraseƱa para fortalecer nuevamente la segurida msgid "Lost your password?" msgstr "ĀæPerdiste tu contraseƱa?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "recordame" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Entrar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 16fb351cdfb..73b58d8834c 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "No se han producido errores, el archivo se ha subido con Ć©xito" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentĆ”s subir excede el tamaƱo definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo que intentĆ”s subir sobrepasa el tamaƱo definido por la variable MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "El archivo que intentĆ”s subir solo se subió parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "El archivo no fue subido" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directorio invalido." @@ -71,11 +71,15 @@ msgstr "Archivos" msgid "Unshare" msgstr "Dejar de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Borrar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Cambiar nombre" @@ -109,7 +113,7 @@ msgstr "reemplazado {new_name} con {old_name}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "Eliminar" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -180,31 +184,31 @@ msgstr "La URL no puede estar vacĆ­a" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta invĆ”lido. El uso de 'Shared' estĆ” reservado por ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "TamaƱo" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 archivo" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} archivos" @@ -262,7 +266,7 @@ msgstr "Desde enlace" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "Papelera" #: templates/index.php:46 msgid "Cancel upload" @@ -296,4 +300,4 @@ msgstr "Escaneo actual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Actualizando el cache del sistema de archivos" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 7352752bf48..2048ce0e543 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 directorio" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} directorios" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 archivo" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 8310f58c95c..a9d2e183b6e 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error al autenticar" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "El grupo ya existe" @@ -48,10 +57,6 @@ msgstr "el e-mail no es vĆ”lido " msgid "Unable to delete group" msgstr "No fue posible eliminar el grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error al autenticar" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "No fue posible eliminar el usuario" @@ -114,7 +119,7 @@ msgstr "Error" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Guardando..." @@ -191,67 +196,83 @@ msgstr "Descargar cliente de Android" msgid "Download iOS Client" msgstr "Descargar cliente de iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ContraseƱa" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Tu contraseƱa fue cambiada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseƱa" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ContraseƱa actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nueva contraseƱa:" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar contraseƱa" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "EscribĆ­ una dirección de correo electrónico para restablecer la contraseƱa" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versión" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 17:20+0000\n" +"Last-Translator: Agustin Ferrario \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" @@ -22,11 +22,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Fallo al borrar la configuración del servidor" #: ajax/testConfiguration.php:35 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "La configuración es valida y la conexión pudo ser establecida." #: ajax/testConfiguration.php:37 msgid "" @@ -50,27 +50,27 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "ĀæMantener preferencias?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "No se pudo aƱadir la configuración del servidor" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "El este de conexión ha sido completado satisfactoriamente" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "Falló es test de conexión" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "ĀæRealmente desea borrar la configuración actual del servidor?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "Confirmar borrado" #: templates/settings.php:8 msgid "" @@ -87,11 +87,11 @@ msgstr "Atención: El módulo PHP LDAP no estĆ” instalado, este elemento #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "Configuración del Servidor" #: templates/settings.php:17 msgid "Add Server Configuration" -msgstr "" +msgstr "AƱadir Configuración del Servidor" #: templates/settings.php:21 msgid "Host" @@ -175,11 +175,11 @@ msgstr "Sin ninguna plantilla, p. ej.: \"objectClass=posixGroup\"." #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "Configuración de Conección" #: templates/settings.php:33 msgid "Configuration Active" -msgstr "" +msgstr "Configuración activa" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." @@ -205,7 +205,7 @@ msgstr "" #: templates/settings.php:37 msgid "Disable Main Server" -msgstr "" +msgstr "Deshabilitar el Servidor Principal" #: templates/settings.php:37 msgid "When switched on, ownCloud will only connect to the replica server." @@ -243,7 +243,7 @@ msgstr "en segundos. Cambiarlo vacĆ­a la cache." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "Configuración de Directorio" #: templates/settings.php:45 msgid "User Display Name Field" @@ -295,7 +295,7 @@ msgstr "Asociación Grupo-Miembro" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Atributos Especiales" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 319bddaf875..6f5386d3a73 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "Detsember" msgid "Settings" msgstr "Seaded" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "tƤna" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "eile" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} pƤeva tagasi" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "aastat tagasi" @@ -563,14 +563,18 @@ msgstr "Palun muuda parooli, et oma kasutajakonto uuesti turvata." msgid "Lost your password?" msgstr "Kaotasid oma parooli?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "pea meeles" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logi sisse" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "eelm" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index deecc6e8688..b3de1b124e9 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi viga pole, fail on üles laetud" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üles laetud faili suurus ületab HTML vormis mƤƤratud upload_max_filesize suuruse" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaƵnnestus" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "Failid" msgid "Unshare" msgstr "LƵpeta jagamine" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Kustuta" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ümber" @@ -179,31 +183,31 @@ msgstr "URL ei saa olla tühi." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Suurus" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Muudetud" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fail" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} faili" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 818c4c31a5d..23d134dba98 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 kaust" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} kausta" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fail" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} faili" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 1dbc6e9f6fd..bd9993e5ebc 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "App Sotre'i nimekirja laadimine ebaƵnnestus" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentimise viga" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupp on juba olemas" @@ -47,10 +56,6 @@ msgstr "Vigane e-post" msgid "Unable to delete group" msgstr "Keela grupi kustutamine" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentimise viga" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Keela kasutaja kustutamine" @@ -113,7 +118,7 @@ msgstr "Viga" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Salvestamine..." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parool" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "nƤita" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-post" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Keel" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Aita tƵlkida" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -163,55 +163,55 @@ msgstr "Abendua" msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segundu" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "gaur" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "atzo" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "hilabete" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "joan den urtean" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "urte" @@ -566,14 +566,18 @@ msgstr "Mesedez aldatu zure pasahitza zure kontua berriz segurtatzeko." msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "gogoratu" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Hasi saioa" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "aurrekoa" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 2c3f16305dd..aa53f964026 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ez da arazorik izan, fitxategia ongi igo da" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategiaren tamaina HTML inprimakiko MAX_FILESIZE direktiban adierazitakoa baino handiagoa da" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat baino gehiago ez da igo" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Aldi baterako karpeta falta da" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Ez dago leku nahikorik." -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -72,11 +72,15 @@ msgstr "Fitxategiak" msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Ezabatu" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Berrizendatu" @@ -181,31 +185,31 @@ msgstr "URLa ezin da hutsik egon." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamaina" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fitxategi" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index a0ee131403b..0eecd4d06ce 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Izena" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "karpeta bat" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} karpeta" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "fitxategi bat" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fitxategi" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 7b268d3a9d6..b605292a8ae 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ezin izan da App Dendatik zerrenda kargatu" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentifikazio errorea" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Taldea dagoeneko existitzenda" @@ -49,10 +58,6 @@ msgstr "Baliogabeko eposta" msgid "Unable to delete group" msgstr "Ezin izan da taldea ezabatu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentifikazio errorea" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ezin izan da erabiltzailea ezabatu" @@ -115,7 +120,7 @@ msgstr "Errorea" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Gordetzen..." @@ -192,67 +197,83 @@ msgstr "Deskargatu Android bezeroa" msgid "Download iOS Client" msgstr "Deskargatu iOS bezeroa" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Zere pasahitza aldatu da" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "erakutsi" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Bistaratze Izena" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-Posta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Bertsioa" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,55 +161,55 @@ msgstr "ŲÆŲ³Ų§Ł…ŲØŲ±" msgid "Settings" msgstr "ŲŖŁ†ŲøŪŒŁ…Ų§ŲŖ" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "Ų«Ų§Ł†ŪŒŁ‡ā€ŒŁ‡Ų§ پیؓ" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 ŲÆŁ‚ŪŒŁ‚Ł‡ پیؓ" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{ŲÆŁ‚ŪŒŁ‚Ł‡ ها} ŲÆŁ‚ŪŒŁ‚Ł‡ Ł‡Ų§ŪŒ پیؓ" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 Ų³Ų§Ų¹ŲŖ پیؓ" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{Ų³Ų§Ų¹ŲŖ ها} Ų³Ų§Ų¹ŲŖ ها پیؓ" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Ų§Ł…Ų±ŁˆŲ²" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "دیروز" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{Ų±ŁˆŲ²Ł‡Ų§} Ų±ŁˆŲ²Ł‡Ų§ŪŒ پیؓ" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ماه قبل" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیؓ" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "Ł…Ų§Ł‡ā€ŒŁ‡Ų§ŪŒ قبل" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "Ų³Ų§Ł„ قبل" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Ų³Ų§Ł„ā€ŒŁ‡Ų§ŪŒ قبل" @@ -564,14 +564,18 @@ msgstr "لطفا رمز عبور خود Ų±Ų§ تغییر ŲÆŁ‡ŪŒŲÆ ŲŖŲ§ Ł…Ų¬ŲÆŲÆŲ§ msgid "Lost your password?" msgstr "آیا ŚÆŲ°Ų±ŁˆŲ§Ś˜Ł‡ تان Ų±Ų§ به یاد Ł†Ł…ŪŒ آورید؟" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ورود" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "بازگؓت" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index c0c54f59a62..9739c71ab29 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 11:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ł‡ŪŒŚ† ŁŲ§ŪŒŁ„ŪŒ Ų¢Ł¾Ł„ŁˆŲÆ نؓد.خطای ناؓناس" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ł‡ŪŒŚ† خطایی وجود ندارد ŁŲ§ŪŒŁ„ ŲØŲ§ Ł…ŁˆŁŁ‚ŪŒŲŖ ŲØŲ§Ų± گذاری Ų“ŲÆ" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Ł¾Ų±ŁˆŁ†ŲÆŁ‡ Ų¢Ł¾Ł„ŁˆŲÆ ؓده بیؓ ازدستور Ł…Ų§Ś©Ų²ŪŒŁ…Ł…_حجم ŁŲ§ŪŒŁ„_برای Ų¢Ł¾Ł„ŁˆŲÆ ŲÆŲ± php.ini استفاده کرده Ų§Ų³ŲŖ." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم Ł…Ų¬Ų§Ų² برای بارگذاری Ų§Ų² Ų·Ų±ŪŒŁ‚ HTML \nMAX_FILE_SIZE" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "مقدار Ś©Ł…ŪŒ Ų§Ų² ŁŲ§ŪŒŁ„ بارگذاری ؓده" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ł‡ŪŒŚ† ŁŲ§ŪŒŁ„ŪŒ بارگذاری نؓده" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "یک Ł¾ŁˆŲ“Ł‡ Ł…ŁˆŁ‚ŲŖ ŚÆŁ… ؓده Ų§Ų³ŲŖ" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Ł†ŁˆŲ“ŲŖŁ† ŲØŲ± روی دیسک Ų³Ų®ŲŖ Ł†Ų§Ł…ŁˆŁŁ‚ بود" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "فضای کافی ŲÆŲ± ŲÆŲ³ŲŖŲ±Ų³ Ł†ŪŒŲ³ŲŖ" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر Ł…ŪŒ ŲØŲ§Ų“ŲÆ." @@ -72,11 +72,15 @@ msgstr "ŁŲ§ŪŒŁ„ ها" msgid "Unshare" msgstr "Ł„ŲŗŁˆ Ų§Ų“ŲŖŲ±Ų§Ś©" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "پاک کردن" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ŲŖŲŗŪŒŪŒŲ±Ł†Ų§Ł…" @@ -181,31 +185,31 @@ msgstr "URL Ł†Ł…ŪŒ ŲŖŁˆŲ§Ł†ŲÆ Ų®Ų§Ł„ŪŒ ŲØŲ§Ų“ŲÆ." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "نام Ł¾ŁˆŲ“Ł‡ نامعتبر Ų§Ų³ŲŖ. استفاده Ų§Ų² \" به Ų§Ų“ŲŖŲ±Ų§Ś© گذاؓته ؓده \" متعلق به سایت Owncloud Ų§Ų³ŲŖ." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "نام" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "اندازه" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "تغییر ŪŒŲ§ŁŲŖŁ‡" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 Ł¾ŁˆŲ“Ł‡" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{ Ų“Ł…Ų§Ų±} Ł¾ŁˆŲ“Ł‡ ها" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 Ł¾Ų±ŁˆŁ†ŲÆŁ‡" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{ Ų“Ł…Ų§Ų± } ŁŲ§ŪŒŁ„ ها" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index d0801cffe9f..3610dde6bec 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 12:40+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "نام" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 Ł¾ŁˆŲ“Ł‡" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{ Ų“Ł…Ų§Ų±} Ł¾ŁˆŲ“Ł‡ ها" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 Ł¾Ų±ŁˆŁ†ŲÆŁ‡" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{ Ų“Ł…Ų§Ų± } ŁŲ§ŪŒŁ„ ها" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index bc13d018d0b..f38f77bf14e 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 13:30+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +26,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "قادر به بارگذاری Ł„ŪŒŲ³ŲŖ Ų§Ų² ŁŲ±ŁˆŲ“ŚÆŲ§Ł‡ اپ Ł†ŪŒŲ³ŲŖŁ…" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Ų®Ų·Ų§ ŲÆŲ± Ų§Ų¹ŲŖŲØŲ§Ų± Ų³Ł†Ų¬ŪŒ" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Ų§ŪŒŁ† ŚÆŲ±ŁˆŁ‡ ŲÆŲ± Ų­Ų§Ł„ Ų­Ų§Ų¶Ų± Ł…ŁˆŲ¬ŁˆŲÆ Ų§Ų³ŲŖ" @@ -50,10 +59,6 @@ msgstr "Ų§ŪŒŁ…ŪŒŁ„ غیر قابل Ł‚ŲØŁˆŁ„" msgid "Unable to delete group" msgstr "حذف ŚÆŲ±ŁˆŁ‡ امکان پذیر Ł†ŪŒŲ³ŲŖ" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Ų®Ų·Ų§ ŲÆŲ± Ų§Ų¹ŲŖŲØŲ§Ų± Ų³Ł†Ų¬ŪŒ" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "حذف کاربر امکان پذیر Ł†ŪŒŲ³ŲŖ" @@ -116,7 +121,7 @@ msgstr "Ų®Ų·Ų§" msgid "Updated" msgstr "بروز Ų±Ų³Ų§Ł†ŪŒ انجام Ų“ŲÆ" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ŲÆŲ±Ų­Ų§Ł„ Ų°Ų®ŪŒŲ±Ł‡ ..." @@ -221,39 +226,55 @@ msgstr "Ł†Ł…Ų§ŪŒŲ“" msgid "Change password" msgstr "تغییر ŚÆŲ°Ų± ŁˆŲ§Ś˜Ł‡" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "پست Ų§Ł„Ś©ŲŖŲ±ŁˆŁ†ŪŒŚ©ŪŒ" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "پست Ų§Ł„Ś©ŲŖŲ±ŁˆŁ†ŪŒŚ©ŪŒ Ų“Ł…Ų§" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "پست Ų§Ł„Ś©ŲŖŲ±ŁˆŁ†ŪŒŚ©ŪŒ Ų±Ų§ Ł¾Ų±Ś©Ł†ŪŒŲÆ ŲŖŲ§ بازیابی ŚÆŲ°Ų±ŁˆŲ§Ś˜Ł‡ فعال ؓود" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "زبان" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr "به ترجمه آن کمک Ś©Ł†ŪŒŲÆ" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "نسخه" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -166,55 +166,55 @@ msgstr "Joulukuu" msgid "Settings" msgstr "Asetukset" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "tƤnƤƤn" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "eilen" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} pƤivƤƤ sitten" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "viime kuussa" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "viime vuonna" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "vuotta sitten" @@ -569,14 +569,18 @@ msgstr "Vaihda salasanasi suojataksesi tilisi uudelleen." msgid "Lost your password?" msgstr "Unohditko salasanasi?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "muista" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Kirjaudu sisƤƤn" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "edellinen" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 3e3ea718bb0..13f67673e04 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 13:58+0000\n" -"Last-Translator: Jiri Grƶnroos \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -22,46 +22,46 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lƤhetetty. Tuntematon virhe" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitƤ, tiedosto lƤhetettiin onnistuneesti" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "LƤhetetty tiedosto ylittƤƤ HTML-lomakkeessa mƤƤritetyn MAX_FILE_SIZE-arvon ylƤrajan" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lƤhetys onnistui vain osittain" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "YhtƤkƤƤn tiedostoa ei lƤhetetty" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "VƤliaikaiskansiota ei ole olemassa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epƤonnistui" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Tilaa ei ole riittƤvƤsti" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -73,11 +73,15 @@ msgstr "Tiedostot" msgid "Unshare" msgstr "Peru jakaminen" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Poista" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "NimeƤ uudelleen" @@ -182,31 +186,31 @@ msgstr "Verkko-osoite ei voi olla tyhjƤ" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Koko" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Muutettu" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} tiedostoa" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 3543c5b1193..862e93f1b77 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "suorita palautustoiminto" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Poistettu" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 kansio" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} kansiota" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 tiedosto" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} tiedostoa" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index eb214d66683..f31845d910b 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 13:58+0000\n" -"Last-Translator: Jiri Grƶnroos \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ei pystytƤ lataamaan listaa sovellusvarastosta (App Store)" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Todennusvirhe" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "RyhmƤ on jo olemassa" @@ -48,10 +57,6 @@ msgstr "Virheellinen sƤhkƶposti" msgid "Unable to delete group" msgstr "RyhmƤn poisto epƤonnistui" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Todennusvirhe" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "KƤyttƤjƤn poisto epƤonnistui" @@ -114,7 +119,7 @@ msgstr "Virhe" msgid "Updated" msgstr "PƤivitetty" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Tallennetaan..." @@ -191,67 +196,83 @@ msgstr "Lataa Android-sovellus" msgid "Download iOS Client" msgstr "Lataa iOS-sovellus" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Salasana" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "nƤytƤ" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "NƤyttƶnimi" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "SƤhkƶposti" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "SƤhkƶpostiosoitteesi" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Anna sƤhkƶpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Kieli" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Auta kƤƤntƤmisessƤ" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "KƤytƤ tƤtƤ osoitetta yhdistƤessƤsi ownCloudiisi tiedostonhallintaa kƤyttƤen" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versio" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \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" @@ -172,55 +172,55 @@ msgstr "dĆ©cembre" msgid "Settings" msgstr "ParamĆØtres" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "aujourd'hui" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "hier" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "le mois dernier" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "l'annĆ©e derniĆØre" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "il y a plusieurs annĆ©es" @@ -575,14 +575,18 @@ msgstr "Veuillez changer votre mot de passe pour sĆ©curiser Ć  nouveau votre com msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Connexion" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prĆ©cĆ©dent" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 5a5f892a67e..4d48780dff7 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 14:30+0000\n" -"Last-Translator: Flywall \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -31,46 +31,46 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a Ć©tĆ© chargĆ©. Erreur inconnue" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a Ć©tĆ© tĆ©lĆ©versĆ© avec succĆØs" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyĆ© dĆ©passe la valeur upload_max_filesize situĆ©e dans le fichier php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier tĆ©lĆ©versĆ© excĆØde la valeur de MAX_FILE_SIZE spĆ©cifiĆ©e dans le formulaire HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a Ć©tĆ© que partiellement tĆ©lĆ©versĆ©" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Aucun fichier n'a Ć©tĆ© tĆ©lĆ©versĆ©" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Il manque un rĆ©pertoire temporaire" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Erreur d'Ć©criture sur le disque" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Espace disponible insuffisant" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Dossier invalide." @@ -82,11 +82,15 @@ msgstr "Fichiers" msgid "Unshare" msgstr "Ne plus partager" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Supprimer" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renommer" @@ -191,31 +195,31 @@ msgstr "L'URL ne peut-ĆŖtre vide" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est rĆ©servĆ©e Ć  Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Taille" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ModifiĆ©" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fichier" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fichiers" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index d8a8b2c7926..a0b95c58b5c 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -19,31 +19,35 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "effectuer l'opĆ©ration de restauration" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "EffacĆ©" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 dossier" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} dossiers" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fichier" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fichiers" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 59ec0fc34ac..926b1a0e082 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 20:10+0000\n" -"Last-Translator: jiminybillybob \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \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" @@ -38,6 +38,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Impossible de charger la liste depuis l'App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Erreur d'authentification" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Ce groupe existe dĆ©jĆ " @@ -62,10 +71,6 @@ msgstr "E-mail invalide" msgid "Unable to delete group" msgstr "Impossible de supprimer le groupe" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Erreur d'authentification" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Impossible de supprimer l'utilisateur" @@ -128,7 +133,7 @@ msgstr "Erreur" msgid "Updated" msgstr "Mise Ć  jour effectuĆ©e avec succĆØs" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Sauvegarde..." @@ -233,39 +238,55 @@ msgstr "Afficher" msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nom affichĆ©" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Entrez votre adresse e-mail pour permettre la rĆ©initialisation du mot de passe" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Langue" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr "Aidez Ć  traduire" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliser cette adresse pour vous connecter Ć  ownCloud dans votre gestionnaire de fichiers" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "decembro" msgid "Settings" msgstr "Configuracións" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segundos atrĆ”s" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "hai 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoxe" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "onte" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "hai {days} dĆ­as" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "Ćŗltimo mes" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses atrĆ”s" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "Ćŗltimo ano" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anos atrĆ”s" @@ -565,14 +565,18 @@ msgstr "Cambie de novo o seu contrasinal para asegurar a sĆŗa conta." msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "lembrar" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Conectar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 020232e7f37..d309fb232db 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Non se subiu ningĆŗn ficheiro. Erro descoƱecido." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Non hai erros. O ficheiro enviouse correctamente" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro subido excede a directiva indicada polo tamaƱo_mĆ”ximo_de_subida de php.ini" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado supera a directiva MAX_FILE_SIZE que foi indicada no formulario HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado foi só parcialmente enviado" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Non se enviou ningĆŗn ficheiro" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta un cartafol temporal" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Erro ao escribir no disco" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "O espazo dispoƱƭbel Ć© insuficiente" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "O directorio Ć© incorrecto." @@ -70,11 +70,15 @@ msgstr "Ficheiros" msgid "Unshare" msgstr "Deixar de compartir" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eliminar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Mudar o nome" @@ -179,31 +183,31 @@ msgstr "URL non pode quedar baleiro." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol non vĆ”lido. O uso de 'Shared' estĆ” reservado por Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "TamaƱo" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index be7e4127d3a..8f00ed2b31d 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 cartafol" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ficheiro" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index ccfa410e29f..ca408e99943 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Non foi posĆ­bel cargar a lista desde a App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Produciuse un erro de autenticación" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "O grupo xa existe" @@ -48,10 +57,6 @@ msgstr "correo incorrecto" msgid "Unable to delete group" msgstr "Non Ć© posĆ­bel eliminar o grupo." -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Produciuse un erro de autenticación" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Non Ć© posĆ­bel eliminar o usuario" @@ -114,7 +119,7 @@ msgstr "Erro" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Gardando..." @@ -191,67 +196,83 @@ msgstr "Descargar clientes para Android" msgid "Download iOS Client" msgstr "Descargar clientes ra iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Non Ć© posĆ­bel cambiar o seu contrasinal" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "amosar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Correo" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Escriba un enderezo de correo para activar a recuperación do contrasinal" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versión" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "×“×¦×ž×‘×Ø" msgid "Settings" msgstr "הגדרות" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "שניות" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "היום" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "××Ŗ×ž×•×œ" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "חודשים" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "שנים" @@ -567,14 +567,18 @@ msgstr "נא ×œ×©× ×•×Ŗ את הההמה שלך כדי לאבטח את חשבונ msgid "Lost your password?" msgstr "שכחת את ×”×”×ž×Ŗ×š?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "×©×ž×™×Ø×Ŗ הההמה" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "×›× ×™×”×”" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "הקודם" diff --git a/l10n/he/files.po b/l10n/he/files.po index ed74dc9066f..0c221283b67 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובׄ. ×˜×¢×•×Ŗ ×‘×œ×Ŗ×™ מזוהה." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "לא אירעה ×Ŗ×§×œ×”, הקבצים הועלו בהצלחה" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו ×—×•×Ø×’×™× מהגודל שצוין בהגדרה upload_max_filesize שבקובׄ php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובׄ שהועלה חרג מההנחיה MAX_FILE_SIZE שצוינה בטופה ה־HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "הקובׄ שהועלה הועלה בצורה ×—×œ×§×™×Ŗ" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "לא הועלו קבצים" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "×Ŗ×™×§×™×™×” ×–×ž× ×™×Ŗ חהרה" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +72,15 @@ msgstr "קבצים" msgid "Unshare" msgstr "ההר שיתוף" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "מחיקה" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "שינוי שם" @@ -181,31 +185,31 @@ msgstr "קישור אינו יכול ×œ×”×™×•×Ŗ ריק." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "שם" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "גודל" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "×Ŗ×™×§×™×™×” אחת" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "קובׄ אחד" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} קבצים" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index e2f9372e88e..cd565092350 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "שם" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "×Ŗ×™×§×™×™×” אחת" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "קובׄ אחד" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} קבצים" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index cceb07b9d17..018aebd9f60 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "לא × ×™×Ŗ×Ÿ לטעון ×Ø×©×™×ž×” מה־App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "שגיאת הזדהות" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "הקבוצה כבר ×§×™×™×ž×Ŗ" @@ -49,10 +58,6 @@ msgstr "דואדל לא חוקי" msgid "Unable to delete group" msgstr "לא × ×™×Ŗ×Ÿ למחוק את הקבוצה" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "שגיאת הזדהות" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "לא × ×™×Ŗ×Ÿ למחוק את ×”×ž×©×Ŗ×ž×©" @@ -115,7 +120,7 @@ msgstr "שגיאה" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "×©×•×ž×Ø.." @@ -192,67 +197,83 @@ msgstr "הורד תוכנה ×œ×× ×“×Ø×•××™×“" msgid "Download iOS Client" msgstr "הורד תוכנה לiOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ההמה" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "הההמה שלך הוחלפה" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "לא × ×™×Ŗ×Ÿ ×œ×©× ×•×Ŗ את הההמה שלך" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ההמה נוכחית" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ההמה חדשה" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "הצגה" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "שינוי ההמה" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "דואדל" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "כתובת הדואדל שלך" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "נא למלא את כתובת הדואדל שלך כדי לאפשר שחזור ההמה" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "פה" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "עזרה ×‘×Ŗ×Ø×’×•×" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "×”×©×Ŗ×ž×© בכתובת זאת על ×ž× ×Ŗ ×œ×”×Ŗ×—×‘×Ø אל ownCloud ×“×Ø×š הייר קבצים." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "גרהא" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -157,59 +157,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -542,7 +542,7 @@ msgstr "ą¤øą„‡ą¤Ÿą¤…ą¤Ŗ ą¤øą¤®ą¤¾ą¤Ŗą„ą¤¤ ą¤•ą¤°ą„‡" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "" @@ -564,14 +564,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "पिछला" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index c56da3dc54c..e0189f4da40 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 16:02+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,46 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index ecec4c0cae6..fad204d0739 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 58343582a26..b0e88f95c9b 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤”" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "नया ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤”" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -163,55 +163,55 @@ msgstr "Prosinac" msgid "Settings" msgstr "Postavke" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "danas" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "jučer" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "proÅ”li mjesec" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mjeseci" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "proÅ”lu godinu" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "godina" @@ -566,14 +566,18 @@ msgstr "" msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prijava" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodan" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 7a03f6b1977..d7b7d81a29d 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je poslana uspjeÅ”no i bez pogreÅ”aka" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka izlazi iz okvira MAX_FILE_SIZE direktive postavljene u HTML obrascu" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je poslana samo djelomično" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ni jedna datoteka nije poslana" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Nedostaje privremena mapa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Datoteke" msgid "Unshare" msgstr "Prekini djeljenje" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "BriÅ”i" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Promjeni ime" @@ -180,31 +184,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Naziv" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 0665783c041..6a7bfdabab6 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index af697fb7817..062d280811c 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nemogićnost učitavanja liste sa Apps Stora" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "GreÅ”ka kod autorizacije" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -48,10 +57,6 @@ msgstr "Neispravan email" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "GreÅ”ka kod autorizacije" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -114,7 +119,7 @@ msgstr "GreÅ”ka" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Spremanje..." @@ -191,67 +196,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "prikaz" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "VaÅ”a e-mail adresa" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jezik" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "december" msgid "Settings" msgstr "BeĆ”llĆ­tĆ”sok" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "pĆ”r mĆ”sodperce" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 órĆ”ja" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} órĆ”ja" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "ma" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "tegnap" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "mĆŗlt hónapban" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "tƶbb hónapja" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "tavaly" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "tƶbb Ć©ve" @@ -567,14 +567,18 @@ msgstr "A biztonsĆ”ga Ć©rdekĆ©ben vĆ”ltoztassa meg a jelszavĆ”t!" msgid "Lost your password?" msgstr "Elfelejtette a jelszavĆ”t?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "emlĆ©kezzen" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "BejelentkezĆ©s" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "előző" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 595e4cd8217..bc65aedf641 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -24,46 +24,46 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nem tƶrtĆ©nt feltƶltĆ©s. Ismeretlen hiba" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "A fĆ”jlt sikerült feltƶlteni" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltƶltƶtt fĆ”jl mĆ©rete meghaladja a php.ini Ć”llomĆ”nyban megadott upload_max_filesize paramĆ©ter Ć©rtĆ©kĆ©t." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltƶltƶtt fĆ”jl mĆ©rete meghaladja a MAX_FILE_SIZE paramĆ©tert, ami a HTML formban került megadĆ”sra." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fĆ”jlt csak rĆ©szben sikerült feltƶlteni." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nem tƶltődƶtt fel semmi" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "HiĆ”nyzik egy ideiglenes mappa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre tƶrtĆ©nő Ć­rĆ”s" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nincs elĆ©g szabad hely" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ƉrvĆ©nytelen mappa." @@ -75,11 +75,15 @@ msgstr "FĆ”jlok" msgid "Unshare" msgstr "MegosztĆ”s visszavonĆ”sa" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "TƶrlĆ©s" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ƁtnevezĆ©s" @@ -184,31 +188,31 @@ msgstr "Az URL nem lehet semmi." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ƉrvĆ©nytelen mappanĆ©v. A nĆ©v hasznĆ”lata csak a Owncloud szĆ”mĆ”ra lehetsĆ©ges." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "NĆ©v" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "MĆ©ret" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "MódosĆ­tva" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fĆ”jl" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fĆ”jl" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 5cabef3a633..ed96fa7cee5 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "NĆ©v" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappa" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mappa" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fĆ”jl" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fĆ”jl" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 4be00602dd8..d544d5d95b0 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nem tƶlthető le a lista az App Store-ból" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "AzonosĆ­tĆ”si hiba" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "A csoport mĆ”r lĆ©tezik" @@ -48,10 +57,6 @@ msgstr "HibĆ”s email" msgid "Unable to delete group" msgstr "A csoport nem tƶrƶlhető" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "AzonosĆ­tĆ”si hiba" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "A felhasznĆ”ló nem tƶrƶlhető" @@ -114,7 +119,7 @@ msgstr "Hiba" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "MentĆ©s..." @@ -191,67 +196,83 @@ msgstr "Android kliens letƶltĆ©se" msgid "Download iOS Client" msgstr "iOS kliens letƶltĆ©se" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "A jelszava megvĆ”ltozott" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "A jelszó nem vĆ”ltoztatható meg" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Az Ćŗj jelszó" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "lĆ”ssam" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "A jelszó megvĆ”ltoztatĆ”sa" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Az Ɩn email cĆ­me" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Adja meg az email cĆ­mĆ©t, hogy jelszó-emlĆ©keztetőt kĆ©rhessen, ha elfelejtette a jelszavĆ”t!" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "SegĆ­tsen a fordĆ­tĆ”sban!" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ennek a cĆ­mnek a megadĆ”sĆ”val a WebDAV-protokollon keresztül sajĆ”t gĆ©pĆ©nek fĆ”jlkezelőjĆ©vel is is elĆ©rheti az Ć”llomĆ”nyait." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Verzió" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -156,59 +156,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "Configurationes" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -541,7 +541,7 @@ msgstr "" msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "Clauder le session" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "memora" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Aperir session" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prev" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 43dd321da08..8a63e7c909b 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nulle file esseva incargate" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "Files" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Deler" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -179,31 +183,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nomine" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dimension" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificate" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 3d86f721da7..9256a728ff8 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nomine" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f465615a985..47c4885728c 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -47,10 +56,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -113,7 +118,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "monstrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-posta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Linguage" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -163,55 +163,55 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 menit lalu" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hari ini" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "kemarin" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "beberapa tahun lalu" @@ -566,14 +566,18 @@ msgstr "mohon ubah kata kunci untuk mengamankan akun anda" msgid "Lost your password?" msgstr "Lupa password anda?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "selalu login" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Masuk" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" diff --git a/l10n/id/files.po b/l10n/id/files.po index 67a86d94ba0..7275ccf2eda 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Kehilangan folder temporer" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Berkas" msgid "Unshare" msgstr "batalkan berbagi" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Hapus" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -180,31 +184,31 @@ msgstr "tautan tidak boleh kosong" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Ukuran" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 29afd3eefda..074b7145fc5 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "nama" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 92aab7dfbf7..2787995bd72 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "autentikasi bermasalah" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -49,10 +58,6 @@ msgstr "Email tidak sah" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "autentikasi bermasalah" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -115,7 +120,7 @@ msgstr "kesalahan" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Menyimpan..." @@ -192,67 +197,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Password" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Tidak dapat merubah password anda" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Password saat ini" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "kata kunci baru" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "perlihatkan" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Rubah password" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Alamat email anda" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Masukkan alamat email untuk mengaktifkan pemulihan password" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Desember" msgid "Settings" msgstr "Stillingar" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sek sƭưan" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 min sƭưan" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} min sƭưan" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Ć­ dag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "Ć­ gƦr" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dagar sƭưan" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "sƭưasta mĆ”nuưi" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "fyrir {months} mĆ”nuưum" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mĆ”nuưir sƭưan" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "sƭưasta Ć”ri" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Ć”rum sƭưan" @@ -564,14 +564,18 @@ msgstr "Vinsamlegast breyttu lykilorưinu þínu til aư tryggja ƶryggi þitt." msgid "Lost your password?" msgstr "Týndir þú lykilorưinu?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "muna eftir mĆ©r" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "SkrĆ” inn" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "fyrra" diff --git a/l10n/is/files.po b/l10n/is/files.po index f2e66b04646..7e071bbb5dc 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Engin skrĆ” var send inn. Óþekkt villa." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaưist" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrĆ” er stƦrri en upload_max stillingin Ć­ php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skrĆ”in er stƦrri en MAX_FILE_SIZE sem skilgreint er Ć­ HTML sniưinu." -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrĆ” skilaưi sĆ©r" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Engin skrĆ” skilaưi sĆ©r" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Vantar brƔưabirgưamƶppu" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Tókst ekki aư skrifa Ć” disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Ekki nƦgt plĆ”ss tiltƦkt" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ɠgild mappa." @@ -69,11 +69,15 @@ msgstr "SkrĆ”r" msgid "Unshare" msgstr "HƦtta deilingu" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Eyưa" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Endurskýra" @@ -178,31 +182,31 @@ msgstr "Vefslóð mĆ” ekki vera tóm." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ɠleyfilegt nafn Ć” mƶppu. Nafniư 'Shared' er frĆ”tekiư fyrir Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "StƦrư" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Breytt" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mƶppur" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 skrĆ”" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} skrĆ”r" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 1fc4aad5716..a738a0a24a4 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nafn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappa" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mƶppur" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 skrĆ”" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} skrĆ”r" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 07750ab9e75..fea2c378784 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ekki tókst aư hlaưa lista frĆ” forrita sƭưu" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Villa viư auưkenningu" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Hópur er þegar til" @@ -46,10 +55,6 @@ msgstr "Ɠgilt netfang" msgid "Unable to delete group" msgstr "Ekki tókst aư eyưa hóp" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Villa viư auưkenningu" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ekki tókst aư eyưa notenda" @@ -112,7 +117,7 @@ msgstr "Villa" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Er aư vista ..." @@ -189,67 +194,83 @@ msgstr "Hlaưa niưur Andoid hugbĆŗnaưi" msgid "Download iOS Client" msgstr "Hlaưa niưur iOS hugbĆŗnaưi" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lykilorư" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Lykilorưi þínu hefur veriư breytt" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ekki tókst aư breyta lykilorưinu þínu" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "NĆŗverandi lykilorư" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nýtt lykilorư" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "sýna" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Breyta lykilorưi" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Netfang" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Netfangiư þitt" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "SlƔưu inn netfangiư þitt til aư virkja endurheimt Ć” lykilorưi" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "TungumĆ”l" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "HjĆ”lpa viư þýðingu" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Notaưu þessa vefslóð til aư tengjast ownCloud svƦưinu þínu" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ÚtgĆ”fa" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -165,55 +165,55 @@ msgstr "Dicembre" msgid "Settings" msgstr "Impostazioni" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "oggi" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ieri" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "mese scorso" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mesi fa" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "anno scorso" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anni fa" @@ -568,14 +568,18 @@ msgstr "Cambia la password per rendere nuovamente sicuro il tuo account." msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ricorda" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Accedi" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedente" diff --git a/l10n/it/files.po b/l10n/it/files.po index 13d26fc18f2..e419f624cca 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,46 +21,46 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nessun file ĆØ stato inviato. Errore sconosciuto" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, file caricato con successo" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file caricato supera il valore MAX_FILE_SIZE definito nel form HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Il file ĆØ stato parzialmente caricato" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nessun file ĆØ stato caricato" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Cartella temporanea mancante" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Spazio disponibile insufficiente" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Cartella non valida." @@ -72,11 +72,15 @@ msgstr "File" msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Elimina" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Rinomina" @@ -181,31 +185,31 @@ msgstr "L'URL non può essere vuoto." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' ĆØ riservato da ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dimensione" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificato" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 file" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} file" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index c4035fbac33..843b2a267d5 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-05 23:20+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,15 +46,15 @@ msgstr "Cifratura" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "La cifratura dei file ĆØ abilitata." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "I seguenti tipi di file non saranno cifrati:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Escludi i seguenti tipi di file dalla cifratura:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 8efe697487c..8e3a6451a8e 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "esegui operazione di ripristino" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Eliminati" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 cartella" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} cartelle" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 file" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} file" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index dbb539c7bb5..6b729305e42 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-01 23:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,6 +28,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Impossibile caricare l'elenco dall'App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Errore di autenticazione" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Il gruppo esiste giĆ " @@ -52,10 +61,6 @@ msgstr "Email non valida" msgid "Unable to delete group" msgstr "Impossibile eliminare il gruppo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Errore di autenticazione" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Impossibile eliminare l'utente" @@ -118,7 +123,7 @@ msgstr "Errore" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Salvataggio in corso..." @@ -195,67 +200,83 @@ msgstr "Scarica client Android" msgid "Download iOS Client" msgstr "Scarica client iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Password" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "La tua password ĆØ cambiata" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostra" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nome visualizzato" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Lingua" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versione" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "12月" msgid "Settings" msgstr "設定" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "ē§’å‰" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 ę™‚é–“å‰" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} ę™‚é–“å‰" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "今ꗄ" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ę˜Øę—„" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} ę—„å‰" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "äø€ęœˆå‰" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} ęœˆå‰" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "ęœˆå‰" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "äø€å¹“å‰" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "幓前" @@ -565,14 +565,18 @@ msgstr "ć‚¢ć‚«ć‚¦ćƒ³ćƒˆäæč­·ć®ē‚ŗć€ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å†åŗ¦ć®å¤‰ę›“ć‚’ćŠé”˜ msgid "Lost your password?" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’åæ˜ć‚Œć¾ć—ćŸć‹ļ¼Ÿ" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’čØ˜ę†¶ć™ć‚‹" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ćƒ­ć‚°ć‚¤ćƒ³" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "前" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 97f0b6b3b73..cd42db946c4 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:04+0100\n" -"PO-Revision-Date: 2013-02-03 04:30+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,11 +73,15 @@ msgstr "ćƒ•ć‚”ć‚¤ćƒ«" msgid "Unshare" msgstr "å…±ęœ‰ć—ćŖć„" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "削除" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "åå‰ć®å¤‰ę›“" @@ -182,31 +186,31 @@ msgstr "URLćÆē©ŗć«ć§ćć¾ć›ć‚“ć€‚" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ē„”åŠ¹ćŖćƒ•ć‚©ćƒ«ćƒ€åć§ć™ć€‚'Shared' ć®åˆ©ē”ØćÆ ownCloud ćŒäŗˆē“„ęøˆćæć§ć™ć€‚" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "名前" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "サイズ" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ꛓꖰꗄꙂ" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 ćƒ•ć‚©ćƒ«ćƒ€" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} ćƒ•ć‚©ćƒ«ćƒ€" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ćƒ•ć‚”ć‚¤ćƒ«" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ćƒ•ć‚”ć‚¤ćƒ«" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index fb4805b52db..f5fcfbe9a02 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "å¾©å…ƒę“ä½œć‚’å®Ÿč”Œć™ć‚‹" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "名前" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "å‰Šé™¤ęøˆćæ" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 ćƒ•ć‚©ćƒ«ćƒ€" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} ćƒ•ć‚©ćƒ«ćƒ€" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ćƒ•ć‚”ć‚¤ćƒ«" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ćƒ•ć‚”ć‚¤ćƒ«" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 80f56e5c654..1774eebf3f3 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 04:30+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +26,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ć‚¢ćƒ—ćƒŖć‚¹ćƒˆć‚¢ć‹ć‚‰ćƒŖć‚¹ćƒˆć‚’ćƒ­ćƒ¼ćƒ‰ć§ćć¾ć›ć‚“" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "čŖčØ¼ć‚Øćƒ©ćƒ¼" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ć‚°ćƒ«ćƒ¼ćƒ—ćÆę—¢ć«å­˜åœØć—ć¦ć„ć¾ć™" @@ -50,10 +59,6 @@ msgstr "ē„”åŠ¹ćŖćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹" msgid "Unable to delete group" msgstr "ć‚°ćƒ«ćƒ¼ćƒ—ć‚’å‰Šé™¤ć§ćć¾ć›ć‚“" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "čŖčØ¼ć‚Øćƒ©ćƒ¼" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ćƒ¦ćƒ¼ć‚¶ć‚’å‰Šé™¤ć§ćć¾ć›ć‚“" @@ -116,7 +121,7 @@ msgstr "ć‚Øćƒ©ćƒ¼" msgid "Updated" msgstr "ę›“ę–°ęøˆćæ" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "äæå­˜äø­..." @@ -193,67 +198,83 @@ msgstr "Androidć‚Æćƒ©ć‚¤ć‚¢ćƒ³ćƒˆć‚’ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰" msgid "Download iOS Client" msgstr "iOSć‚Æćƒ©ć‚¤ć‚¢ćƒ³ćƒˆć‚’ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“ć—ć¾ć—ćŸ" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“ć™ć‚‹ć“ćØćŒć§ćć¾ć›ć‚“" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ē¾åœØć®ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ę–°ć—ć„ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "蔨示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "č”Øē¤ŗå" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ć‚ćŖćŸć®ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "ā€»ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰å›žå¾©ć‚’ęœ‰åŠ¹ć«ć™ć‚‹ć«ćÆćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć®å…„åŠ›ćŒåæ…č¦ć§ć™" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "čØ€čŖž" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ēæ»čØ³ć«å”åŠ›ć™ć‚‹" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ćƒ•ć‚”ć‚¤ćƒ«ćƒžćƒćƒ¼ć‚øćƒ£ć§ownCloudć«ęŽ„ē¶šć™ć‚‹éš›ćÆć“ć®ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’åˆ©ē”Øć—ć¦ćć ć•ć„" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ćƒćƒ¼ć‚øćƒ§ćƒ³" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "įƒ“įƒ”įƒ™įƒ”įƒ›įƒ‘įƒ”įƒ įƒ˜" msgid "Settings" msgstr "įƒžįƒįƒ įƒįƒ›įƒ”įƒ¢įƒ įƒ”įƒ‘įƒ˜" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "įƒ¬įƒįƒ›įƒ˜įƒ” წინ" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 įƒ¬įƒ£įƒ—įƒ˜įƒ” წინ" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} įƒ¬įƒ£įƒ—įƒ˜įƒ” წინ" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "įƒ“įƒ¦įƒ”įƒ”" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "įƒ’įƒ£įƒØįƒ˜įƒœ" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} įƒ“įƒ¦įƒ˜įƒ” წინ" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "įƒ’įƒįƒ”įƒ£įƒš įƒ—įƒ•įƒ”įƒØįƒ˜" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "įƒ—įƒ•įƒ˜įƒ” წინ" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "įƒ‘įƒįƒšįƒ įƒ¬įƒ”įƒšįƒ”" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "წლიე წინ" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "įƒ“įƒįƒ’įƒįƒ•įƒ˜įƒ¬įƒ§įƒ“įƒįƒ— įƒžįƒįƒ įƒįƒšįƒ˜?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "įƒ“įƒįƒ›įƒįƒ®įƒ”įƒįƒ•įƒ įƒ”įƒ‘įƒ" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "įƒØįƒ”įƒ”įƒ•įƒšįƒ" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "წინა" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 1866d1f711a..828806cc05d 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "įƒ­įƒįƒŖįƒ“įƒįƒ›įƒ არ įƒ“įƒįƒ¤įƒ˜įƒ„įƒ”įƒ˜įƒ įƒ“įƒ, ფაილი įƒ¬įƒįƒ įƒ›įƒįƒ¢įƒ”įƒ‘įƒ˜įƒ— įƒįƒ˜įƒ¢įƒ•įƒ˜įƒ įƒ—įƒ" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "įƒįƒ¢įƒ•įƒ˜įƒ įƒ—įƒ£įƒšįƒ˜ ფაილი įƒįƒ­įƒįƒ įƒ‘įƒ”įƒ‘įƒ” MAX_FILE_SIZE įƒ“įƒ˜įƒ įƒ”įƒ„įƒ¢įƒ˜įƒ•įƒįƒ”, įƒ įƒįƒ›įƒ”įƒšįƒ˜įƒŖ įƒ›įƒ˜įƒ—įƒ˜įƒ—įƒ”įƒ‘įƒ£įƒšįƒ˜įƒ HTML įƒ¤įƒįƒ įƒ›įƒįƒØįƒ˜" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "įƒįƒ¢įƒ•įƒ˜įƒ įƒ—įƒ£įƒšįƒ˜ ფაილი įƒ›įƒ®įƒįƒšįƒįƒ“ įƒœįƒįƒ¬įƒ˜įƒšįƒįƒ‘įƒ įƒ˜įƒ• įƒįƒ˜įƒ¢įƒ•įƒ˜įƒ įƒ—įƒ" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ფაილი არ įƒįƒ˜įƒ¢įƒ•įƒ˜įƒ įƒ—įƒ" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "įƒ“įƒ įƒįƒ”įƒ‘įƒ˜įƒ—įƒ˜ įƒ”įƒįƒ„įƒįƒ¦įƒįƒšįƒ“įƒ” არ įƒįƒ įƒ”įƒ”įƒ‘įƒįƒ‘įƒ”" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "įƒØįƒ”įƒŖįƒ“įƒįƒ›įƒ įƒ“įƒ˜įƒ”įƒ™įƒ–įƒ” įƒ©įƒįƒ¬įƒ”įƒ įƒ˜įƒ”įƒįƒ”" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "įƒ¤įƒįƒ˜įƒšįƒ”įƒ‘įƒ˜" msgid "Unshare" msgstr "įƒ’įƒįƒ–įƒ˜įƒįƒ įƒ”įƒ‘įƒ˜įƒ” įƒ›įƒįƒ®įƒ”įƒœįƒ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "წაშლა" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "įƒ’įƒįƒ“įƒįƒ įƒ„įƒ›įƒ”įƒ•įƒ" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "įƒ”įƒįƒ®įƒ”įƒšįƒ˜" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "įƒ–įƒįƒ›įƒ" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "įƒØįƒ”įƒŖįƒ•įƒšįƒ˜įƒšįƒ˜įƒ" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 įƒ”įƒįƒ„įƒįƒ¦įƒįƒšįƒ“įƒ”" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} įƒ”įƒįƒ„įƒįƒ¦įƒįƒšįƒ“įƒ”" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ფაილი" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 92a719c9523..b79b1af3d2b 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "įƒ”įƒįƒ®įƒ”įƒšįƒ˜" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 įƒ”įƒįƒ„įƒįƒ¦įƒįƒšįƒ“įƒ”" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} įƒ”įƒįƒ„įƒįƒ¦įƒįƒšįƒ“įƒ”" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ფაილი" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ფაილი" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 7c1f5129d4c..2f73884030e 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "įƒįƒžįƒšįƒ˜įƒ™įƒįƒŖįƒ˜įƒ”įƒ‘įƒ˜įƒ” ეია įƒ•įƒ”įƒ  įƒ©įƒįƒ›įƒįƒ˜įƒ¢įƒ•įƒ˜įƒ įƒ—įƒ App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "įƒįƒ•įƒ—įƒ”įƒœįƒ¢įƒ˜įƒ¤įƒ˜įƒ™įƒįƒŖįƒ˜įƒ˜įƒ” įƒØįƒ”įƒŖįƒ“įƒįƒ›įƒ" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "įƒÆįƒ’įƒ£įƒ¤įƒ˜ įƒ£įƒ™įƒ•įƒ” įƒįƒ įƒ”įƒ”įƒ‘įƒįƒ‘įƒ”" @@ -46,10 +55,6 @@ msgstr "įƒįƒ įƒįƒ”įƒ¬įƒįƒ įƒ˜ įƒ˜įƒ›įƒ”įƒ˜įƒšįƒ˜" msgid "Unable to delete group" msgstr "įƒÆįƒ’įƒ£įƒ¤įƒ˜įƒ” წაშლა įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "įƒįƒ•įƒ—įƒ”įƒœįƒ¢įƒ˜įƒ¤įƒ˜įƒ™įƒįƒŖįƒ˜įƒ˜įƒ” įƒØįƒ”įƒŖįƒ“įƒįƒ›įƒ" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "įƒ›įƒįƒ›įƒ®įƒ›įƒįƒ įƒ”įƒ‘įƒšįƒ˜įƒ” წაშლა įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ" @@ -112,7 +117,7 @@ msgstr "įƒØįƒ”įƒŖįƒ“įƒįƒ›įƒ" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "įƒØįƒ”įƒœįƒįƒ®įƒ•įƒ..." @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "įƒžįƒįƒ įƒįƒšįƒ˜" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "įƒ—įƒ„įƒ•įƒ”įƒœįƒ˜ įƒžįƒįƒ įƒįƒšįƒ˜ įƒØįƒ”įƒ˜įƒŖįƒ•įƒįƒšįƒ" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "įƒ—įƒ„įƒ•įƒ”įƒœįƒ˜ įƒžįƒįƒ įƒįƒšįƒ˜ არ įƒØįƒ”įƒ˜įƒŖįƒ•įƒįƒšįƒ" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "įƒ›įƒ˜įƒ›įƒ“įƒ˜įƒœįƒįƒ įƒ” įƒžįƒįƒ įƒįƒšįƒ˜" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ახალი įƒžįƒįƒ įƒįƒšįƒ˜" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "įƒ’įƒįƒ›įƒįƒįƒ©įƒ˜įƒœįƒ”" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "įƒžįƒįƒ įƒįƒšįƒ˜įƒ” įƒØįƒ”įƒŖįƒ•įƒšįƒ" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "įƒ˜įƒ›įƒ”įƒ˜įƒšįƒ˜" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "įƒ—įƒ„įƒ•įƒ”įƒœįƒ˜ įƒ˜įƒ›įƒ”įƒ˜įƒš įƒ›įƒ˜įƒ”įƒįƒ›įƒįƒ įƒ—įƒ˜" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "įƒØįƒ”įƒįƒ•įƒ”įƒ”įƒ— įƒ˜įƒ›įƒ”įƒ˜įƒš įƒ›įƒ˜įƒ”įƒįƒ›įƒįƒ įƒ—įƒ˜įƒ” įƒ•įƒ”įƒšįƒ˜ įƒžįƒįƒ įƒįƒšįƒ˜įƒ” įƒįƒ¦įƒ”įƒįƒ“įƒ’įƒ”įƒœįƒįƒ“" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "įƒ”įƒœįƒ" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "įƒ—įƒįƒ įƒ’įƒ›įƒœįƒ˜įƒ” įƒ“įƒįƒ®įƒ›įƒįƒ įƒ”įƒ‘įƒ" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,55 +164,55 @@ msgstr "12ģ›”" msgid "Settings" msgstr "설정" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "쓈 ģ „" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1ė¶„ ģ „" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes}ė¶„ ģ „" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1ģ‹œź°„ ģ „" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours}ģ‹œź°„ ģ „" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "오늘" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ģ–“ģ œ" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days}ģ¼ ģ „" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ģ§€ė‚œ 달" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months}ź°œģ›” ģ „" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "ź°œģ›” ģ „" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ģž‘ė…„" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "ė…„ ģ „" @@ -567,14 +567,18 @@ msgstr "ź³„ģ •ģ˜ ģ•ˆģ „ģ„ ģœ„ķ•˜ģ—¬ ģ•”ķ˜øė„¼ ė³€ź²½ķ•˜ģ‹­ģ‹œģ˜¤." msgid "Lost your password?" msgstr "ģ•”ķ˜øė„¼ ģžŠģœ¼ģ…ØģŠµė‹ˆź¹Œ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "źø°ģ–µķ•˜źø°" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ė”œź·øģø" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ģ“ģ „" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 02a13830991..6ab4e6667eb 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -23,46 +23,46 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ķŒŒģ¼ģ“ ģ—…ė”œė“œė˜ģ§€ ģ•Šģ•˜ģŠµė‹ˆė‹¤. ģ•Œ 수 ģ—†ėŠ” ģ˜¤ė„˜ģž…ė‹ˆė‹¤" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ģ—…ė”œė“œģ— ģ„±ź³µķ•˜ģ˜€ģŠµė‹ˆė‹¤." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ģ—…ė”œė“œķ•œ ķŒŒģ¼ģ“ php.iniģ˜ upload_max_filesize볓다 ķ½ė‹ˆė‹¤:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ģ—…ė”œė“œķ•œ ķŒŒģ¼ģ“ HTML ė¬øģ„œģ— ģ§€ģ •ķ•œ MAX_FILE_SIZE볓다 ė” 큼" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "ķŒŒģ¼ģ“ ė¶€ė¶„ģ ģœ¼ė”œ ģ—…ė”œė“œėØ" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ģ—…ė”œė“œėœ ķŒŒģ¼ ģ—†ģŒ" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ģž„ģ‹œ ķ“ė”ź°€ ģ‚¬ė¼ģ§" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ė””ģŠ¤ķ¬ģ— ģ“°ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "ģ—¬ģœ  ź³µź°„ģ“ ė¶€ģ”±ķ•©ė‹ˆė‹¤" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ģ˜¬ė°”ė„“ģ§€ ģ•Šģ€ ė””ė ‰ķ„°ė¦¬ģž…ė‹ˆė‹¤." @@ -74,11 +74,15 @@ msgstr "ķŒŒģ¼" msgid "Unshare" msgstr "공유 ķ•“ģ œ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ģ‚­ģ œ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ģ“ė¦„ 바꾸기" @@ -183,31 +187,31 @@ msgstr "URLģ„ ģž…ė „ķ•“ģ•¼ ķ•©ė‹ˆė‹¤." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ķ“ė” ģ“ė¦„ģ“ ģœ ķšØķ•˜ģ§€ ģ•ŠģŠµė‹ˆė‹¤. " -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ģ“ė¦„" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "크기" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ģˆ˜ģ •ėØ" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "ķ“ė” 1개" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "ķ“ė” {count}개" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "ķŒŒģ¼ 1개" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "ķŒŒģ¼ {count}개" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index a87ddd6b8dd..ad7567a0058 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ģ“ė¦„" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "ķ“ė” 1개" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "ķ“ė” {count}개" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "ķŒŒģ¼ 1개" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "ķŒŒģ¼ {count}개" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 62097ea4a5a..65a8c9d6e22 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "앱 ģŠ¤ķ† ģ–“ģ—ģ„œ ėŖ©ė”ģ„ ź°€ģ øģ˜¬ 수 ģ—†ģŠµė‹ˆė‹¤" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "ģøģ¦ 오넘" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ź·øė£¹ģ“ ģ“ėÆø ģ”“ģž¬ķ•©ė‹ˆė‹¤." @@ -50,10 +59,6 @@ msgstr "ģž˜ėŖ»ėœ ģ“ė©”ģ¼ ģ£¼ģ†Œ" msgid "Unable to delete group" msgstr "ź·øė£¹ģ„ ģ‚­ģ œķ•  수 ģ—†ģŠµė‹ˆė‹¤." -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "ģøģ¦ 오넘" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ģ‚¬ģš©ģžė„¼ ģ‚­ģ œķ•  수 ģ—†ģŠµė‹ˆė‹¤." @@ -116,7 +121,7 @@ msgstr "오넘" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ģ €ģž„ 중..." @@ -193,67 +198,83 @@ msgstr "ģ•ˆė“œė”œģ“ė“œ ķ“ė¼ģ“ģ–øķŠø ė‹¤ģš“ė”œė“œ" msgid "Download iOS Client" msgstr "iOS ķ“ė¼ģ“ģ–øķŠø ė‹¤ģš“ė”œė“œ" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ģ•”ķ˜ø" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ģ•”ķ˜øź°€ ė³€ź²½ė˜ģ—ˆģŠµė‹ˆė‹¤" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ģ•”ķ˜øė„¼ 변경할 수 ģ—†ģŒ" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ķ˜„ģž¬ ģ•”ķ˜ø" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "새 ģ•”ķ˜ø" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ė³“ģ“źø°" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ģ•”ķ˜ø 변경" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "ķ‘œģ‹œ ģ“ė¦„" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ģ“ė©”ģ¼" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ģ“ė©”ģ¼ ģ£¼ģ†Œ" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "ģ•”ķ˜ø 찾기 źø°ėŠ„ģ„ ģ‚¬ģš©ķ•˜ė ¤ė©“ ģ“ė©”ģ¼ ģ£¼ģ†Œė„¼ ģž…ė „ķ•˜ģ‹­ģ‹œģ˜¤." -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "ģ–øģ–“" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ė²ˆģ—­ ė•źø°" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ķŒŒģ¼ ź“€ė¦¬ģžģ—ģ„œ ownCloud에 ģ ‘ģ†ķ•˜ė ¤ė©“ ģ“ ģ£¼ģ†Œė„¼ ģ‚¬ģš©ķ•˜ģ‹­ģ‹œģ˜¤." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "버전" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "" msgid "Settings" msgstr "ŲÆŁ‡ā€ŒŲ³ŲŖŁƒŲ§Ų±ŪŒ" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Ł¾ŪŽŲ“ŲŖŲ±" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index d8cb9b82a79..8f5359f7a0d 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,46 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "Ł†Ų§ŁˆŁ†ŪŒŲ“Ų§Ł†ŪŒ ŲØŁ‡ā€ŒŲ³ŲŖŁ‡ā€ŒŲ± Ł†Ų§ŲØŪŽŲŖ ŲØŁ‡ā€ŒŲŖŲ§Śµ ŲØŪŽŲŖ." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ł†Ų§Łˆ" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index f1318338be4..5a867010735 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ł†Ų§Łˆ" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index adb4e79653e..7973f6b16d5 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "Ł‡Ł‡ā€ŒŚµŁ‡" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Ł¾Ų§Ų“Ś©Ł‡ā€ŒŁˆŲŖŲÆŁ‡ā€ŒŚ©Ų§ŲŖ..." @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ŁˆŲ“Ū•ŪŒ ŲŖŪŽŁ¾Ū•Ų±ŲØŁˆ" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ŁˆŲ“Ū•ŪŒ Ł†Ł‡ŪŽŁ†ŪŒ Ł†ŁˆŪŽ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Ų¦ŪŒŁ…Ł‡ā€ŒŪŒŁ„" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Astellungen" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "LƤschte Mount" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "vru {months} MĆ©int" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "MĆ©int hier" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "LƤscht Joer" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Joren hier" @@ -564,14 +564,18 @@ msgstr "" msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "verhalen" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log dech an" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "zerĆ©ck" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 01de41c0d8e..251898c3e53 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "DĆ©i ropgelueden Datei ass mĆ©i grouss wei d'MAX_FILE_SIZE Eegenschaft dĆ©i an der HTML form uginn ass" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "DĆ©i ropgelueden Datei ass nĆ«mmen hallef ropgelueden ginn" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Et ass keng Datei ropgelueden ginn" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Et feelt en temporƤren Dossier" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "Dateien" msgid "Unshare" msgstr "Net mĆ©i deelen" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "LƤschen" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Numm" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "GrĆ©isst" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "GeƤnnert" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 7ddea15d47e..ae9caf692e0 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Numm" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index e2d2d5243d3..021e271d8fe 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Konnt Lescht net vum App Store lueden" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Authentifikatioun's Fehler" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -46,10 +55,6 @@ msgstr "Ongülteg e-mail" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Authentifikatioun's Fehler" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -112,7 +117,7 @@ msgstr "Fehler" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Speicheren..." @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Konnt dƤin Passwuert net Ƥnneren" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "weisen" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Passwuert Ƥnneren" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "GĆ«ff eng Email Adress an fir d'Passwuert recovery ze erlaben" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "HĆ«llef iwwersetzen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Gruodis" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "prieÅ” sekundę" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "PrieÅ” 1 minutę" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "PrieÅ” {count} minutes" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Å”iandien" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "vakar" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "PrieÅ” {days} dienas" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "praeitą mėnesÄÆ" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "prieÅ” mėnesÄÆ" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "praeitais metais" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "prieÅ” metus" @@ -564,14 +564,18 @@ msgstr "PraÅ”ome pasikeisti slaptažodÄÆ dar kartą, dėl paskyros saugumo." msgid "Lost your password?" msgstr "PamirÅ”ote slaptažodÄÆ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "prisiminti" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prisijungti" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "atgal" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 4776b8e8f10..c6bf98088b6 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Klaidų nėra, failas ÄÆkeltas sėkmingai" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ä®keliamo failo dydis virÅ”ija MAX_FILE_SIZE parametrą, kuris yra nustatytas HTML formoje" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo ÄÆkeltas tik dalinai" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nebuvo ÄÆkeltas nė vienas failas" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Nepavyko ÄÆraÅ”yti ÄÆ diską" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Failai" msgid "Unshare" msgstr "Nebesidalinti" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "IÅ”trinti" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Pervadinti" @@ -180,31 +184,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dydis" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Pakeista" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 failas" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} failai" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index af1841dd647..674308b81be 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Pavadinimas" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 aplankalas" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 failas" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} failai" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 1499763e4ff..e1ef964d696 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "NeÄÆmanoma ÄÆkelti sąraÅ”o iÅ” Programų Katalogo" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentikacijos klaida" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -47,10 +56,6 @@ msgstr "Netinkamas el. paÅ”tas" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentikacijos klaida" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -113,7 +118,7 @@ msgstr "Klaida" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Saugoma.." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "JÅ«sų slaptažodis buvo pakeistas" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "NeÄÆmanoma pakeisti slaptažodžio" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "rodyti" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Pakeisti slaptažodÄÆ" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "El. paÅ”tas" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "JÅ«sų el. paÅ”to adresas" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "PamirÅ”to slaptažodžio atkÅ«rimui ÄÆveskite savo el. paÅ”to adresą" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Kalba" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Padėkite iÅ”versti" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -572,6 +572,10 @@ msgstr "atcerēties" msgid "Log in" msgstr "IerakstÄ«ties" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "iepriekŔējā" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 34debdd2e72..a003b4fdf1a 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 18:40+0000\n" -"Last-Translator: RÅ«dolfs Mazurs \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,11 +71,15 @@ msgstr "Datnes" msgid "Unshare" msgstr "Pārtraukt dalīŔanos" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Dzēst" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Pārsaukt" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index a289289f89e..c5f33459a22 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 20:40+0000\n" +"Last-Translator: RÅ«dolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,15 +46,15 @@ msgstr "Å ifrēŔana" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Datņu Å”ifrēŔana ir aktivēta." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "SekojoŔās datnes netiks Å”ifrētas:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "SekojoÅ”os datņu tipus izslēgt no Å”ifrēŔanas:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 6d52e10de6a..3e20fdad264 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 18:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 21:40+0000\n" "Last-Translator: RÅ«dolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 11024c8e1e0..0cd0f39d487 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 21:00+0000\n" -"Last-Translator: RÅ«dolfs Mazurs \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,35 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "veikt atjaunoÅ”anu" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nosaukums" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Dzēsts" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mape" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mapes" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 datne" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} datnes" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index ae6df933b41..3dd07bcc2b2 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 14:31+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 21:40+0000\n" "Last-Translator: RÅ«dolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,27 +18,27 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: app.php:312 +#: app.php:313 msgid "Help" msgstr "PalÄ«dzÄ«ba" -#: app.php:319 +#: app.php:320 msgid "Personal" msgstr "PersonÄ«gi" -#: app.php:324 +#: app.php:325 msgid "Settings" msgstr "IestatÄ«jumi" -#: app.php:329 +#: app.php:330 msgid "Users" msgstr "Lietotāji" -#: app.php:336 +#: app.php:337 msgid "Apps" msgstr "Lietotnes" -#: app.php:338 +#: app.php:339 msgid "Admin" msgstr "Administratori" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 72b99de743c..daca3930d1a 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 19:10+0000\n" -"Last-Translator: RÅ«dolfs Mazurs \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nevar lejupielādēt sarakstu no lietotņu veikala" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentifikācijas kļūda" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupa jau eksistē" @@ -48,10 +57,6 @@ msgstr "NederÄ«gs epasts" msgid "Unable to delete group" msgstr "Nevar izdzēst grupu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentifikācijas kļūda" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nevar izdzēst lietotāju" @@ -114,7 +119,7 @@ msgstr "Kļūda" msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Saglabā..." @@ -191,67 +196,83 @@ msgstr "Lejupielādēt Android klientu" msgid "Download iOS Client" msgstr "Lejupielādēt iOS klientu" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parole" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "JÅ«ru parole tika nomainÄ«ta" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nevar nomainÄ«t jÅ«su paroli" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "PaÅ”reizējā parole" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "parādÄ«t" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "MainÄ«t paroli" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Redzamais vārds" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "JÅ«su e-pasta adrese" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ievadiet epasta adresi, lai vēlāk varētu atgÅ«t paroli, ja bÅ«s nepiecieÅ”amÄ«ba" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Valoda" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "PalÄ«dzi tulkot" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Izmanto Å”o adresi, lai, izmantojot datņu pārvaldnieku, savienotos ar savu ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versija" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "Декември" msgid "Settings" msgstr "ŠŸŠ¾ŃŃ‚Š°Š²ŠŗŠø" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "преГ секунГи" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "преГ 1 Š¼ŠøŠ½ŃƒŃ‚Š°" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "преГ {minutes} Š¼ŠøŠ½ŃƒŃ‚Šø" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "преГ 1 час" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "преГ {hours} часови" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "Генеска" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "преГ {days} Генови" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "минатиот месец" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "преГ {months} месеци" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "преГ месеци" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "минатата гоГина" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "преГ гоГини" @@ -565,14 +565,18 @@ msgstr "Ве молам сменете ја лозинката Га ја обе msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запамти" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ŠŠ°Ń˜Š°Š²Š°" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претхоГно" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 941e084b4a1..040ed8a2a7f 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ŠŠøŃ‚Ńƒ еГен Ń„Š°Ń˜Š» не се вчита. ŠŠµŠæŠ¾Š·Š½Š°Ń‚Š° Š³Ń€ŠµŃˆŠŗŠ°" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ŠŠµŠ¼Š° Š³Ń€ŠµŃˆŠŗŠ°, Гатотеката беше поГигната успешно" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ŠŸŠ¾Š“ŠøŠ³Š½Š°Ń‚Š°Ń‚Š° Гатотека ја наГминува upload_max_filesize Гирективата во php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ŠŸŠ¾Š“ŠøŠ³Š½Š°Ń‚Š°Ń‚Š° Гатотеката ја наГминува MAX_FILE_SIZE Гирективата која беше поставена во HTML формата" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само Гелумно поГигната." -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ŠŠµ беше поГигната Гатотека" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ŠŠµ постои привремена папка" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ŠŠµŃƒŃŠæŠµŠ°Š² Га запишам на Гиск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Датотеки" msgid "Unshare" msgstr "ŠŠµ споГелувај" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Š˜Š·Š±Ń€ŠøŃˆŠø" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ŠŸŃ€ŠµŠøŠ¼ŠµŠ½ŃƒŠ²Š°Ń˜" @@ -180,31 +184,31 @@ msgstr "АГресата неможе Га биГе празна." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Големина" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ŠŸŃ€Š¾Š¼ŠµŠ½ŠµŃ‚Š¾" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 Гатотека" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} Гатотеки" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 567a2b7aaef..99097d14e08 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} папки" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 Гатотека" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} Гатотеки" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index c863d2c2a33..f441c26ada4 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ŠŠµŠ¼Š¾Š¶Š°Š¼ Га вчитам листа оГ App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Š“Ń€ŠµŃˆŠŗŠ° во Š°Š²Ń‚ŠµŠ½Ń‚ŠøŠŗŠ°Ń†ŠøŃ˜Š°" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Š“Ń€ŃƒŠæŠ°Ń‚Š° веќе постои" @@ -48,10 +57,6 @@ msgstr "ŠŠµŠøŃŠæŃ€Š°Š²Š½Š° електронска ŠæŠ¾ŃˆŃ‚Š°" msgid "Unable to delete group" msgstr "ŠŠµŠ¼Š¾Š¶Šµ Га ŠøŠ·Š±Ń€ŠøŃˆŠ°Š¼ Š³Ń€ŃƒŠæŠ°" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Š“Ń€ŠµŃˆŠŗŠ° во Š°Š²Ń‚ŠµŠ½Ń‚ŠøŠŗŠ°Ń†ŠøŃ˜Š°" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ŠŠµŠ¼Š¾Š¶Š°Š¼ Га ŠøŠ·Š±Ń€ŠøŃˆŠ°Š¼ корисник" @@ -114,7 +119,7 @@ msgstr "Š“Ń€ŠµŃˆŠŗŠ°" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Днимам..." @@ -191,67 +196,83 @@ msgstr "ŠŸŃ€ŠµŠ·ŠµŠ¼Šø клиент за АнГроиГ" msgid "Download iOS Client" msgstr "ŠŸŃ€ŠµŠ·ŠµŠ¼Šø iOS клиент" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Š’Š°ŃˆŠ°Ń‚Š° лозинка беше променета." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Š’Š°ŃˆŠ°Ń‚Š° лозинка неможе Га се смени" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ŠœŠ¾Š¼ŠµŠ½Ń‚Š°Š»Š½Š° лозинка" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ŠŠ¾Š²Š° лозинка" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "прикажи" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Дмени лозинка" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Š•-ŠæŠ¾ŃˆŃ‚Š°" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Š’Š°ŃˆŠ°Ń‚Š° аГреса за е-ŠæŠ¾ŃˆŃ‚Š°" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Пополни ја аГресата за е-ŠæŠ¾ŃˆŃ‚Š° за Га може Га ја обновуваш лозинката" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Јазик" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Помогни во превоГот" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ŠšŠ¾Ń€ŠøŃŃ‚ŠµŃ‚Šµ ја оваа аГреса Га " -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Š’ŠµŃ€Š·ŠøŃ˜Š°" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "Disember" msgid "Settings" msgstr "Tetapan" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -565,14 +565,18 @@ msgstr "" msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ingat" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log masuk" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "sebelum" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 6e6a0e262c6..d27c0cdafb0 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat, fail berjaya dimuat naik." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fail yang dimuat naik melebihi MAX_FILE_SIZE yang dinyatakan dalam form HTML " -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Sebahagian daripada fail telah dimuat naik. " -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Tiada fail yang dimuat naik" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Folder sementara hilang" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +72,15 @@ msgstr "fail" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Padam" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -181,31 +185,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nama " -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Saiz" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index c3efccaa15d..7ae2747a242 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nama" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index b9e4261b7a4..b04dd7bcb13 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Ralat pengesahan" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -49,10 +58,6 @@ msgstr "Emel tidak sah" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Ralat pengesahan" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -115,7 +120,7 @@ msgstr "Ralat" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Simpan..." @@ -192,67 +197,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Kata laluan " -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "Papar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Emel" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -166,55 +166,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "i dag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "i gĆ„r" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "forrige mĆ„ned" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} mĆ„neder siden" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mĆ„neder siden" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "forrige Ć„r" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Ć„r siden" @@ -569,14 +569,18 @@ msgstr "Vennligst skift passord for Ć„ gjĆøre kontoen din sikker igjen." msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "husk" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logg inn" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "forrige" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 195074affb1..eb59e0831fb 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -26,46 +26,46 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Det er ingen feil. Filen ble lastet opp." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "FilstĆørrelsen overskrider maksgrensen pĆ„ MAX_FILE_SIZE som ble oppgitt i HTML-skjemaet" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Filopplastningen ble bare delvis gjennomfĆørt" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen fil ble lastet opp" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Mangler en midlertidig mappe" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Klarte ikke Ć„ skrive til disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -77,11 +77,15 @@ msgstr "Filer" msgid "Unshare" msgstr "Avslutt deling" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "OmdĆøp" @@ -186,31 +190,31 @@ msgstr "URL-en kan ikke vƦre tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "StĆørrelse" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Endret" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fil" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index bac182fb219..c2c66d6ca13 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mappe" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mapper" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fil" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index a3c72924251..f96018e1169 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -29,6 +29,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Lasting av liste fra App Store feilet." +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentikasjonsfeil" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppen finnes allerede" @@ -53,10 +62,6 @@ msgstr "Ugyldig epost" msgid "Unable to delete group" msgstr "Kan ikke slette gruppe" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentikasjonsfeil" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Kan ikke slette bruker" @@ -119,7 +124,7 @@ msgstr "Feil" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Lagrer..." @@ -196,67 +201,83 @@ msgstr "Last ned Android-klient" msgid "Download iOS Client" msgstr "Last ned iOS-klient" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "NĆ„vƦrende passord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "vis" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-post" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Oppi epostadressen du vil tilbakestille passordet for" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "SprĆ„k" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versjon" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -173,55 +173,55 @@ msgstr "december" msgid "Settings" msgstr "Instellingen" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "vandaag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "gisteren" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "vorige maand" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "vorig jaar" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "jaar geleden" @@ -576,14 +576,18 @@ msgstr "Wijzig uw wachtwoord zodat uw account weer beveiligd is." msgid "Lost your password?" msgstr "Uw wachtwoord vergeten?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Meld je aan" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "vorige" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index a49996ff6f2..f21914fb299 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 08:10+0000\n" -"Last-Translator: AndrĆ© Koot \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,46 +29,46 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Geen fout opgetreden, bestand successvol geupload." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het geüploade bestand is groter dan de MAX_FILE_SIZE richtlijn die is opgegeven in de HTML-formulier" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is slechts gedeeltelijk geupload" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Geen bestand geüpload" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Een tijdelijke map mist" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Niet genoeg ruimte beschikbaar" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -80,11 +80,15 @@ msgstr "Bestanden" msgid "Unshare" msgstr "Stop delen" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Verwijder" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Hernoem" @@ -189,31 +193,31 @@ msgstr "URL kan niet leeg zijn." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 map" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 bestand" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} bestanden" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 3c41fa7376a..14b518d6dd9 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "uitvoeren restore operatie" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Naam" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Verwijderd" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 map" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mappen" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 bestand" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} bestanden" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index e7ce8853525..86d93f44aa1 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -32,6 +32,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kan de lijst niet van de App store laden" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Authenticatie fout" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Groep bestaat al" @@ -56,10 +65,6 @@ msgstr "Ongeldige e-mail" msgid "Unable to delete group" msgstr "Niet in staat om groep te verwijderen" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Authenticatie fout" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Niet in staat om gebruiker te verwijderen" @@ -122,7 +127,7 @@ msgstr "Fout" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Aan het bewaren....." @@ -199,67 +204,83 @@ msgstr "Download Android Client" msgid "Download iOS Client" msgstr "Download iOS Client" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nieuw wachtwoord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "weergeven" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Weergavenaam" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Taal" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versie" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -564,14 +564,18 @@ msgstr "" msgid "Lost your password?" msgstr "GlĆøymt passordet?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "hugs" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logg inn" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "fĆørre" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index dd980f0277e..555ee143593 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er stĆørre enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "Filer" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Slett" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -179,31 +183,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Storleik" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Endra" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index ef89f942345..9047a8f1cef 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 7c203200289..0d0f12e96e5 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Klarer ikkje Ć„ laste inn liste fra App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Feil i autentisering" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -47,10 +56,6 @@ msgstr "Ugyldig e-postadresse" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Feil i autentisering" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -113,7 +118,7 @@ msgstr "Feil" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Passord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Klarte ikkje Ć„ endra passordet" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Passord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "vis" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Epost" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din epost addresse" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Fyll inn din e-post addresse for og kunne motta passord tilbakestilling" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "SprĆ„k" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hjelp oss Ć„ oversett" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configuracion" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "uĆØi" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "iĆØr" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "mes passat" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses a" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "an passat" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "ans a" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "bremba-te" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Dintrada" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "dariiĆØr" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index f7e8ceb4ea3..16d511d2e46 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichiĆØr amontcargat es mai gròs que la directiva Ā«MAX_FILE_SIZEĀ» especifiada dins lo formulari HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichiĆØr foguĆØt pas completament amontcargat" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Cap de fichiĆØrs son estats amontcargats" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Un dorsiĆØr temporari manca" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "FichiĆØrs" msgid "Unshare" msgstr "Non parteja" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Escafa" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Torna nomenar" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Talha" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index f558a70f109..7ddc063e1b0 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 95c28b3ee25..2c3d180e393 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Pas possible de cargar la tiĆØra dempuĆØi App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Error d'autentificacion" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Lo grop existĆ­s ja" @@ -46,10 +55,6 @@ msgstr "CorriĆØl incorrĆØcte" msgid "Unable to delete group" msgstr "Pas capable d'escafar un grop" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Error d'autentificacion" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Pas capable d'escafar un usanciĆØr" @@ -112,7 +117,7 @@ msgstr "Error" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Enregistra..." @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Senhal" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Senhal novĆØl" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mòstra" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "CorriĆØl" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Ton adreiƧa de corriĆØl" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Emplena una adreiƧa de corriĆØl per permetre lo mandadĆ­s del senhal perdut" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Lenga" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -169,55 +169,55 @@ msgstr "Grudzień" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minute temu" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 godzine temu" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "dziś" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ostani miesiąc" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ostatni rok" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "lat temu" @@ -572,14 +572,18 @@ msgstr "Proszę zmienić swoje hasło, aby zabezpieczyć swoje konto ponownie." msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "Zapamiętanie" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Zaloguj" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "wstecz" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index b6554c153a8..86f9c33c283 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -25,46 +25,46 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Przesłano plik" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Rozmiar przesłanego pliku przekracza maksymalną wartość dyrektywy upload_max_filesize, zawartą formularzu HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Plik przesłano tylko częściowo" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nie przesłano żadnego pliku" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Brak katalogu tymczasowego" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Za mało miejsca" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -76,11 +76,15 @@ msgstr "Pliki" msgid "Unshare" msgstr "Nie udostępniaj" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Usuwa element" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Zmień nazwę" @@ -185,31 +189,31 @@ msgstr "URL nie może być pusty." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nazwa folderu nieprawidłowa. Wykorzystanie \"Shared\" jest zarezerwowane przez Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Rozmiar" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Czas modyfikacji" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 folder" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} foldery" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 plik" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} pliki" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 748f62eaace..3f8e7a95647 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nazwa" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 folder" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} foldery" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 plik" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} pliki" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index ffae537e261..7849faf3679 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -32,6 +32,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nie mogę załadować listy aplikacji" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Błąd uwierzytelniania" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupa już istnieje" @@ -56,10 +65,6 @@ msgstr "Niepoprawny email" msgid "Unable to delete group" msgstr "Nie można usunąć grupy" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Błąd uwierzytelniania" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nie można usunąć użytkownika" @@ -122,7 +127,7 @@ msgstr "Błąd" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Zapisywanie..." @@ -199,67 +204,83 @@ msgstr "Pobierz klienta dla Androida" msgid "Download iOS Client" msgstr "Pobierz klienta dla iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Hasło" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "Wyświetlanie" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Adres e-mail użytkownika" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Proszę wprowadzić adres e-mail, aby uzyskać możliwość odzyskania hasła" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Język" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Wersja" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -155,59 +155,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -540,7 +540,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "" @@ -562,14 +562,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index ab00380cb6b..23c778df2b3 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 16:02+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,46 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index ce226803d8a..2190a524e92 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index f95716114e3..991c4808c5b 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -170,55 +170,55 @@ msgstr "Dezembro" msgid "Settings" msgstr "ConfiguraƧƵes" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "segundos atrĆ”s" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minuto atrĆ”s" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrĆ”s" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 hora atrĆ”s" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} horas atrĆ”s" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoje" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ontem" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dias atrĆ”s" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "Ćŗltimo mĆŖs" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} meses atrĆ”s" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses atrĆ”s" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "Ćŗltimo ano" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anos atrĆ”s" @@ -573,14 +573,18 @@ msgstr "Por favor troque sua senha para tornar sua conta segura novamente." msgid "Lost your password?" msgstr "EsqueƧeu sua senha?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "lembrete" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Log in" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index c00ceb550f5..d9891649b5b 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -26,46 +26,46 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi transferido. Erro desconhecido" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "NĆ£o houve nenhum erro, o arquivo foi transferido com sucesso" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o MAX_FILE_SIZE que foi especificado no formulĆ”rio HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi transferido parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nenhum arquivo foi transferido" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Pasta temporĆ”ria nĆ£o encontrada" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Diretório invĆ”lido." @@ -77,11 +77,15 @@ msgstr "Arquivos" msgid "Unshare" msgstr "Descompartilhar" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Excluir" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renomear" @@ -186,31 +190,31 @@ msgstr "URL nĆ£o pode ficar em branco" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta invĆ”lido. O uso de 'Shared' Ć© reservado para o Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} arquivos" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index c6586d1029b..ef507ea2447 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "realizar operação de restauração" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "ExcluĆ­do" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 pasta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} pastas" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 arquivo" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} arquivos" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 7b1b23da58a..de48363261e 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -31,6 +31,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "NĆ£o foi possĆ­vel carregar lista da App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Erro de autenticação" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupo jĆ” existe" @@ -55,10 +64,6 @@ msgstr "E-mail invĆ”lido" msgid "Unable to delete group" msgstr "NĆ£o foi possĆ­vel remover grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Erro de autenticação" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "NĆ£o foi possĆ­vel remover usuĆ”rio" @@ -121,7 +126,7 @@ msgstr "Erro" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Guardando..." @@ -198,67 +203,83 @@ msgstr "Baixar Cliente Android" msgid "Download iOS Client" msgstr "Baixar Cliente iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Senha" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "NĆ£o Ć© possivel alterar a sua senha" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nome de Exibição" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Seu endereƧo de e-mail" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Preencha um endereƧo de e-mail para habilitar a recuperação de senha" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usar este endereƧo para conectar-se ao seu ownCloud no seu gerenciador de arquivos" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "VersĆ£o" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,55 +167,55 @@ msgstr "Dezembro" msgid "Settings" msgstr "DefiniƧƵes" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "Minutos atrĆ”s" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "HĆ” 1 minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrĆ”s" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "HĆ” 1 hora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "HĆ” {hours} horas atrĆ”s" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hoje" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ontem" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dias atrĆ”s" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ultĆ­mo mĆŖs" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "HĆ” {months} meses atrĆ”s" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "meses atrĆ”s" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ano passado" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "anos atrĆ”s" @@ -570,14 +570,18 @@ msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." msgid "Lost your password?" msgstr "Esqueceu-se da sua password?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "lembrar" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Entrar" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "anterior" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 70714ed855d..284e463f1a2 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 02:40+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,46 +25,46 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Sem erro, ficheiro enviado com sucesso" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede o diretivo MAX_FILE_SIZE especificado no formulĆ”rio HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro enviado só foi enviado parcialmente" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "NĆ£o foi enviado nenhum ficheiro" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Falta uma pasta temporĆ”ria" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "EspaƧo em disco insuficiente!" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directório InvĆ”lido" @@ -76,11 +76,15 @@ msgstr "Ficheiros" msgid "Unshare" msgstr "Deixar de partilhar" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Apagar" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Renomear" @@ -185,31 +189,31 @@ msgstr "O URL nĆ£o pode estar vazio." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta invĆ”lido. O Uso de 'shared' Ć© reservado para o ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 3ff3c4b6238..5dca5cbe115 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 02:40+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,35 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Restaurar" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Apagado" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 pasta" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} pastas" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ficheiro" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 9071ca3e16c..8c1833afc0e 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 02:40+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,6 +29,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Incapaz de carregar a lista da App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Erro de autenticação" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "O grupo jĆ” existe" @@ -53,10 +62,6 @@ msgstr "Email invĆ”lido" msgid "Unable to delete group" msgstr "ImpossĆ­vel apagar grupo" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Erro de autenticação" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ImpossĆ­vel apagar utilizador" @@ -119,7 +124,7 @@ msgstr "Erro" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "A guardar..." @@ -196,67 +201,83 @@ msgstr "Transferir o cliente android" msgid "Download iOS Client" msgstr "Transferir o cliente iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Palavra-chave" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "NĆ£o foi possivel alterar a sua palavra-chave" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "mostrar" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Nome pĆŗblico" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "endereƧo de email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "O seu endereƧo de email" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Preencha com o seu endereƧo de email para ativar a recuperação da palavra-chave" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Idioma" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use este endereƧo no seu gestor de ficheiros para ligar Ć  sua ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "VersĆ£o" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -165,55 +165,55 @@ msgstr "Decembrie" msgid "Settings" msgstr "Configurări" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "secunde Ć®n urmă" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minut Ć®n urmă" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} ore Ć®n urmă" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "astăzi" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ieri" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ultima lună" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} luni Ć®n urmă" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "luni Ć®n urmă" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ultimul an" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "ani Ć®n urmă" @@ -568,14 +568,18 @@ msgstr "Te rog schimba parola pentru ca, contul tau sa fie securizat din nou." msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "amintește" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Autentificare" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "precedentul" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index e6df42f7c71..13109711398 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -23,46 +23,46 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost Ć®ncărcat. Eroare necunoscută" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Nicio eroare, fișierul a fost Ć®ncărcat cu succes" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul are o dimensiune mai mare decĆ¢t variabile MAX_FILE_SIZE specificată Ć®n formularul HTML" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost Ć®ncărcat doar parțial" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Niciun fișier Ć®ncărcat" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Nu este suficient spațiu disponibil" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Director invalid." @@ -74,11 +74,15 @@ msgstr "Fișiere" msgid "Unshare" msgstr "Anulează partajarea" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Șterge" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Redenumire" @@ -183,31 +187,31 @@ msgstr "Adresa URL nu poate fi goală." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Dimensiune" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 folder" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fisier" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} fisiere" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 180def499df..bf376bb048f 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Nume" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 folder" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} foldare" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fisier" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} fisiere" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index e538f042146..a54bf6ea81f 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -28,6 +28,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Imposibil de Ć®ncărcat lista din App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Eroare de autentificare" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grupul există deja" @@ -52,10 +61,6 @@ msgstr "E-mail nevalid" msgid "Unable to delete group" msgstr "Nu s-a putut șterge grupul" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Eroare de autentificare" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nu s-a putut șterge utilizatorul" @@ -118,7 +123,7 @@ msgstr "Eroare" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Salvez..." @@ -195,67 +200,83 @@ msgstr "Descarcă client Android" msgid "Download iOS Client" msgstr "Descarcă client iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parolă" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "afișează" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Completează o adresă de mail pentru a-ți putea recupera parola" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Limba" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Folosește această adresă pentru a conecta ownCloud cu managerul de fișiere" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Versiunea" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the , 2012. # Mihail Vasiliev , 2012. # , 2012. +# Sergey , 2013. # , 2013. # , 2012. # , 2011. @@ -17,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-01-31 23:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -169,55 +170,55 @@ msgstr "Š”ŠµŠŗŠ°Š±Ń€ŃŒ" msgid "Settings" msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "несколько секунГ назаГ" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 Š¼ŠøŠ½ŃƒŃ‚Ńƒ назаГ" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} Š¼ŠøŠ½ŃƒŃ‚ назаГ" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "час назаГ" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} часов назаГ" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "ŃŠµŠ³Š¾Š“Š½Ń" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} Гней назаГ" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "в ŠæŃ€Š¾ŃˆŠ»Š¾Š¼ Š¼ŠµŃŃŃ†Šµ" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} Š¼ŠµŃŃŃ†ŠµŠ² назаГ" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "несколько Š¼ŠµŃŃŃ†ŠµŠ² назаГ" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "в ŠæŃ€Š¾ŃˆŠ»Š¾Š¼ гоГу" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "несколько лет назаГ" @@ -266,7 +267,7 @@ msgstr "ŠžŃ‚ŠŗŃ€Ń‹Ń‚ŃŒ Š“Š¾ŃŃ‚ŃƒŠæ" #: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 msgid "Shared" -msgstr "" +msgstr "ŠžŠ±Ń‰ŠøŠµ" #: js/share.js:141 js/share.js:611 msgid "Error while sharing" @@ -389,11 +390,11 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "ŠŸŃ€Šø обновлении ŠæŃ€Š¾ŠøŠ·Š¾ŃˆŠ»Š° ошибка. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° сообщите об ŃŃ‚Š¾Š¼ в ownCloud сообщество." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½ŠøŠµ ŠæŃ€Š¾ŃˆŠ»Š¾ успешно. ŠŸŠµŃ€ŠµŠ½Š°ŠæŃ€Š°Š²Š»ŃŠµŠ¼ŃŃ в Š’Š°Ńˆ ownCloud..." #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -572,14 +573,18 @@ msgstr "ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, смените ŠæŠ°Ń€Š¾Š»ŃŒ, чтобы обезо msgid "Lost your password?" msgstr "Забыли ŠæŠ°Ń€Š¾Š»ŃŒ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "Š·Š°ŠæŠ¾Š¼Š½ŠøŃ‚ŃŒ" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Войти" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "преГ" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 63ecf244040..60b93531879 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -9,6 +9,7 @@ # , 2012. # Nick Remeslennikov , 2012. # , 2012. +# Sergey , 2013. # , 2013. # , 2012. # , 2011. @@ -18,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -28,46 +29,46 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Файл не был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½. ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š°Ń ошибка" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Файл успешно Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл ŠæŃ€ŠµŠ²Ń‹ŃˆŠ°ŠµŃ‚ размер ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½Š½Ń‹Š¹ upload_max_filesize в php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файл ŠæŃ€ŠµŠ²Ń‹ŃˆŠ°ŠµŃ‚ размер MAX_FILE_SIZE, ŃƒŠŗŠ°Š·Š°Š½Ń‹Š¹ в HTML-форме" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Файл был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½ не ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Файл не был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ найти Š²Ń€ŠµŠ¼ŠµŠ½Š½ŃƒŃŽ папку" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ŠžŃˆŠøŠ±ŠŗŠ° записи на Гиск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "ŠŠµŠ“Š¾ŃŃ‚Š°Ń‚Š¾Ń‡Š½Š¾ свобоГного места" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ŠŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Ń‹Š¹ каталог." @@ -79,11 +80,15 @@ msgstr "Файлы" msgid "Unshare" msgstr "ŠžŃ‚Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŃŽ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Š£Š“Š°Š»ŠøŃ‚ŃŒ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ŠŸŠµŃ€ŠµŠøŠ¼ŠµŠ½Š¾Š²Š°Ń‚ŃŒ" @@ -117,7 +122,7 @@ msgstr "заменено {new_name} на {old_name}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "Š²Ń‹ŠæŠ¾Š»Š½ŃŠµŃ‚ŃŃ Š¾ŠæŠµŃ€Š°Ń†ŠøŃ ŃƒŠ“Š°Š»ŠµŠ½ŠøŃ" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -135,17 +140,17 @@ msgstr "ŠŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š¾Šµ ŠøŠ¼Ń, '\\', '/', '<', '>', ':', '\"', '|', '? #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Š’Š°ŃˆŠµ Гисковое пространство ŠæŠ¾Š»Š½Š¾ŃŃ‚ŃŒŃŽ заполнено, произвеГите Š¾Ń‡ŠøŃŃ‚ŠŗŃƒ переГ Š·Š°Š³Ń€ŃƒŠ·ŠŗŠ¾Š¹ новых файлов." #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Š’Š°ŃˆŠµ хранилище почти заполнено ({usedSpacePercent}%)" #: js/files.js:224 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° Š½Š°Ń‡Š°Š»Š°ŃŃŒ. Это может ŠæŠ¾Ń‚Ń€ŠµŠ±Š¾Š²Š°Ń‚ŃŒ много времени, если файл большого размера." #: js/files.js:261 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -188,31 +193,31 @@ msgstr "Дсылка не может Š±Ń‹Ń‚ŃŒ ŠæŃƒŃŃ‚Š¾Š¹." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ŠŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š¾Šµ ŠøŠ¼Ń каталога. Š˜Š¼Ń 'Shared' зарезервировано." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ŠŠ°Š·Š²Š°Š½ŠøŠµ" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Š˜Š·Š¼ŠµŠ½Ń‘Š½" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 файл" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} файлов" @@ -270,7 +275,7 @@ msgstr "Из ссылки" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "ŠšŠ¾Ń€Š·ŠøŠ½Š°" #: templates/index.php:46 msgid "Cancel upload" @@ -304,4 +309,4 @@ msgstr "Š¢ŠµŠŗŃƒŃ‰ŠµŠµ сканирование" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½ŠøŠµ кеша файловой системы..." diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index b208ca663da..87ecf686fe9 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Š˜Š¼Ń" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} папок" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 файл" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} файлов" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 3426bc61722..f834d506e21 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -7,14 +7,15 @@ # , 2012. # Mihail Vasiliev , 2012. # , 2012. +# Sergey , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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 \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 07:20+0000\n" +"Last-Translator: m4rkell \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,49 +23,49 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:301 +#: app.php:313 msgid "Help" msgstr "ŠŸŠ¾Š¼Š¾Ń‰ŃŒ" -#: app.php:308 +#: app.php:320 msgid "Personal" msgstr "Личное" -#: app.php:313 +#: app.php:325 msgid "Settings" msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø" -#: app.php:318 +#: app.php:330 msgid "Users" msgstr "ŠŸŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Šø" -#: app.php:325 +#: app.php:337 msgid "Apps" msgstr "ŠŸŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŃ" -#: app.php:327 +#: app.php:339 msgid "Admin" msgstr "Admin" -#: files.php:365 +#: files.php:202 msgid "ZIP download is turned off." msgstr "ZIP-скачивание Š¾Ń‚ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾." -#: files.php:366 +#: files.php:203 msgid "Files need to be downloaded one by one." msgstr "Файлы Голжны Š±Ń‹Ń‚ŃŒ Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½Ń‹ по оГному." -#: files.php:366 files.php:391 +#: files.php:203 files.php:228 msgid "Back to Files" msgstr "ŠŠ°Š·Š°Š“ Šŗ файлам" -#: files.php:390 +#: files.php:227 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы ŃŠ¾Š·Š“Š°Ń‚ŃŒ zip файл." -#: helper.php:228 +#: helper.php:226 msgid "couldn't be determined" -msgstr "" +msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ" #: json.php:28 msgid "Application is not enabled" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 489a9f51c77..1d09ca48a2c 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,6 +10,7 @@ # Nick Remeslennikov , 2012. # , 2012. # , 2012. +# Sergey , 2013. # , 2012-2013. # , 2012. # , 2011. @@ -19,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -33,6 +34,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° ŠøŠ· App Store запрещена" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "ŠžŃˆŠøŠ±ŠŗŠ° авторизации" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Š“Ń€ŃƒŠæŠæŠ° уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚" @@ -57,10 +67,6 @@ msgstr "ŠŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Ń‹Š¹ Email" msgid "Unable to delete group" msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "ŠžŃˆŠøŠ±ŠŗŠ° авторизации" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń" @@ -89,7 +95,7 @@ msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń ŠøŠ· Š³Ń€Ńƒ #: ajax/updateapp.php:13 msgid "Couldn't update app." -msgstr "" +msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š¾Š±Š½Š¾Š²ŠøŃ‚ŃŒ приложение" #: js/apps.js:30 msgid "Update to {appversion}" @@ -105,11 +111,11 @@ msgstr "Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "ŠŸŠ¾Š²Ń€ŠµŠ¼ŠµŠ½Šø..." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½ŠøŠµ..." #: js/apps.js:87 msgid "Error while updating app" @@ -121,9 +127,9 @@ msgstr "ŠžŃˆŠøŠ±ŠŗŠ°" #: js/apps.js:90 msgid "Updated" -msgstr "" +msgstr "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½Š¾" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Дохранение..." @@ -200,67 +206,83 @@ msgstr "Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° Android-ŠæŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŃ" msgid "Download iOS Client" msgstr "Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° iOS-ŠæŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŃ" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ŠŸŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Š’Š°Ńˆ ŠæŠ°Ń€Š¾Š»ŃŒ изменён" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃŠ¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Š¢ŠµŠŗŃƒŃ‰ŠøŠ¹ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ŠŠ¾Š²Ń‹Š¹ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ŠæŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Š”Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "ŠžŃ‚Š¾Š±Ń€Š°Š¶Š°ŠµŠ¼Š¾Šµ ŠøŠ¼Ń" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "e-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Š’Š°Ńˆ аГрес ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "ВвеГите аГрес ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты, чтобы ŠæŠ¾ŃŠ²ŠøŠ»Š°ŃŃŒ Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŠæŠ°Ń€Š¾Š»Ń" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Язык" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ŠŸŠ¾Š¼Š¾Ń‡ŃŒ с перевоГом" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ ŃŃ‚Š¾Ń‚ URL Š“Š»Ń ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŃ файлового менеГжера Šŗ Š’Š°ŃˆŠµŠ¼Ńƒ Ń…Ń€Š°Š½ŠøŠ»ŠøŃ‰Ńƒ" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Š’ŠµŃ€ŃŠøŃ" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "Š”ŠµŠŗŠ°Š±Ń€ŃŒ" msgid "Settings" msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "секунГ назаГ" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr " 1 Š¼ŠøŠ½ŃƒŃ‚Ńƒ назаГ" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{Š¼ŠøŠ½ŃƒŃ‚Ń‹} Š¼ŠøŠ½ŃƒŃ‚ назаГ" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 час назаГ" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{часы} часов назаГ" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "ŃŠµŠ³Š¾Š“Š½Ń" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчера" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{Гни} Гней назаГ" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "в ŠæŃ€Š¾ŃˆŠ»Š¾Š¼ Š¼ŠµŃŃŃ†Šµ" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{Š¼ŠµŃŃŃ†Ń‹} Š¼ŠµŃŃŃ†ŠµŠ² назаГ" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "Š¼ŠµŃŃŃ† назаГ" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "в ŠæŃ€Š¾ŃˆŠ»Š¾Š¼ гоГу" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "лет назаГ" @@ -564,14 +564,18 @@ msgstr "ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, измените ŠæŠ°Ń€Š¾Š»ŃŒ, чтобы защи msgid "Lost your password?" msgstr "Забыли ŠæŠ°Ń€Š¾Š»ŃŒ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "Š·Š°ŠæŠ¾Š¼Š½ŠøŃ‚ŃŒ" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Войти" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ŠæŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠøŠ¹" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index d0beae0d809..659837c8c94 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Файл не был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½. ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š°Ń ошибка" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ŠžŃˆŠøŠ±ŠŗŠ° Š¾Ń‚ŃŃƒŃ‚ŃŃ‚Š²ŃƒŠµŃ‚, файл Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½ успешно." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Размер Š·Š°Š³Ń€ŃƒŠ¶Š°ŠµŠ¼Š¾Š³Š¾ файла ŠæŃ€ŠµŠ²Ń‹ŃˆŠ°ŠµŃ‚ upload_max_filesize Š“ŠøŃ€ŠµŠŗŃ‚ŠøŠ²Ńƒ в php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Размер Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½Š½Š¾Š³Š¾" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Š—Š°Š³Ń€ŃƒŠ¶Š°ŠµŠ¼Ń‹Š¹ файл был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½ частично" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Файл не был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ŠžŃ‚ŃŃƒŃ‚ŃŃ‚Š²ŃƒŠµŃ‚ Š²Ń€ŠµŠ¼ŠµŠ½Š½Š°Ń папка" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ŠŠµ уГалось Š·Š°ŠæŠøŃŠ°Ń‚ŃŒ на Гиск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "ŠŠµ Гостаточно свобоГного места" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ŠŠµŠ²ŠµŃ€Š½Ń‹Š¹ каталог." @@ -71,11 +71,15 @@ msgstr "Файлы" msgid "Unshare" msgstr "Š”ŠŗŃ€Ń‹Ń‚ŃŒ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Š£Š“Š°Š»ŠøŃ‚ŃŒ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ŠŸŠµŃ€ŠµŠøŠ¼ŠµŠ½Š¾Š²Š°Ń‚ŃŒ" @@ -180,31 +184,31 @@ msgstr "URL не Голжен Š±Ń‹Ń‚ŃŒ ŠæŃƒŃŃ‚Ń‹Š¼." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ŠŠµŠ²ŠµŃ€Š½Š¾Šµ ŠøŠ¼Ń папки. Использование Š½Š°ŠøŠ¼ŠµŠ½Š¾Š²Š°Š½ŠøŃ 'ŠžŠæŃƒŠ±Š»ŠøŠŗŠ¾Š²Š°Š½Š¾' зарезервировано Owncloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Š˜Š¼Ń" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Размер" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Изменен" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 файл" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{количество} файлов" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index 71505abd669..02991a08ba4 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Š˜Š¼Ń" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{количество} папок" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 файл" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{количество} файлов" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index b7258db60ab..184b4e73c63 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š·Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ список ŠøŠ· App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "ŠžŃˆŠøŠ±ŠŗŠ° авторизации" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Š“Ń€ŃƒŠæŠæŠ° уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚" @@ -47,10 +56,6 @@ msgstr "ŠŠµŠ²ŠµŃ€Š½Ń‹Š¹ email" msgid "Unable to delete group" msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "ŠžŃˆŠøŠ±ŠŗŠ° авторизации" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń" @@ -113,7 +118,7 @@ msgstr "ŠžŃˆŠøŠ±ŠŗŠ°" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Дохранение" @@ -190,67 +195,83 @@ msgstr "Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ клиент поГ Android " msgid "Download iOS Client" msgstr "Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ клиент поГ iOS " -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ŠŸŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Š’Š°Ńˆ ŠæŠ°Ń€Š¾Š»ŃŒ был изменен" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ Š’Š°Ńˆ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Š¢ŠµŠŗŃƒŃ‰ŠøŠ¹ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ŠŠ¾Š²Ń‹Š¹ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ŠæŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Š­Š»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š°Ń почта" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "АГрес Š’Š°ŃˆŠµŠ¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "ВвеГите аГрес ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты Š“Š»Ń возможности Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŠæŠ°Ń€Š¾Š»Ń" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Язык" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ŠŸŠ¾Š¼Š¾Š³ŠøŃ‚Šµ перевести" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ ŃŃ‚Š¾Ń‚ аГрес Š“Š»Ń ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŃ Šŗ ownCloud в Š’Š°ŃˆŠµŠ¼ файловом менеГжере" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Š’ŠµŃ€ŃŠøŃ" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -162,55 +162,55 @@ msgstr "ą¶Æą·™ą·ƒą·ą¶øą·Šą¶¶ą¶»ą·Š" msgid "Settings" msgstr "ą·ƒą·ą¶šą·ƒą·”ą¶øą·Š" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "තත්ඓරයන්ට ඓෙර" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 ą¶øą·’ą¶±ą·’ą¶­ą·Šą¶­ą·”ą·€ą¶šą¶§ ඓෙර" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "ą¶…ą¶Æ" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ඓෙර ą¶øą·ą·ƒą¶ŗą·š" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "ą¶øą·ą·ƒ ą¶šą·“ą¶“ą¶ŗą¶šą¶§ ඓෙර" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ඓෙර ą¶…ą·€ą·”ą¶»ą·”ą¶Æą·Šą¶Æą·š" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "අවුරුදු ą¶šą·“ą¶“ą¶ŗą¶šą¶§ ඓෙර" @@ -565,14 +565,18 @@ msgstr "" msgid "Lost your password?" msgstr "මුරඓදය ą¶…ą¶øą¶­ą¶šą¶Æ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "මතක ą¶­ą¶¶ą·ą¶œą¶±ą·Šą¶±" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ą¶“ą·Šā€ą¶»ą·€ą·šą·ą·€ą¶±ą·Šą¶±" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ඓෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b61cf98e2dd..f98b038c8ea 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ą¶œą·œą¶±ą·”ą·€ą¶šą·Š ą¶‹ą¶©ą·”ą¶œą¶­ ą¶±ą·œą·€ą·”ą¶±ą·’. ą¶±ą·œą·„ą·ą¶³ą·’ą¶±ą·” ą¶Æą·ą·‚ą¶ŗą¶šą·Š" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "නිවැරදි ą·€ ą¶œą·œą¶±ą·”ą·€ ą¶‹ą¶©ą·”ą¶œą¶­ ą¶šą·™ą¶»ą·’ą¶±ą·’" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ą¶‹ą¶©ą·”ą¶œą¶­ ą¶šą·… ą¶œą·œą¶±ą·”ą·€ą·š ą·€ą·’ą·ą·ą¶½ą¶­ą·Šą·€ą¶ŗ HTML ą¶“ą·ą¶»ą¶øą¶ŗą·š නියම ą¶šą·… ඇති MAX_FILE_SIZE ą·€ą·’ą·ą·ą¶½ą¶­ą·Šą·€ą¶ŗą¶§ ą·€ą¶©ą· වැඩිය" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "ą¶‹ą¶©ą·”ą¶œą¶­ ą¶šą·… ą¶œą·œą¶±ą·”ą·€ą·š කොටසක් ඓමණක් ą¶‹ą¶©ą·”ą¶œą¶­ විය" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ą¶šą·’ą·ƒą·’ą¶Æą·” ą¶œą·œą¶±ą·€ą¶šą·Š ą¶‹ą¶©ą·”ą¶œą¶­ ą¶±ą·œą·€ą·’ą¶±ą·’" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ą¶­ą·ą·€ą¶šą·ą¶½ą·’ą¶š ą·†ą·œą¶½ą·Šą¶©ą¶»ą¶ŗą¶šą·Š ą·ƒą·œą¶ŗą·ą¶œą¶­ ą¶±ą·œą·„ą·ą¶š" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ą¶­ą·ą¶§ą·’ą¶œą¶­ ą¶šą·’ą¶»ą·“ą¶ø ą¶…ą·ƒą·ą¶»ą·Šą¶®ą¶šą¶ŗą·’" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "ą¶œą·œą¶±ą·”" msgid "Unshare" msgstr "ą¶±ą·œą¶¶ą·™ą¶Æą·”" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "මකන්න" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "නැවත නම් කරන්න" @@ -179,31 +183,31 @@ msgstr "ą¶ŗą·œą¶øą·”ą·€ ą·„ą·’ą·ƒą·Š විය ą¶±ą·œą·„ą·ą¶š" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "නම" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ą¶“ą·Šā€ą¶»ą¶øą·ą¶«ą¶ŗ" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ą·€ą·™ą¶±ą·ƒą·Š ą¶šą·…" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 ą·†ą·œą¶½ą·Šą¶©ą¶»ą¶ŗą¶šą·Š" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ą¶œą·œą¶±ą·”ą·€ą¶šą·Š" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index c5abfae0b81..67a762da980 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "නම" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 ą·†ą·œą¶½ą·Šą¶©ą¶»ą¶ŗą¶šą·Š" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ą¶œą·œą¶±ą·”ą·€ą¶šą·Š" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 76d2386842e..223283dfa92 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "ą·ƒą¶­ą·Šā€ą¶ŗą·ą¶“ą¶± ą¶Æą·ą·‚ą¶ŗą¶šą·Š" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ą¶šą¶«ą·Šą¶©ą·ą¶ŗą¶ø දැනටමත් ą¶­ą·’ą¶¶ą·š" @@ -48,10 +57,6 @@ msgstr "ą¶…ą·€ą¶½ą¶‚ą¶œą·” වි-තැඓෑල" msgid "Unable to delete group" msgstr "ą¶šą¶«ą·Šą¶©ą·ą¶ŗą¶ø ą¶øą·ą¶šą·“ą¶øą¶§ ą¶±ą·œą·„ą·ą¶š" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "ą·ƒą¶­ą·Šā€ą¶ŗą·ą¶“ą¶± ą¶Æą·ą·‚ą¶ŗą¶šą·Š" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ą¶“ą¶»ą·’ą·ą·“ą¶½ą¶šą¶ŗą· ą¶øą·ą¶šą·“ą¶øą¶§ ą¶±ą·œą·„ą·ą¶š" @@ -114,7 +119,7 @@ msgstr "ą¶Æą·ą·‚ą¶ŗą¶šą·Š" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ą·ƒą·”ą¶»ą·ą¶šą·™ą¶øą·’ą¶±ą·Š ඓවතී..." @@ -191,67 +196,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "මුරඓදය" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ą¶”ą¶¶ą¶œą·š මුර ą¶“ą¶Æą¶ŗ ą·€ą·™ą¶±ą·ƒą·Š ą¶šą·™ą¶»ą·”ą¶«ą·’" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "මුර ą¶“ą¶Æą¶ŗ ą·€ą·™ą¶±ą·ƒą·Š ą¶šą·… ą¶±ą·œą·„ą·ą¶šą·’ විය" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ą·€ą¶­ą·Šą¶øą¶±ą·Š මුරඓදය" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "නව මුරඓදය" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ą¶“ą·Šā€ą¶»ą¶Æą¶»ą·Šą·ą¶±ą¶ŗ ą¶šą·’ą¶»ą·“ą¶ø" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "මුරඓදය ą·€ą·™ą¶±ą·ƒą·Š ą¶šą·’ą¶»ą·“ą¶ø" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ą·€ą·’ą¶Æą·Šā€ą¶ŗą·”ą¶­ą·Š තැඓෑල" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ą¶”ą¶¶ą¶œą·š ą·€ą·’ą¶Æą·Šā€ą¶ŗą·”ą¶­ą·Š තැඓෑල" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "මුරඓද ą¶“ą·Šā€ą¶»ą¶­ą·’ą·ƒą·Šą¶®ą·ą¶“ą¶±ą¶ŗ ą·ƒą¶³ą·„ą· ą·€ą·’ą¶Æą·Šā€ą¶ŗą·”ą¶­ą·Š තැඓැල් ą·€ą·’ą·ƒą·Šą¶­ą¶» ą¶½ą¶¶ą· ą¶Æą·™ą¶±ą·Šą¶±" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "ą¶·ą·ą·‚ą·ą·€" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ą¶“ą¶»ą·’ą·€ą¶»ą·Šą¶®ą¶± ą·ƒą·„ą¶ŗ" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -165,55 +165,55 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "pred minĆŗtou" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "pred {minutes} minĆŗtami" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "Pred 1 hodinou." -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "dnes" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "včera" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "minulý rok" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "pred rokmi" @@ -568,14 +568,18 @@ msgstr "ProsĆ­m, zmeňte svoje heslo pre opƤtovnĆ© zabezpečenie VÔŔho ĆŗÄtu msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "zapamƤtaÅ„" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "PrihlĆ”siÅ„ sa" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "späń" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index cd6c5db9e95..27b5897355c 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,11 +73,15 @@ msgstr "SĆŗbory" msgid "Unshare" msgstr "NezdielaÅ„" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "OdstrĆ”niÅ„" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "PremenovaÅ„" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index e11f6529c52..bc6bc046f13 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,31 +18,35 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "vykonaÅ„ obnovu" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Meno" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "ZmazanĆ©" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 priečinok" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 sĆŗbor" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} sĆŗborov" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index cfaa9da6bc0..3ba63102905 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Nie je možnĆ© nahraÅ„ zoznam z App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Chyba pri autentifikĆ”cii" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Skupina už existuje" @@ -51,10 +60,6 @@ msgstr "Neplatný email" msgid "Unable to delete group" msgstr "Nie je možnĆ© odstrĆ”niÅ„ skupinu" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Chyba pri autentifikĆ”cii" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Nie je možnĆ© odstrĆ”niÅ„ používateľa" @@ -117,7 +122,7 @@ msgstr "Chyba" msgid "Updated" msgstr "AktualizovanĆ©" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "UkladĆ”m..." @@ -194,67 +199,83 @@ msgstr "StiahnuÅ„ Android klienta" msgid "Download iOS Client" msgstr "StiahnuÅ„ iOS klienta" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Heslo" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Heslo bolo zmenenĆ©" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Nie je možnĆ© zmeniÅ„ vaÅ”e heslo" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "AktuĆ”lne heslo" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "NovĆ© heslo" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "zobraziÅ„" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ZmeniÅ„ heslo" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "ZobrazovanĆ© meno" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "VaÅ”a emailovĆ” adresa" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Vyplňte emailovĆŗ adresu pre aktivovanie obnovy hesla" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "PomĆ“cÅ„ s prekladom" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použite tĆŗto adresu pre pripojenie vÔŔho ownCloud k sĆŗborovĆ©mu sprĆ”vcovi" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Verzia" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -163,55 +163,55 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "pred 1 uro" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "danes" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "včeraj" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "lansko leto" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "let nazaj" @@ -566,14 +566,18 @@ msgstr "Spremenite geslo za izboljÅ”anje zaŔčite računa." msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "Zapomni si me" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Prijava" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "nazaj" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 661f1ee1074..14da2bd6e29 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nobena datoteka ni naložena. Neznana napaka." -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspeÅ”no naložena brez napak." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Naložena datoteka presega dovoljeno velikost. Le-ta je določena z vrstico upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Datoteka je le delno naložena" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nobena datoteka ni bila naložena" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +72,15 @@ msgstr "Datoteke" msgid "Unshare" msgstr "Odstrani iz souporabe" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "IzbriÅ”i" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Preimenuj" @@ -181,31 +185,31 @@ msgstr "Naslov URL ne sme biti prazen." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} datotek" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 835ba52d9ab..7e459a73913 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mapa" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} map" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 datoteka" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} datotek" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 9ed9b294bdd..9046223ab32 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Ni mogoče naložiti seznama iz App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Napaka overitve" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Skupina že obstaja" @@ -49,10 +58,6 @@ msgstr "Neveljaven elektronski naslov" msgid "Unable to delete group" msgstr "Ni mogoče izbrisati skupine" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Napaka overitve" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Ni mogoče izbrisati uporabnika" @@ -115,7 +120,7 @@ msgstr "Napaka" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Poteka shranjevanje ..." @@ -192,67 +197,83 @@ msgstr "Prenesi Android odjemalec" msgid "Download iOS Client" msgstr "Prenesi iOS odjemalec" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Geslo" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "VaÅ”e geslo je spremenjeno" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "pokaži" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Elektronska poÅ”ta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "VaÅ” elektronski poÅ”tni naslov" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "VpiÅ”ite vaÅ” elektronski naslov in s tem omogočite obnovitev gesla" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jezik" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Pomagajte pri prevajanju" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uporabite ta naslov za povezavo do ownCloud v vaÅ”em upravljalniku datotek." -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Različica" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -573,6 +573,10 @@ msgstr "ŃƒŠæŠ°Š¼Ń‚Šø" msgid "Log in" msgstr "ŠŸŃ€ŠøŃ˜Š°Š²Š°" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "претхоГно" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index a234e816481..2a3bb829347 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 15:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ŠŠøŃ˜Šµ Гошло Го Š³Ń€ŠµŃˆŠŗŠµ. Датотека је успешно отпремљена." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ŠžŃ‚ŠæŃ€ŠµŠ¼Ń™ŠµŠ½Š° Гатотека прелази ŃŠ¼ŠµŃ€Š½ŠøŃ†Ńƒ upload_max_filesize у Гатотеци php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ŠžŃ‚ŠæŃ€ŠµŠ¼Ń™ŠµŠ½Š° Гатотека прелази ŃŠ¼ŠµŃ€Š½ŠøŃ†Ńƒ MAX_FILE_SIZE која је навеГена у HTML Š¾Š±Ń€Š°ŃŃ†Ńƒ" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је Гелимично отпремљена" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ŠŠµŠ“Š¾ŃŃ‚Š°Ń˜Šµ привремена фасцикла" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ŠŠµ могу Га пишем на Гиск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Датотеке" msgid "Unshare" msgstr "Укини Š“ŠµŃ™ŠµŃšŠµ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ŠžŠ±Ń€ŠøŃˆŠø" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ŠŸŃ€ŠµŠøŠ¼ŠµŠ½ŃƒŃ˜" @@ -180,31 +184,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ŠŠ°Š·ŠøŠ²" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Величина" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Измењено" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} фасцикле/Šø" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 Гатотека" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} Гатотеке/а" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index b7069b0278a..d2e787a42cd 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 19:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 17:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -37,7 +37,7 @@ msgstr "" #: templates/public.php:14 templates/public.php:30 msgid "Download" -msgstr "" +msgstr "ŠŸŃ€ŠµŃƒŠ·Š¼Šø" #: templates/public.php:29 msgid "No preview available for" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 5274cee524e..fb4b9633bcb 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "врати у претхоГно ŃŃ‚Š°ŃšŠµ" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "ŠžŠ±Ń€ŠøŃŠ°Š½Š¾" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 фасцикла" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} фасцикле/Šø" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 Гатотека" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} Гатотеке/а" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 58c80f3e1f1..5f6cad797ab 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 15:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 17:30+0000\n" "Last-Translator: Rancher \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,27 +20,27 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:312 +#: app.php:313 msgid "Help" msgstr "ŠŸŠ¾Š¼Š¾Ń›" -#: app.php:319 +#: app.php:320 msgid "Personal" msgstr "Лично" -#: app.php:324 +#: app.php:325 msgid "Settings" msgstr "ŠŸŠ¾ŃŃ‚Š°Š²ŠŗŠµ" -#: app.php:329 +#: app.php:330 msgid "Users" msgstr "ŠšŠ¾Ń€ŠøŃŠ½ŠøŃ†Šø" -#: app.php:336 +#: app.php:337 msgid "Apps" msgstr "ŠŠæŠ»ŠøŠŗŠ°Ń†ŠøŃ˜Šµ" -#: app.php:338 +#: app.php:339 msgid "Admin" msgstr "АГминистратор" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 9bd0665d7c2..57f48decd57 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 19:00+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Š“Ń€ŠµŃˆŠŗŠ° приликом ŃƒŃ‡ŠøŃ‚Š°Š²Š°ŃšŠ° списка ŠøŠ· Š”ŠŗŠ»Š°Š“ŠøŃˆŃ‚Š° ŠŸŃ€Š¾Š³Ń€Š°Š¼Š°" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Š“Ń€ŠµŃˆŠŗŠ° при Š°ŃƒŃ‚ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń†ŠøŃ˜Šø" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Š“Ń€ŃƒŠæŠ° већ ŠæŠ¾ŃŃ‚Š¾Ń˜Šø" @@ -47,10 +56,6 @@ msgstr "ŠŠµŠøŃŠæŃ€Š°Š²Š½Š° е-аГреса" msgid "Unable to delete group" msgstr "ŠŠµ могу Га уклоним Š³Ń€ŃƒŠæŃƒ" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Š“Ń€ŠµŃˆŠŗŠ° при Š°ŃƒŃ‚ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń†ŠøŃ˜Šø" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ŠŠµ могу Га уклоним корисника" @@ -113,7 +118,7 @@ msgstr "Š“Ń€ŠµŃˆŠŗŠ°" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Чување у Ń‚Š¾ŠŗŃƒ..." @@ -218,39 +223,55 @@ msgstr "прикажи" msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Š•-ŠæŠ¾ŃˆŃ‚Š°" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "Š’Š°ŃˆŠ° аГреса е-ŠæŠ¾ŃˆŃ‚Šµ" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Ун" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Језик" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr " ŠŸŠ¾Š¼Š¾Š·ŠøŃ‚Šµ у ŠæŃ€ŠµŠ²Š¾Ń’ŠµŃšŃƒ" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -156,59 +156,59 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "PodeÅ”avanja" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -541,7 +541,7 @@ msgstr "ZavrÅ”i podeÅ”avanje" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "Odjava" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "upamti" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "prethodno" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 84495465994..1b5ac038d1b 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:30+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Nema greÅ”ke, fajl je uspeÅ”no poslat" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "Fajlovi" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ObriÅ”i" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -178,31 +182,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 358a19f433b..da3cf064a60 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 693e317cb93..f5f05886b64 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "GreÅ”ka pri autentifikaciji" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -46,10 +55,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "GreÅ”ka pri autentifikaciji" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -112,7 +117,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vaÅ”u lozinku" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "prikaži" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-mail" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Jezik" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -166,55 +166,55 @@ msgstr "December" msgid "Settings" msgstr "InstƤllningar" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "i dag" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "i gĆ„r" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "fƶrra mĆ„naden" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} mĆ„nader sedan" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "mĆ„nader sedan" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "fƶrra Ć„ret" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "Ć„r sedan" @@ -569,14 +569,18 @@ msgstr "Ƅndra genast lƶsenord fƶr att sƤkra ditt konto." msgid "Lost your password?" msgstr "Glƶmt ditt lƶsenord?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "kom ihĆ„g" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Logga in" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "fƶregĆ„ende" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 0cb97531859..1abbf3debc0 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 02:10+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,46 +24,46 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. OkƤnt fel" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen ƶverskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen ƶverstiger MAX_FILE_SIZE direktivet som anges i HTML-formulƤr" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "Ingen fil blev uppladdad" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Saknar en tillfƤllig mapp" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Inte tillrƤckligt med utrymme tillgƤngligt" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -75,11 +75,15 @@ msgstr "Filer" msgid "Unshare" msgstr "Sluta dela" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Radera" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Byt namn" @@ -184,31 +188,31 @@ msgstr "URL kan inte vara tom." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. AnvƤndande av 'Shared' Ƥr reserverat av ownCloud" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Storlek" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Ƅndrad" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 fil" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 1e4c8002b08..3c52fd72781 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AndrĆ© , 2013. # Magnus Hƶglund , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 02:41+0000\n" +"Last-Translator: Lokal_Profil \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,15 +47,15 @@ msgstr "Kryptering" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Filkryptering Ƥr aktiverat." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Fƶljande filtyper kommer inte att krypteras:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Exkludera fƶljande filtyper frĆ„n kryptering:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index d68d5954fe2..897bddc00ea 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" +msgstr "utfƶr Ć„terstƤllning" + +#: js/trash.js:33 +msgid "delete file permanently" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "Raderad" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 mapp" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} mappar" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 fil" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 9891f7d1ec6..c51345d4304 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 00:50+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "Kan inte ladda listan frĆ„n App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Autentiseringsfel" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Gruppen finns redan" @@ -54,10 +63,6 @@ msgstr "Ogiltig e-post" msgid "Unable to delete group" msgstr "Kan inte radera grupp" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Autentiseringsfel" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Kan inte radera anvƤndare" @@ -120,7 +125,7 @@ msgstr "Fel" msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Sparar..." @@ -197,67 +202,83 @@ msgstr "Ladda ner klient fƶr Android" msgid "Download iOS Client" msgstr "Ladda ner klient fƶr iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Lƶsenord" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Ditt lƶsenord har Ƥndrats" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Kunde inte Ƥndra ditt lƶsenord" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Nuvarande lƶsenord" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Nytt lƶsenord" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "visa" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Ƅndra lƶsenord" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "Visat namn" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "E-post" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Fyll i en e-postadress fƶr att aktivera Ć„terstƤllning av lƶsenord" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "SprĆ„k" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "HjƤlp att ƶversƤtta" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "AnvƤnd denna adress fƶr att ansluta till ownCloud i din filhanterare" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Version" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -160,55 +160,55 @@ msgstr "ą®®ą®¾ą®°ąÆą®•ą®“ą®æ" msgid "Settings" msgstr "ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆą®•ą®³ąÆ" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "ą®šąÆ†ą®•ąÆą®•ą®©ąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 ą®Øą®æą®®ą®æą®Ÿą®¤ąÆą®¤ą®æą®±ąÆą®•ąÆ ą®®ąÆą®©ąÆ " -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{ą®Øą®æą®®ą®æą®Ÿą®™ąÆą®•ą®³ąÆ} ą®Øą®æą®®ą®æą®Ÿą®™ąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ " -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 ą®®ą®£ą®æą®¤ąÆą®¤ą®æą®Æą®¾ą®²ą®¤ąÆą®¤ą®æą®±ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{ą®®ą®£ą®æą®¤ąÆą®¤ą®æą®Æą®¾ą®²ą®™ąÆą®•ą®³ąÆ} ą®®ą®£ą®æą®¤ąÆą®¤ą®æą®Æą®¾ą®²ą®™ąÆą®•ą®³ą®æą®±ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "ą®‡ą®©ąÆą®±ąÆ" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "ą®ØąÆ‡ą®±ąÆą®±ąÆ" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{ą®Øą®¾ą®ŸąÆą®•ą®³ąÆ} ą®Øą®¾ą®ŸąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "ą®•ą®Ÿą®ØąÆą®¤ ą®®ą®¾ą®¤ą®®ąÆ" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{ą®®ą®¾ą®¤ą®™ąÆą®•ą®³ąÆ} ą®®ą®¾ą®¤ą®™ąÆą®•ą®³ą®æą®±ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "ą®®ą®¾ą®¤ą®™ąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "ą®•ą®Ÿą®ØąÆą®¤ ą®µą®°ąÆą®Ÿą®®ąÆ" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "ą®µą®°ąÆą®Ÿą®™ąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ" @@ -563,14 +563,18 @@ msgstr "ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ ą®•ą®£ą®•ąÆą®•ąÆˆ ą®®ąÆ€ą®£ąÆą®ŸąÆą®®ąÆ msgid "Lost your password?" msgstr "ą®‰ą®™ąÆą®•ą®³ąÆ ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆą®²ąÆˆ ą®¤ąÆŠą®²ąÆˆą®¤ąÆą®¤ąÆą®µą®æą®ŸąÆą®ŸąÆ€ą®°ąÆą®•ą®³ą®¾?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ą®žą®¾ą®Ŗą®•ą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ąÆą®•" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "ą®ŖąÆą®•ąÆą®Ŗą®¤ą®æą®•ąÆˆ" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ą®®ąÆą®ØąÆą®¤ąÆˆą®Æ" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 392eb89ac49..981b7fbcc87 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,46 +18,46 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ஒரு ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®®ąÆ ą®Ŗą®¤ą®æą®µąÆ‡ą®±ąÆą®±ą®ŖąÆą®Ŗą®Ÿą®µą®æą®²ąÆą®²ąÆˆ. ą®…ą®±ą®æą®Æą®ŖąÆą®Ŗą®Ÿą®¾ą®¤ வஓு" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ą®‡ą®™ąÆą®•ąÆ வஓு ą®‡ą®²ąÆą®²ąÆˆ, ą®•ąÆ‹ą®ŖąÆą®ŖąÆ ą®µąÆ†ą®±ąÆą®±ą®æą®•ą®°ą®®ą®¾ą®• ą®Ŗą®¤ą®æą®µąÆ‡ą®±ąÆą®±ą®ŖąÆą®Ŗą®ŸąÆą®Ÿą®¤ąÆ" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ą®Ŗą®¤ą®æą®µąÆ‡ą®±ąÆą®±ą®ŖąÆą®Ŗą®ŸąÆą®Ÿ ą®•ąÆ‹ą®ŖąÆą®Ŗą®¾ą®©ą®¤ąÆ HTML ą®Ŗą®Ÿą®æą®µą®¤ąÆą®¤ą®æą®²ąÆ ą®•ąÆą®±ą®æą®ŖąÆą®Ŗą®æą®Ÿą®ŖąÆą®Ŗą®ŸąÆą®ŸąÆą®³ąÆą®³ MAX_FILE_SIZE directive ஐ விட ą®•ąÆ‚ą®Ÿą®æą®Æą®¤ąÆ" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "ą®Ŗą®¤ą®æą®µąÆ‡ą®±ąÆą®±ą®ŖąÆą®Ŗą®ŸąÆą®Ÿ ą®•ąÆ‹ą®ŖąÆą®Ŗą®¾ą®©ą®¤ąÆ பகுதியாக ą®®ą®ŸąÆą®ŸąÆą®®ąÆ‡ ą®Ŗą®¤ą®æą®µąÆ‡ą®±ąÆą®±ą®ŖąÆą®Ŗą®ŸąÆą®ŸąÆą®³ąÆą®³ą®¤ąÆ" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ą®Žą®ØąÆą®¤ ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®®ąÆ ą®Ŗą®¤ą®æą®µąÆ‡ą®±ąÆą®±ą®ŖąÆą®Ŗą®Ÿą®µą®æą®²ąÆą®²ąÆˆ" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "ஒரு ą®¤ą®±ąÆą®•ą®¾ą®²ą®æą®•ą®®ą®¾ą®© ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®±ąÆˆą®ÆąÆˆ ą®•ą®¾ą®£ą®µą®æą®²ąÆą®²ąÆˆ" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ą®µą®ŸąÆą®Ÿą®æą®²ąÆ ą®Žą®“ąÆą®¤ ą®®ąÆą®Ÿą®æą®Æą®µą®æą®²ąÆą®²ąÆˆ" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -69,11 +69,15 @@ msgstr "ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®•ą®³ąÆ" msgid "Unshare" msgstr "ą®Ŗą®•ą®æą®°ą®ŖąÆą®Ŗą®Ÿą®¾ą®¤ą®¤ąÆ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ą®…ą®“ą®æą®•ąÆą®•" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ą®ŖąÆ†ą®Æą®°ąÆą®®ą®¾ą®±ąÆą®±ą®®ąÆ" @@ -178,31 +182,31 @@ msgstr "URL ą®µąÆ†ą®±ąÆą®®ąÆˆą®Æą®¾ą®• ą®‡ą®°ąÆą®•ąÆą®•ą®®ąÆą®Ÿą®æą®Æą®¾ą®¤ msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ą®ŖąÆ†ą®Æą®°ąÆ" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "அளவு" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ą®®ą®¾ą®±ąÆą®±ą®ŖąÆą®Ŗą®ŸąÆą®Ÿą®¤ąÆ" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®±ąÆˆ" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{ą®Žą®£ąÆą®£ą®æą®•ąÆą®•ąÆˆ} ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®±ąÆˆą®•ą®³ąÆ" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ą®•ąÆ‹ą®ŖąÆą®ŖąÆ" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{ą®Žą®£ąÆą®£ą®æą®•ąÆą®•ąÆˆ} ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®•ą®³ąÆ" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index be19d3c7f33..885b8e84a2c 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ą®ŖąÆ†ą®Æą®°ąÆ" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®±ąÆˆ" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{ą®Žą®£ąÆą®£ą®æą®•ąÆą®•ąÆˆ} ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®±ąÆˆą®•ą®³ąÆ" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ą®•ąÆ‹ą®ŖąÆą®ŖąÆ" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{ą®Žą®£ąÆą®£ą®æą®•ąÆą®•ąÆˆ} ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®•ą®³ąÆ" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 04ffdaacb5e..6e3983c95c4 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ą®šąÆ†ą®Æą®²ą®æ ą®šąÆ‡ą®®ą®æą®ŖąÆą®Ŗą®æą®²ą®æą®°ąÆą®ØąÆą®¤ąÆ ą®Ŗą®ŸąÆą®Ÿą®æą®Æą®²ąÆˆ ą®ą®±ąÆą®±ą®®ąÆą®Ÿą®æą®Æą®¾ą®¤ąÆą®³ąÆą®³ą®¤ąÆ" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "ą®…ą®¤ąÆą®¤ą®¾ą®ŸąÆą®šą®æą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ą®²ą®æą®²ąÆ வஓு" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "குஓு ą®ą®±ąÆą®•ą®©ą®µąÆ‡ ą®‰ą®³ąÆą®³ą®¤ąÆ" @@ -46,10 +55,6 @@ msgstr "ą®šąÆ†ą®²ąÆą®²ąÆą®Ŗą®Ÿą®æą®Æą®±ąÆą®± ą®®ą®æą®©ąÆą®©ą®žąÆą®šą®²ąÆ" msgid "Unable to delete group" msgstr "ą®•ąÆą®“ąÆą®µąÆˆ ą®ØąÆ€ą®•ąÆą®• முடியாது" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "ą®…ą®¤ąÆą®¤ą®¾ą®ŸąÆą®šą®æą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ą®²ą®æą®²ąÆ வஓு" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "பயனாளரை ą®ØąÆ€ą®•ąÆą®• முடியாது" @@ -112,7 +117,7 @@ msgstr "வஓு" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ą®‡ą®Æą®²ąÆą®®ąÆˆą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ąÆą®•" @@ -189,67 +194,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆ" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆ ą®®ą®¾ą®±ąÆą®±ą®ŖąÆą®Ŗą®ŸąÆą®ŸąÆą®³ąÆą®³ą®¤ąÆ" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆą®²ąÆˆ ą®®ą®¾ą®±ąÆą®±ą®®ąÆą®Ÿą®æą®Æą®¾ą®¤ąÆ" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ą®¤ą®±ąÆą®ŖąÆ‹ą®¤ąÆˆą®Æ ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆ" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "புதிய ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "ą®•ą®¾ą®ŸąÆą®ŸąÆ" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆą®²ąÆˆ ą®®ą®¾ą®±ąÆą®±ąÆą®•" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ą®®ą®æą®©ąÆą®©ą®žąÆą®šą®²ąÆ" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ ą®®ą®æą®©ąÆą®©ą®žąÆą®šą®²ąÆ முகவரி" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆ ą®®ąÆ€ą®³ąÆ ą®ŖąÆ†ą®±ąÆą®µą®¤ąÆˆ ą®‡ą®Æą®²ąÆą®®ąÆˆą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ąÆą®µą®¤ą®±ąÆą®•ąÆ ą®®ą®æą®©ąÆą®©ą®žąÆą®šą®²ąÆ ą®®ąÆą®•ą®µą®°ą®æą®ÆąÆˆ ą®‡ą®Æą®²ąÆą®®ąÆˆą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ąÆą®•" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "மொஓி" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ą®®ąÆ†ą®¾ą®“ą®æą®ŖąÆ†ą®Æą®°ąÆą®•ąÆą®• உதவி" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" @@ -570,6 +570,10 @@ msgstr "" msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 34bc7000c62..82ec8fdc4c0 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7a06b3ede0a..4065f83e88e 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 84e3ca4e992..70f6f01fe7e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 5de56c72e91..fdaa852edca 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 206be07e682..bf75a1b15d4 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,31 +17,35 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 94a37a83d03..c15d3679e26 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 69d33a082d0..d9cae265edb 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,27 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: app.php:312 +#: app.php:313 msgid "Help" msgstr "" -#: app.php:319 +#: app.php:320 msgid "Personal" msgstr "" -#: app.php:324 +#: app.php:325 msgid "Settings" msgstr "" -#: app.php:329 +#: app.php:330 msgid "Users" msgstr "" -#: app.php:336 +#: app.php:337 msgid "Apps" msgstr "" -#: app.php:338 +#: app.php:339 msgid "Admin" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 40c9c5deb2c..bd244208d59 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -217,39 +222,55 @@ msgstr "" msgid "Change password" msgstr "" -#: templates/personal.php:38 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:46 templates/personal.php:47 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:57 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:59 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:68 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:70 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 9690e764a5c..af5e2100c2e 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index e890f708a24..967a5a57f61 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 03:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -572,6 +572,10 @@ msgstr "ąøˆąø³ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™" msgid "Log in" msgstr "ą¹€ąø‚ą¹‰ąø²ąøŖąø¹ą¹ˆąø£ąø°ąøšąøš" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ąøą¹ˆąø­ąø™ąø«ąø™ą¹‰ąø²" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 2ea3d92a701..5b83ba04bac 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:04+0100\n" -"PO-Revision-Date: 2013-02-03 03:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,11 +70,15 @@ msgstr "ą¹„ąøŸąø„ą¹Œ" msgid "Unshare" msgstr "ąø¢ąøą¹€ąø„ąø“ąøąøąø²ąø£ą¹ąøŠąø£ą¹Œąø‚ą¹‰ąø­ąø”ąø¹ąø„" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "คบ" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ąøŠąø·ą¹ˆąø­" @@ -179,31 +183,31 @@ msgstr "URL ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ą¹€ąø§ą¹‰ąø™ąø§ą¹ˆąø²ąø‡ą¹„ąø”ą¹‰" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ąøŠąø·ą¹ˆąø­ą¹‚ąøŸąø„ą¹€ąø”ąø­ąø£ą¹Œą¹„ąø”ą¹ˆąø–ąø¹ąøąø•ą¹‰ąø­ąø‡ ąøąø²ąø£ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ 'แชร์' ąøŖąø‡ąø§ąø™ą¹„ąø§ą¹‰ąøŖąø³ąø«ąø£ąø±ąøš Owncloud ą¹€ąø—ą¹ˆąø²ąø™ąø±ą¹‰ąø™" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "ชื่อ" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "ขนาด" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "ąø›ąø£ąø±ąøšąø›ąø£ąøøąø‡ąø„ą¹ˆąø²ąøŖąøøąø”" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 ą¹‚ąøŸąø„ą¹€ąø”ąø­ąø£ą¹Œ" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} ą¹‚ąøŸąø„ą¹€ąø”ąø­ąø£ą¹Œ" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 ą¹„ąøŸąø„ą¹Œ" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} ą¹„ąøŸąø„ą¹Œ" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 86d6b648284..0232d63d0bc 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,31 +18,35 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "ąø”ąø³ą¹€ąø™ąø“ąø™ąøąø²ąø£ąø„ąø·ąø™ąø„ą¹ˆąø²" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "ชื่อ" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "ąø„ąøšą¹ąø„ą¹‰ąø§" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 ą¹‚ąøŸąø„ą¹€ąø”ąø­ąø£ą¹Œ" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} ą¹‚ąøŸąø„ą¹€ąø”ąø­ąø£ą¹Œ" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 ą¹„ąøŸąø„ą¹Œ" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} ą¹„ąøŸąø„ą¹Œ" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 21602086ef1..a04a575b536 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 03:30+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ą¹‚ąø«ąø„ąø”ąø£ąø²ąø¢ąøąø²ąø£ąøˆąø²ąø App Store ได้" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "ą¹€ąøąø“ąø”ąø‚ą¹‰ąø­ąøœąø“ąø”ąøžąø„ąø²ąø”ą¹€ąøąøµą¹ˆąø¢ąø§ąøąø±ąøšąøŖąø“ąø—ąø˜ąø“ą¹Œąøąø²ąø£ą¹€ąø‚ą¹‰ąø²ą¹ƒąøŠą¹‰ąø‡ąø²ąø™" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ąø”ąøµąøąø„ąøøą¹ˆąø”ąø”ąø±ąø‡ąøąø„ą¹ˆąø²ąø§ąø­ąø¢ąø¹ą¹ˆą¹ƒąø™ąø£ąø°ąøšąøšąø­ąø¢ąø¹ą¹ˆą¹ąø„ą¹‰ąø§" @@ -48,10 +57,6 @@ msgstr "ąø­ąøµą¹€ąø”ąø„ą¹„ąø”ą¹ˆąø–ąø¹ąøąø•ą¹‰ąø­ąø‡" msgid "Unable to delete group" msgstr "ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ąø„ąøšąøąø„ąøøą¹ˆąø”ą¹„ąø”ą¹‰" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "ą¹€ąøąø“ąø”ąø‚ą¹‰ąø­ąøœąø“ąø”ąøžąø„ąø²ąø”ą¹€ąøąøµą¹ˆąø¢ąø§ąøąø±ąøšąøŖąø“ąø—ąø˜ąø“ą¹Œąøąø²ąø£ą¹€ąø‚ą¹‰ąø²ą¹ƒąøŠą¹‰ąø‡ąø²ąø™" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ąø„ąøšąøœąø¹ą¹‰ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ą¹„ąø”ą¹‰" @@ -114,7 +119,7 @@ msgstr "ąø‚ą¹‰ąø­ąøœąø“ąø”ąøžąø„ąø²ąø”" msgid "Updated" msgstr "ąø­ąø±ąøžą¹€ąø”ąø—ą¹ąø„ą¹‰ąø§" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ąøąø³ąø„ąø±ąø‡ąøšąø±ąø™ąø—ąø¶ąøøąøąø‚ą¹‰ąø­ąø”ąø¹ąø„..." @@ -191,67 +196,83 @@ msgstr "ąø”ąø²ąø§ąø™ą¹Œą¹‚ąø«ąø„ąø”ą¹‚ąø›ąø£ą¹ąøąø£ąø”ą¹„ąø„ąø„ą¹€ąø­ąø™ąø•ą¹Œ msgid "Download iOS Client" msgstr "ąø”ąø²ąø§ąø™ą¹Œą¹‚ąø«ąø„ąø”ą¹‚ąø›ąø£ą¹ąøąø£ąø”ą¹„ąø„ąø„ą¹€ąø­ąø™ąø•ą¹ŒąøŖąø³ąø«ąø£ąø±ąøš iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ąø‚ąø­ąø‡ąø„ąøøąø“ąø–ąø¹ąøą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ą¹ąø„ą¹‰ąø§" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ąø‚ąø­ąø‡ąø„ąøøąø“ą¹„ąø”ą¹‰" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ąø›ąø±ąøˆąøˆąøøąøšąø±ąø™" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ą¹ƒąø«ąø”ą¹ˆ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "แสดง" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "ąøŠąø·ą¹ˆąø­ąø—ąøµą¹ˆąø•ą¹‰ąø­ąø‡ąøąø²ąø£ą¹ąøŖąø”ąø‡" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "ąø­ąøµą¹€ąø”ąø„ą¹Œ" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ąø—ąøµą¹ˆąø­ąø¢ąø¹ą¹ˆąø­ąøµą¹€ąø”ąø„ą¹Œąø‚ąø­ąø‡ąø„ąøøąø“" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "ąøąø£ąø­ąøąø—ąøµą¹ˆąø­ąø¢ąø¹ą¹ˆąø­ąøµą¹€ąø”ąø„ą¹Œąø‚ąø­ąø‡ąø„ąøøąø“ą¹€ąøžąø·ą¹ˆąø­ą¹€ąø›ąø“ąø”ą¹ƒąø«ą¹‰ąø”ąøµąøąø²ąø£ąøąø¹ą¹‰ąø„ąø·ąø™ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ą¹„ąø”ą¹‰" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "ąøŠą¹ˆąø§ąø¢ąøąø±ąø™ą¹ąø›ąø„" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ą¹ƒąøŠą¹‰ąø—ąøµą¹ˆąø­ąø¢ąø¹ą¹ˆąø™ąøµą¹‰ą¹€ąøžąø·ą¹ˆąø­ą¹€ąøŠąø·ą¹ˆąø­ąø”ąø•ą¹ˆąø­ąøąø±ąøš ownCloud ą¹ƒąø™ą¹‚ąø›ąø£ą¹ąøąø£ąø”ąøˆąø±ąø”ąøąø²ąø£ą¹„ąøŸąø„ą¹Œąø‚ąø­ąø‡ąø„ąøøąø“" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ąø£ąøøą¹ˆąø™" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "Aralık" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "saniye ƶnce" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 dakika ƶnce" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} dakika ƶnce" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 saat ƶnce" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} saat ƶnce" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "bugün" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "dün" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} gün ƶnce" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "geƧen ay" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} ay ƶnce" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "ay ƶnce" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "geƧen yıl" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "yıl ƶnce" @@ -567,14 +567,18 @@ msgstr "Hesabınızı korumak iƧin lütfen parolanızı değiştirin." msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "hatırla" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Giriş yap" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "ƶnceki" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 322d36729b4..b02309d9941 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -23,46 +23,46 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Bir hata yok, dosya başarıyla yüklendi" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenen dosya HTML formundaki MAX_FILE_SIZE sınırını aşıyor" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Yüklenen dosyanın sadece bir kısmı yüklendi" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "HiƧ dosya yüklenmedi" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "GeƧici bir klasƶr eksik" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "GeƧersiz dizin." @@ -74,11 +74,15 @@ msgstr "Dosyalar" msgid "Unshare" msgstr "Paylaşılmayan" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Sil" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "İsim değiştir." @@ -183,31 +187,31 @@ msgstr "URL boş olamaz." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "GeƧersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ad" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Boyut" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 dosya" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} dosya" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index e987986453c..af04cb45496 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "İsim" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 dizin" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} dizin" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 dosya" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} dosya" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 15b5cc3f9e8..0b51576c5a3 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "App Store'dan liste yüklenemiyor" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Eşleşme hata" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Grup zaten mevcut" @@ -49,10 +58,6 @@ msgstr "GeƧersiz eposta" msgid "Unable to delete group" msgstr "Grup silinemiyor" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Eşleşme hata" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "Kullanıcı silinemiyor" @@ -115,7 +120,7 @@ msgstr "Hata" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Kaydediliyor..." @@ -192,67 +197,83 @@ msgstr "Android İstemcisini İndir" msgid "Download iOS Client" msgstr "iOS İstemcisini İndir" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Parola" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Şifreniz değiştirildi" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "gƶster" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Eposta" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Eposta adresiniz" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Parola sıfırlamayı aktifleştirmek iƧin eposta adresi girin" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Dil" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Ƈevirilere yardım edin" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Sürüm" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "Š“Ń€ŃƒŠ“ŠµŠ½ŃŒ" msgid "Settings" msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "секунГи Ń‚Š¾Š¼Ńƒ" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 Ń…Š²ŠøŠ»ŠøŠ½Ńƒ Ń‚Š¾Š¼Ńƒ" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин Ń‚Š¾Š¼Ńƒ" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 гоГину Ń‚Š¾Š¼Ńƒ" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} гоГини Ń‚Š¾Š¼Ńƒ" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "ŃŃŒŠ¾Š³Š¾Š“Š½Ń–" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "вчора" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} Гнів Ń‚Š¾Š¼Ńƒ" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "минулого Š¼Ń–ŃŃŃ†Ń" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} Š¼Ń–ŃŃŃ†Ń–Š² Ń‚Š¾Š¼Ńƒ" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "Š¼Ń–ŃŃŃ†Ń– Ń‚Š¾Š¼Ńƒ" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "минулого Ń€Š¾ŠŗŃƒ" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "роки Ń‚Š¾Š¼Ńƒ" @@ -567,14 +567,18 @@ msgstr "Š‘ŃƒŠ“ŃŒ ласка, Š·Š¼Ń–Š½Ń–Ń‚ŃŒ свій ŠæŠ°Ń€Š¾Š»ŃŒ, щоб зно msgid "Lost your password?" msgstr "Š—Š°Š±ŃƒŠ»Šø ŠæŠ°Ń€Š¾Š»ŃŒ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "запам'ŃŃ‚Š°Ń‚Šø" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Š’Ń…Ń–Š“" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "попереГній" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 97c4a8121ed..021cefdc45f 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -20,46 +20,46 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ŠŠµ завантажено жоГного Ń„Š°Š¹Š»Ńƒ. ŠŠµŠ²Ń–Š“Š¾Š¼Š° помилка" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "Файл ŃƒŃŠæŃ–ŃˆŠ½Š¾ вивантажено без помилок." -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір Š·Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń ŠæŠµŃ€ŠµŠ²ŠøŃ‰ŃƒŃ” upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір віГвантаженого Ń„Š°Š¹Š»Ńƒ ŠæŠµŃ€ŠµŠ²ŠøŃ‰ŃƒŃ” Š“ŠøŃ€ŠµŠŗŃ‚ŠøŠ²Ńƒ MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Файл віГвантажено лише частково" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ŠŠµ віГвантажено жоГного Ń„Š°Š¹Š»Ńƒ" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "Š’Ń–Š“ŃŃƒŃ‚Š½Ń–Š¹ тимчасовий каталог" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "ŠŠµŠ²Š“Š°Š»Š¾ŃŃ записати на Гиск" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -71,11 +71,15 @@ msgstr "Файли" msgid "Unshare" msgstr "Заборонити Š“Š¾ŃŃ‚ŃƒŠæ" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "ВиГалити" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "ŠŸŠµŃ€ŠµŠ¹Š¼ŠµŠ½ŃƒŠ²Š°Ń‚Šø" @@ -180,31 +184,31 @@ msgstr "URL не може Š±ŃƒŃ‚Šø ŠæŃƒŃŃ‚ŠøŠ¼." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "Ім'я" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "Розмір" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Змінено" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 папка" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 файл" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} файлів" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 7e9614c45d4..299cd809b97 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "Ім'я" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 папка" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} папок" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 файл" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} файлів" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bfce5870201..7d6f148c4e1 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ завантажити список Š· App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Помилка автентифікації" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Š“Ń€ŃƒŠæŠ° вже Ń–ŃŠ½ŃƒŃ”" @@ -48,10 +57,6 @@ msgstr "ŠŠµŠ²Ń–Ń€Š½Š° аГреса" msgid "Unable to delete group" msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ виГалити Š³Ń€ŃƒŠæŃƒ" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Помилка автентифікації" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ виГалити ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š°" @@ -114,7 +119,7 @@ msgstr "Помилка" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Š—Š±ŠµŃ€Ń–Š³Š°ŃŽ..." @@ -191,67 +196,83 @@ msgstr "Завантажити клієнт Š“Š»Ń Android" msgid "Download iOS Client" msgstr "Завантажити клієнт Š“Š»Ń iOS" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "ŠŸŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Š’Š°Ńˆ ŠæŠ°Ń€Š¾Š»ŃŒ змінено" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ змінити Š’Š°Ńˆ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ŠŸŠ¾Ń‚Š¾Ń‡Š½ŠøŠ¹ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "ŠŠ¾Š²ŠøŠ¹ ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "показати" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Змінити ŠæŠ°Ń€Š¾Š»ŃŒ" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Ел.ŠæŠ¾ŃˆŃ‚Š°" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Š’Š°ŃˆŠ° аГреса електронної ŠæŠ¾ŃˆŃ‚Šø" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Š’Š²ŠµŠ“Ń–Ń‚ŃŒ Š°Š“Ń€ŠµŃŃƒ електронної ŠæŠ¾ŃˆŃ‚Šø Š“Š»Ń Š²Ń–Š“Š½Š¾Š²Š»ŠµŠ½Š½Ń ŠæŠ°Ń€Š¾Š»ŃŽ" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "Мова" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Допомогти Š· переклаГом" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŠ¹Ń‚Šµ цю Š°Š“Ń€ŠµŃŃƒ Š“Š»Ń піГ'Ń”Š“Š½Š°Š½Š½Ń Го вашого ownCloud у вашому Ń„Š°Š¹Š»Š¾Š²Š¾Š¼Ńƒ менеГжері" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "Š’ŠµŃ€ŃŃ–Ń" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -164,55 +164,55 @@ msgstr "ThĆ”ng 12" msgid "Settings" msgstr "CĆ i đặt" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "vĆ i giĆ¢y trước" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 phĆŗt trước" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} phĆŗt trước" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 giį» trước" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} giį» trước" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "hĆ“m nay" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "hĆ“m qua" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} ngĆ y trước" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "thĆ”ng trước" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} thĆ”ng trước" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "thĆ”ng trước" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "năm trước" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "năm trước" @@ -567,14 +567,18 @@ msgstr "Vui lòng thay đổi mįŗ­t khįŗ©u cį»§a bįŗ”n Ä‘į»ƒ đảm bįŗ£o tĆ i k msgid "Lost your password?" msgstr "Bįŗ”n quĆŖn mįŗ­t khįŗ©u ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "ghi nhį»›" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "Đăng nhįŗ­p" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "Lùi lįŗ”i" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 44b47a64cd2..609e4ff5904 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,46 +21,46 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "KhĆ“ng có tįŗ­p tin nĆ o được tįŗ£i lĆŖn. Lį»—i khĆ“ng xĆ”c định" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "KhĆ“ng có lį»—i, cĆ”c tįŗ­p tin đã được tįŗ£i lĆŖn thĆ nh cĆ“ng" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "KĆ­ch thước những tįŗ­p tin tįŗ£i lĆŖn vượt quĆ” MAX_FILE_SIZE đã được quy định" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "Tįŗ­p tin tįŗ£i lĆŖn mį»›i chỉ tįŗ£i lĆŖn được mį»™t phįŗ§n" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "KhĆ“ng có tįŗ­p tin nĆ o được tįŗ£i lĆŖn" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "KhĆ“ng tƬm thįŗ„y thʰ mỄc tįŗ”m" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "KhĆ“ng thể ghi " -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -72,11 +72,15 @@ msgstr "Tįŗ­p tin" msgid "Unshare" msgstr "KhĆ“ng chia sįŗ½" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "Xóa" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "Sį»­a tĆŖn" @@ -181,31 +185,31 @@ msgstr "URL khĆ“ng được Ä‘į»ƒ trống." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "TĆŖn" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "KĆ­ch cį»”" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 thʰ mỄc" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} thʰ mỄc" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 tįŗ­p tin" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} tįŗ­p tin" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 696681bd68a..4882b64008b 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "TĆŖn" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 thʰ mỄc" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} thʰ mỄc" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 tįŗ­p tin" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} tįŗ­p tin" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index d7a5c629f52..a8cdfa2fbb9 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "KhĆ“ng thể tįŗ£i danh sĆ”ch ứng dỄng từ App Store" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "Lį»—i xĆ”c thį»±c" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "Nhóm đã tồn tįŗ”i" @@ -51,10 +60,6 @@ msgstr "Email khĆ“ng hợp lệ" msgid "Unable to delete group" msgstr "KhĆ“ng thể xóa nhóm" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "Lį»—i xĆ”c thį»±c" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "KhĆ“ng thể xóa ngĘ°į»i dùng" @@ -117,7 +122,7 @@ msgstr "Lį»—i" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "Đang tiįŗæn hĆ nh lʰu ..." @@ -194,67 +199,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "Mįŗ­t khįŗ©u" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "Mįŗ­t khįŗ©u cį»§a bįŗ”n đã được thay đổi." -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "KhĆ“ng thể đổi mįŗ­t khįŗ©u" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "Mįŗ­t khįŗ©u cÅ©" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "Mįŗ­t khįŗ©u mį»›i " -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "Hiện" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "Đổi mįŗ­t khįŗ©u" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "Email cį»§a bįŗ”n" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "Nhįŗ­p địa chỉ email cį»§a bįŗ”n Ä‘į»ƒ khĆ“i phỄc lįŗ”i mįŗ­t khįŗ©u" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "NgĆ“n ngữ" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "Hį»— trợ dịch thuįŗ­t" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -161,55 +161,55 @@ msgstr "åäŗŒęœˆ" msgid "Settings" msgstr "设置" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "ē§’å‰" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "今天" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "昨天" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "上个月" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "ęœˆå‰" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "去幓" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "幓前" @@ -564,14 +564,18 @@ msgstr "čÆ·äæ®ę”¹ę‚Øēš„åÆ†ē ä»„äæęŠ¤č“¦ęˆ·ć€‚" msgid "Lost your password?" msgstr "åæ˜č®°åÆ†ē ?" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "å¤‡åæ˜" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "登陆" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "后退" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 71d9b048220..31b335db11b 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,46 +19,46 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ę²”ęœ‰äøŠä¼ ę–‡ä»¶ć€‚ęœŖēŸ„é”™čÆÆ" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ę²”ęœ‰ä»»ä½•é”™čÆÆ,ę–‡ä»¶äøŠä¼ ęˆåŠŸäŗ†" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "äøŠä¼ ēš„ę–‡ä»¶č¶…čæ‡äŗ†HTMLč”Øå•ęŒ‡å®šēš„MAX_FILE_SIZE" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "ę–‡ä»¶åŖęœ‰éƒØåˆ†č¢«äøŠä¼ " -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ę²”ęœ‰äøŠä¼ å®Œęˆēš„ę–‡ä»¶" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "丢失了一个专时文件夹" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "å†™ē£ē›˜å¤±č“„" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -70,11 +70,15 @@ msgstr "ꖇ件" msgid "Unshare" msgstr "å–ę¶ˆå…±äŗ«" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "删除" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "重命名" @@ -179,31 +183,31 @@ msgstr "ē½‘å€äøčƒ½äøŗē©ŗć€‚" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "名字" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "äæ®ę”¹ę—„ęœŸ" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 个文件" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 722b4a5f8cb..9add0d0faa9 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "åē§°" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 个文件夹" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 个文件" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 6aa5df48618..3335b000123 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "äøčƒ½ä»ŽApp Store äø­åŠ č½½åˆ—č”Ø" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "认证错误" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ē¾¤ē»„å·²å­˜åœØ" @@ -47,10 +56,6 @@ msgstr "éžę³•Email" msgid "Unable to delete group" msgstr "ęœŖčƒ½åˆ é™¤ē¾¤ē»„" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "认证错误" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ęœŖčƒ½åˆ é™¤ē”Øęˆ·" @@ -113,7 +118,7 @@ msgstr "出错" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "äæå­˜äø­..." @@ -190,67 +195,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "密码" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ę‚Øēš„åÆ†ē ä»„å˜ę›“" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "äøčƒ½ę”¹å˜ä½ ēš„åÆ†ē " -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ēŽ°åœØēš„åÆ†ē " -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新密码" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "展示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "ę”¹å˜åÆ†ē " -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "Email" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ä½ ēš„email地址" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "č¾“å…„äø€äøŖé‚®ē®±åœ°å€ä»„ęæ€ę“»åÆ†ē ę¢å¤åŠŸčƒ½" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "语言" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "åø®åŠ©ēæ»čÆ‘" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -165,55 +165,55 @@ msgstr "åäŗŒęœˆ" msgid "Settings" msgstr "设置" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "ē§’å‰" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "äø€åˆ†é’Ÿå‰" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1å°ę—¶å‰" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} å°ę—¶å‰" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "今天" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "昨天" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "上月" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} ęœˆå‰" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "ęœˆå‰" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "去幓" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "幓前" @@ -568,14 +568,18 @@ msgstr "čÆ·äæ®ę”¹ę‚Øēš„åÆ†ē ļ¼Œä»„äæęŠ¤ę‚Øēš„č“¦ęˆ·å®‰å…Øć€‚" msgid "Lost your password?" msgstr "åæ˜č®°åÆ†ē ļ¼Ÿ" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "č®°ä½" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "登录" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "äøŠäø€é”µ" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index b52527396da..1f00755a809 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2013-01-31 16:20+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -24,46 +24,46 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ę²”ęœ‰ę–‡ä»¶č¢«äøŠä¼ ć€‚ęœŖēŸ„é”™čÆÆ" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ę²”ęœ‰å‘ē”Ÿé”™čÆÆļ¼Œę–‡ä»¶äøŠä¼ ęˆåŠŸć€‚" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "äøŠä¼ ę–‡ä»¶å¤§å°å·²č¶…čæ‡php.iniäø­upload_max_filesizeę‰€č§„å®šēš„å€¼" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "äøŠä¼ ēš„ę–‡ä»¶č¶…čæ‡äŗ†åœØHTML č”Øå•äø­ęŒ‡å®šēš„MAX_FILE_SIZE" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "åŖäøŠä¼ äŗ†ę–‡ä»¶ēš„äø€éƒØåˆ†" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ę–‡ä»¶ę²”ęœ‰äøŠä¼ " -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "缺少专时目录" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "å†™å…„ē£ē›˜å¤±č“„" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "ę²”ęœ‰č¶³å¤ŸåÆē”Øē©ŗé—“" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ę— ę•ˆę–‡ä»¶å¤¹ć€‚" @@ -75,11 +75,15 @@ msgstr "ꖇ件" msgid "Unshare" msgstr "å–ę¶ˆåˆ†äŗ«" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "删除" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "重命名" @@ -184,31 +188,31 @@ msgstr "URLäøčƒ½äøŗē©ŗ" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ę— ę•ˆę–‡ä»¶å¤¹åć€‚'共享' 是 Owncloud é¢„ē•™ēš„ę–‡ä»¶å¤¹åć€‚" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "åē§°" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "äæ®ę”¹ę—„ęœŸ" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 个文件" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 71b559d7bac..151921754f6 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "åē§°" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1个文件夹" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 个文件" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 123e52ea0ab..51c13db8795 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ę— ę³•ä»Žåŗ”ē”Øå•†åŗ—č½½å…„åˆ—č”Ø" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "认证错误" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "å·²å­˜åœØčÆ„ē»„" @@ -51,10 +60,6 @@ msgstr "ę— ę•ˆēš„ē”µå­é‚®ä»¶" msgid "Unable to delete group" msgstr "ę— ę³•åˆ é™¤ē»„" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "认证错误" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ę— ę³•åˆ é™¤ē”Øęˆ·" @@ -117,7 +122,7 @@ msgstr "错误" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "ę­£åœØäæå­˜" @@ -194,67 +199,83 @@ msgstr "äø‹č½½ Android 客户端" msgid "Download iOS Client" msgstr "äø‹č½½ iOS 客户端" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "密码" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "å½“å‰åÆ†ē " -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新密码" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "显示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ę‚Øēš„ē”µå­é‚®ä»¶" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "å”«å†™ē”µå­é‚®ä»¶åœ°å€ä»„åÆē”ØåÆ†ē ę¢å¤åŠŸčƒ½" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "语言" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "åø®åŠ©ēæ»čÆ‘" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ē”ØčÆ„åœ°å€ę„čæžęŽ„ę–‡ä»¶ē®”ē†å™Øäø­ēš„ ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ē‰ˆęœ¬" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -156,59 +156,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 templates/layout.user.php:47 templates/layout.user.php:48 +#: js/js.js:280 msgid "Settings" msgstr "" -#: js/js.js:762 +#: js/js.js:760 msgid "seconds ago" msgstr "" -#: js/js.js:763 +#: js/js.js:761 msgid "1 minute ago" msgstr "" -#: js/js.js:764 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:765 +#: js/js.js:763 msgid "1 hour ago" msgstr "" -#: js/js.js:766 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "" -#: js/js.js:767 +#: js/js.js:765 msgid "today" msgstr "" -#: js/js.js:768 +#: js/js.js:766 msgid "yesterday" msgstr "" -#: js/js.js:769 +#: js/js.js:767 msgid "{days} days ago" msgstr "" -#: js/js.js:770 +#: js/js.js:768 msgid "last month" msgstr "" -#: js/js.js:771 +#: js/js.js:769 msgid "{months} months ago" msgstr "" -#: js/js.js:772 +#: js/js.js:770 msgid "months ago" msgstr "" -#: js/js.js:773 +#: js/js.js:771 msgid "last year" msgstr "" -#: js/js.js:774 +#: js/js.js:772 msgid "years ago" msgstr "" @@ -541,7 +541,7 @@ msgstr "" msgid "web services under your control" msgstr "" -#: templates/layout.user.php:32 +#: templates/layout.user.php:49 msgid "Log out" msgstr "" @@ -563,14 +563,18 @@ msgstr "" msgid "Lost your password?" msgstr "" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 3a61b47c5ad..3679a52e341 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 16:02+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,46 +17,46 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -68,11 +68,15 @@ msgstr "" msgid "Unshare" msgstr "" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "" @@ -177,31 +181,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 694862fdd6b..61f53da0ef3 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 58568a1c6e0..e9501109c5a 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" @@ -45,10 +54,6 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "" @@ -111,7 +116,7 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "" @@ -188,67 +193,83 @@ msgstr "" msgid "Download iOS Client" msgstr "" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,55 +164,55 @@ msgstr "åäŗŒęœˆ" msgid "Settings" msgstr "設定" -#: js/js.js:759 +#: js/js.js:760 msgid "seconds ago" msgstr "å¹¾ē§’å‰" -#: js/js.js:760 +#: js/js.js:761 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:761 +#: js/js.js:762 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:762 +#: js/js.js:763 msgid "1 hour ago" msgstr "1 å€‹å°ę™‚å‰" -#: js/js.js:763 +#: js/js.js:764 msgid "{hours} hours ago" msgstr "{hours} å°ę™‚å‰" -#: js/js.js:764 +#: js/js.js:765 msgid "today" msgstr "今天" -#: js/js.js:765 +#: js/js.js:766 msgid "yesterday" msgstr "昨天" -#: js/js.js:766 +#: js/js.js:767 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:767 +#: js/js.js:768 msgid "last month" msgstr "äøŠå€‹ęœˆ" -#: js/js.js:768 +#: js/js.js:769 msgid "{months} months ago" msgstr "{months} å€‹ęœˆå‰" -#: js/js.js:769 +#: js/js.js:770 msgid "months ago" msgstr "å¹¾å€‹ęœˆå‰" -#: js/js.js:770 +#: js/js.js:771 msgid "last year" msgstr "去幓" -#: js/js.js:771 +#: js/js.js:772 msgid "years ago" msgstr "幾幓前" @@ -567,14 +567,18 @@ msgstr "č«‹ę›“ę”¹ę‚Øēš„åÆ†ē¢¼ä»„å†ę¬”å–å¾—ę‚Øēš„åø³ęˆ¶ēš„ęŽ§åˆ¶ę¬Šć€‚" msgid "Lost your password?" msgstr "åæ˜čØ˜åÆ†ē¢¼ļ¼Ÿ" -#: templates/login.php:39 +#: templates/login.php:41 msgid "remember" msgstr "čØ˜ä½" -#: templates/login.php:41 +#: templates/login.php:43 msgid "Log in" msgstr "登兄" +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "äøŠäø€é " diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 5775c873fa0..0db332c7219 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 13:40+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,46 +23,46 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/upload.php:17 +#: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ę²’ęœ‰ęŖ”ę”ˆč¢«äøŠå‚³ć€‚ęœŖēŸ„ēš„éŒÆčŖ¤ć€‚" -#: ajax/upload.php:24 +#: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" msgstr "ē„”éŒÆčŖ¤ļ¼ŒęŖ”ę”ˆäøŠå‚³ęˆåŠŸ" -#: ajax/upload.php:25 +#: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "äøŠå‚³ēš„ęŖ”ę”ˆå¤§å°č¶…éŽ php.ini ē•¶äø­ upload_max_filesize åƒę•øēš„čØ­å®šļ¼š" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "äøŠå‚³ēš„ęŖ”ę”ˆå¤§å°č¶…éŽ HTML 蔨單中 MAX_FILE_SIZE ēš„é™åˆ¶" -#: ajax/upload.php:29 +#: ajax/upload.php:31 msgid "The uploaded file was only partially uploaded" msgstr "åŖęœ‰ęŖ”ę”ˆēš„äø€éƒØåˆ†č¢«äøŠå‚³" -#: ajax/upload.php:30 +#: ajax/upload.php:32 msgid "No file was uploaded" msgstr "ē„”å·²äøŠå‚³ęŖ”ę”ˆ" -#: ajax/upload.php:31 +#: ajax/upload.php:33 msgid "Missing a temporary folder" msgstr "éŗå¤±ęš«å­˜č³‡ę–™å¤¾" -#: ajax/upload.php:32 +#: ajax/upload.php:34 msgid "Failed to write to disk" msgstr "åÆ«å…„ē”¬ē¢Ÿå¤±ę•—" -#: ajax/upload.php:51 +#: ajax/upload.php:52 msgid "Not enough space available" msgstr "ę²’ęœ‰č¶³å¤ ēš„åÆē”Øē©ŗé–“" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ē„”ę•ˆēš„č³‡ę–™å¤¾ć€‚" @@ -74,11 +74,15 @@ msgstr "ęŖ”ę”ˆ" msgid "Unshare" msgstr "å–ę¶ˆå…±äŗ«" -#: js/fileactions.js:119 templates/index.php:91 templates/index.php:92 +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" msgstr "åˆŖé™¤" -#: js/fileactions.js:185 +#: js/fileactions.js:187 msgid "Rename" msgstr "é‡ę–°å‘½å" @@ -183,31 +187,31 @@ msgstr "URL äøčƒ½ē‚ŗē©ŗē™½." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ē„”ę•ˆēš„č³‡ę–™å¤¾åēØ±ļ¼Œ'Shared' ēš„ä½æē”Øč¢« Owncloud äæē•™" -#: js/files.js:949 templates/index.php:67 +#: js/files.js:953 templates/index.php:67 msgid "Name" msgstr "åēØ±" -#: js/files.js:950 templates/index.php:78 +#: js/files.js:954 templates/index.php:78 msgid "Size" msgstr "大小" -#: js/files.js:951 templates/index.php:80 +#: js/files.js:955 templates/index.php:80 msgid "Modified" msgstr "修改" -#: js/files.js:970 +#: js/files.js:974 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:972 +#: js/files.js:976 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:980 +#: js/files.js:984 msgid "1 file" msgstr "1 å€‹ęŖ”ę”ˆ" -#: js/files.js:982 +#: js/files.js:986 msgid "{count} files" msgstr "{count} å€‹ęŖ”ę”ˆ" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 212c2b01ff0..0f6d6a4b1fe 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 23:06+0000\n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:09+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -17,31 +17,35 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/trash.js:7 js/trash.js:69 +#: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" -#: js/trash.js:100 templates/index.php:17 +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 msgid "Name" msgstr "åēØ±" -#: js/trash.js:101 templates/index.php:27 +#: js/trash.js:126 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:110 +#: js/trash.js:135 msgid "1 folder" msgstr "1 個資料夾" -#: js/trash.js:112 +#: js/trash.js:137 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/trash.js:120 +#: js/trash.js:145 msgid "1 file" msgstr "1 å€‹ęŖ”ę”ˆ" -#: js/trash.js:122 +#: js/trash.js:147 msgid "{count} files" msgstr "{count} å€‹ęŖ”ę”ˆ" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 96601994d53..b1edf5e5393 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 06:00+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,6 +29,15 @@ msgstr "" msgid "Unable to load list from App Store" msgstr "ē„”ę³•å¾ž App Store č®€å–ęø…å–®" +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "čŖč­‰éŒÆčŖ¤" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + #: ajax/creategroup.php:10 msgid "Group already exists" msgstr "ē¾¤ēµ„å·²å­˜åœØ" @@ -53,10 +62,6 @@ msgstr "ē„”ę•ˆēš„email" msgid "Unable to delete group" msgstr "ē¾¤ēµ„åˆŖé™¤éŒÆčŖ¤" -#: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 -msgid "Authentication error" -msgstr "čŖč­‰éŒÆčŖ¤" - #: ajax/removeuser.php:24 msgid "Unable to delete user" msgstr "ä½æē”Øč€…åˆŖé™¤éŒÆčŖ¤" @@ -119,7 +124,7 @@ msgstr "錯誤" msgid "Updated" msgstr "已曓新" -#: js/personal.js:69 +#: js/personal.js:96 msgid "Saving..." msgstr "å„²å­˜äø­..." @@ -196,67 +201,83 @@ msgstr "下載 Android 客戶端" msgid "Download iOS Client" msgstr "下載 iOS 客戶端" -#: templates/personal.php:21 templates/users.php:23 templates/users.php:81 +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 msgid "Password" msgstr "密碼" -#: templates/personal.php:22 +#: templates/personal.php:24 msgid "Your password was changed" msgstr "ä½ ēš„åÆ†ē¢¼å·²ę›“ę”¹" -#: templates/personal.php:23 +#: templates/personal.php:25 msgid "Unable to change your password" msgstr "ē„”ę³•č®Šę›“ä½ ēš„åÆ†ē¢¼" -#: templates/personal.php:24 +#: templates/personal.php:26 msgid "Current password" msgstr "ē›®å‰åÆ†ē¢¼" -#: templates/personal.php:25 +#: templates/personal.php:27 msgid "New password" msgstr "新密碼" -#: templates/personal.php:26 +#: templates/personal.php:28 msgid "show" msgstr "锯示" -#: templates/personal.php:27 +#: templates/personal.php:29 msgid "Change password" msgstr "č®Šę›“åÆ†ē¢¼" -#: templates/personal.php:33 +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "é”Æē¤ŗåēØ±" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 msgid "Email" msgstr "電子郵件" -#: templates/personal.php:34 +#: templates/personal.php:56 msgid "Your email address" msgstr "ä½ ēš„é›»å­éƒµä»¶äæ”ē®±" -#: templates/personal.php:35 +#: templates/personal.php:57 msgid "Fill in an email address to enable password recovery" msgstr "č«‹å”«å…„é›»å­éƒµä»¶äæ”ē®±ä»„ä¾æå›žå¾©åÆ†ē¢¼" -#: templates/personal.php:41 templates/personal.php:42 +#: templates/personal.php:63 templates/personal.php:64 msgid "Language" msgstr "čŖžčØ€" -#: templates/personal.php:47 +#: templates/personal.php:69 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:52 +#: templates/personal.php:74 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:54 +#: templates/personal.php:76 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "åœØę‚Øēš„ęŖ”ę”ˆē®”ē†å“”äø­ä½æē”Øé€™å€‹åœ°å€ä¾†é€£ē·šåˆ° ownCloud" -#: templates/personal.php:63 +#: templates/personal.php:85 msgid "Version" msgstr "ē‰ˆęœ¬" -#: templates/personal.php:65 +#: templates/personal.php:87 msgid "" "Developed by the ownCloud community, the "Файлы Голжны Š±Ń‹Ń‚ŃŒ Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½Ń‹ по оГному.", "Back to Files" => "ŠŠ°Š·Š°Š“ Šŗ файлам", "Selected files too large to generate zip file." => "Выбранные файлы слишком велики, чтобы ŃŠ¾Š·Š“Š°Ń‚ŃŒ zip файл.", +"couldn't be determined" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ", "Application is not enabled" => "ŠŸŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŠµ не Ń€Š°Š·Ń€ŠµŃˆŠµŠ½Š¾", "Authentication error" => "ŠžŃˆŠøŠ±ŠŗŠ° Š°ŃƒŃ‚ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø", "Token expired. Please reload page." => "Токен просрочен. ŠŸŠµŃ€ŠµŠ·Š°Š³Ń€ŃƒŠ·ŠøŃ‚Šµ ŃŃ‚Ń€Š°Š½ŠøŃ†Ńƒ.", diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 402d91c48fe..499c237eb7b 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -1,12 +1,12 @@ "فؓل ŲŖŲ­Ł…ŁŠŁ„ القائمة من الآب ستور", +"Authentication error" => "لم ŁŠŲŖŁ… Ų§Ł„ŲŖŲ£ŁƒŲÆ من Ų§Ł„Ų“Ų®ŲµŁŠŲ© بنجاح", "Group already exists" => "Ų§Ł„Ł…Ų¬Ł…ŁˆŲ¹Ų© Ł…ŁˆŲ¬ŁˆŲÆŲ© مسبقاً", "Unable to add group" => "فؓل ؄ضافة Ų§Ł„Ł…Ų¬Ł…ŁˆŲ¹Ų©", "Could not enable app. " => "فؓل Ų¹Ł…Ł„ŁŠŲ© ŲŖŁŲ¹ŁŠŁ„ Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚", "Email saved" => "ŲŖŁ… حفظ Ų§Ł„ŲØŲ±ŁŠŲÆ Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠ", "Invalid email" => "Ų§Ł„ŲØŲ±ŁŠŲÆ Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠ غير صالح", "Unable to delete group" => "فؓل ؄زالة Ų§Ł„Ł…Ų¬Ł…ŁˆŲ¹Ų©", -"Authentication error" => "لم ŁŠŲŖŁ… Ų§Ł„ŲŖŲ£ŁƒŲÆ من Ų§Ł„Ų“Ų®ŲµŁŠŲ© بنجاح", "Unable to delete user" => "فؓل ؄زالة المستخدم", "Language changed" => "ŲŖŁ… تغيير اللغة", "Invalid request" => "Ų·Ł„ŲØŁƒ غير Ł…ŁŁ‡ŁˆŁ…", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 60ddcfdde6d..fc90036536a 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,12 +1,12 @@ "ą¦…ą§ą¦Æą¦¾ą¦Ŗą¦øą§ą¦Ÿą§‹ą¦° ঄েকে তালিকা লোঔ করতে ą¦øą¦•ą§ą¦·ą¦® নয়", +"Authentication error" => "অনুমোদন ঘটিত ą¦øą¦®ą¦øą§ą¦Æą¦¾", "Group already exists" => "ą¦—ą§‹ą¦·ą§ą¦ ą§€ą¦Ÿą¦æ ą¦Ŗą§‚ą¦°ą§ą¦¬ ঄েকেই ą¦¬ą¦æą¦¦ą§ą¦Æą¦®ą¦¾ą¦Ø", "Unable to add group" => "ą¦—ą§‹ą¦·ą§ą¦ ą§€ যোগ করা ą¦øą¦®ą§ą¦­ą¦¬ হলো না", "Could not enable app. " => "ą¦…ą§ą¦Æą¦Ŗą¦Ÿą¦æ ą¦øą¦•ą§ą¦°ą¦æą§Ÿ করতে ą¦øą¦•ą§ą¦·ą¦® ą¦Øą§Ÿą„¤", "Email saved" => "ই-মেইল ą¦øą¦‚ą¦°ą¦•ą§ą¦·ą¦Ø করা ą¦¹ą§Ÿą§‡ą¦›ą§‡", "Invalid email" => "ই-ą¦®ą§‡ą¦‡ą¦²ą¦Ÿą¦æ সঠিক নয়", "Unable to delete group" => "ą¦—ą§‹ą¦·ą§ą¦ ą§€ মুছে ফেলা ą¦øą¦®ą§ą¦­ą¦¬ হলো না ", -"Authentication error" => "অনুমোদন ঘটিত ą¦øą¦®ą¦øą§ą¦Æą¦¾", "Unable to delete user" => "ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦°ą¦•ą¦¾ą¦°ą§€ মুছে ফেলা ą¦øą¦®ą§ą¦­ą¦¬ হলো না ", "Language changed" => "ভাষা ą¦Ŗą¦°ą¦æą¦¬ą¦°ą§ą¦¤ą¦Ø করা ą¦¹ą§Ÿą§‡ą¦›ą§‡", "Invalid request" => "ą¦…ą¦Øą§ą¦°ą§‹ą¦§ą¦Ÿą¦æ য঄ায঄ নয়", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 40b19c3b1c3..e5df7b4ecde 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,12 +1,12 @@ "No s'ha pogut carregar la llista des de l'App Store", +"Authentication error" => "Error d'autenticació", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", "Could not enable app. " => "No s'ha pogut activar l'apliació", "Email saved" => "S'ha desat el correu electrònic", "Invalid email" => "El correu electrònic no Ć©s vĆ lid", "Unable to delete group" => "No es pot eliminar el grup", -"Authentication error" => "Error d'autenticació", "Unable to delete user" => "No es pot eliminar l'usuari", "Language changed" => "S'ha canviat l'idioma", "Invalid request" => "Sol.licitud no vĆ lida", @@ -48,6 +48,7 @@ "New password" => "Contrasenya nova", "show" => "mostra", "Change password" => "Canvia la contrasenya", +"Display Name" => "Nom a mostrar", "Email" => "Correu electrònic", "Your email address" => "Correu electrònic", "Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", @@ -63,7 +64,6 @@ "Default Storage" => "Emmagatzemament per defecte", "Unlimited" => "IlĀ·limitat", "Other" => "Un altre", -"Display Name" => "Nom a mostrar", "Group Admin" => "Grup Admin", "Storage" => "Emmagatzemament", "change display name" => "canvia el nom a mostrar", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index f1fd0b0b139..91c7c481158 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,12 +1,12 @@ "Nelze načƭst seznam z App Store", +"Authentication error" => "Chyba ověřenĆ­", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", "Could not enable app. " => "Nelze povolit aplikaci.", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", -"Authentication error" => "Chyba ověřenĆ­", "Unable to delete user" => "Nelze smazat uživatele", "Language changed" => "Jazyk byl změněn", "Invalid request" => "Neplatný požadavek", @@ -48,6 +48,7 @@ "New password" => "NovĆ© heslo", "show" => "zobrazit", "Change password" => "Změnit heslo", +"Display Name" => "ZobrazovanĆ© jmĆ©no", "Email" => "E-mail", "Your email address" => "VaÅ”e e-mailovĆ” adresa", "Fill in an email address to enable password recovery" => "Pro povolenĆ­ změny hesla vyplňte adresu e-mailu", @@ -63,7 +64,6 @@ "Default Storage" => "VýchozĆ­ ĆŗložiÅ”tě", "Unlimited" => "Neomezeně", "Other" => "JinĆ”", -"Display Name" => "ZobrazovanĆ© jmĆ©no", "Group Admin" => "SprĆ”va skupiny", "Storage" => "ÚložiÅ”tě", "change display name" => "změnit zobrazovanĆ© jmĆ©no", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 01c59d242c7..294bd918213 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,12 +1,12 @@ "Kunne ikke indlƦse listen fra App Store", +"Authentication error" => "Adgangsfejl", "Group already exists" => "Gruppen findes allerede", "Unable to add group" => "Gruppen kan ikke oprettes", "Could not enable app. " => "Applikationen kunne ikke aktiveres.", "Email saved" => "Email adresse gemt", "Invalid email" => "Ugyldig email adresse", "Unable to delete group" => "Gruppen kan ikke slettes", -"Authentication error" => "Adgangsfejl", "Unable to delete user" => "Bruger kan ikke slettes", "Language changed" => "Sprog Ʀndret", "Invalid request" => "Ugyldig forespĆørgsel", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 04f65222b01..b7ace81cf59 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,12 +1,12 @@ "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Authentication error" => "Fehler bei der Anmeldung", "Group already exists" => "Gruppe existiert bereits", "Unable to add group" => "Gruppe konnte nicht angelegt werden", "Could not enable app. " => "App konnte nicht aktiviert werden.", "Email saved" => "E-Mail Adresse gespeichert", "Invalid email" => "Ungültige E-Mail Adresse", "Unable to delete group" => "Gruppe konnte nicht gelƶscht werden", -"Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Benutzer konnte nicht gelƶscht werden", "Language changed" => "Sprache geƤndert", "Invalid request" => "Ungültige Anfrage", @@ -43,6 +43,7 @@ "New password" => "Neues Passwort", "show" => "zeigen", "Change password" => "Passwort Ƥndern", +"Display Name" => "Anzeigename", "Email" => "E-Mail", "Your email address" => "Deine E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", @@ -58,7 +59,6 @@ "Default Storage" => "Standard-Speicher", "Unlimited" => "Unbegrenzt", "Other" => "Andere", -"Display Name" => "Anzeigename", "Group Admin" => "Gruppenadministrator", "Storage" => "Speicher", "change display name" => "Anzeigenamen Ƥndern", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 5358212dbcd..463ccdbd152 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -1,12 +1,12 @@ "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Authentication error" => "Fehler bei der Anmeldung", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", "Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", "Email saved" => "E-Mail-Adresse gespeichert", "Invalid email" => "Ungültige E-Mail-Adresse", "Unable to delete group" => "Die Gruppe konnte nicht gelƶscht werden", -"Authentication error" => "Fehler bei der Anmeldung", "Unable to delete user" => "Der Benutzer konnte nicht gelƶscht werden", "Language changed" => "Sprache geƤndert", "Invalid request" => "Ungültige Anfrage", @@ -48,6 +48,7 @@ "New password" => "Neues Passwort", "show" => "zeigen", "Change password" => "Passwort Ƥndern", +"Display Name" => "Anzeigename", "Email" => "E-Mail", "Your email address" => "Ihre E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", @@ -63,7 +64,6 @@ "Default Storage" => "Standard-Speicher", "Unlimited" => "Unbegrenzt", "Other" => "Andere", -"Display Name" => "Anzeigename", "Group Admin" => "Gruppenadministrator", "Storage" => "Speicher", "change display name" => "Anzeigenamen Ƥndern", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 90335ceaf02..925ecf695aa 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,12 +1,12 @@ "Σφάλμα ĻƒĻ„Ī·Ī½ Ļ†ĻŒĻĻ„Ļ‰ĻƒĪ· της Ī»ĪÆĻƒĻ„Ī±Ļ‚ Ī±Ļ€ĻŒ το App Store", +"Authentication error" => "Σφάλμα Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪÆĪ·ĻƒĪ·Ļ‚", "Group already exists" => "Ī— ομάΓα υπάρχει ήΓη", "Unable to add group" => "ΑΓυναμία Ļ€ĻĪæĻƒĪøĪ®ĪŗĪ·Ļ‚ ομάΓας", "Could not enable app. " => "ΑΓυναμία ĪµĪ½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ·Ļ‚ εφαρμογής ", "Email saved" => "Το email Ī±Ļ€ĪæĪøĪ·ĪŗĪµĻĻ„Ī·ĪŗĪµ ", "Invalid email" => "Μη έγκυρο email", "Unable to delete group" => "ΑΓυναμία Γιαγραφής ομάΓας", -"Authentication error" => "Σφάλμα Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪÆĪ·ĻƒĪ·Ļ‚", "Unable to delete user" => "ΑΓυναμία Γιαγραφής Ļ‡ĻĪ®ĻƒĻ„Ī·", "Language changed" => "Ī— Ī³Ī»ĻŽĻƒĻƒĪ± άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index d9a7595255c..f84526c3c91 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,12 +1,12 @@ "Ne eblis ŝargi liston el aplikaĵovendejo", +"Authentication error" => "AÅ­tentiga eraro", "Group already exists" => "La grupo jam ekzistas", "Unable to add group" => "Ne eblis aldoni la grupon", "Could not enable app. " => "Ne eblis kapabligi la aplikaĵon.", "Email saved" => "La retpoŝtadreso konserviĝis", "Invalid email" => "Nevalida retpoŝtadreso", "Unable to delete group" => "Ne eblis forigi la grupon", -"Authentication error" => "AÅ­tentiga eraro", "Unable to delete user" => "Ne eblis forigi la uzanton", "Language changed" => "La lingvo estas ŝanĝita", "Invalid request" => "Nevalida peto", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index e0649587a44..7d1d1f7be58 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,12 +1,12 @@ "Imposible cargar la lista desde el App Store", +"Authentication error" => "Error de autenticación", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo aƱadir el grupo", "Could not enable app. " => "No puedo habilitar la app.", "Email saved" => "Correo guardado", "Invalid email" => "Correo no vĆ”lido", "Unable to delete group" => "No se pudo eliminar el grupo", -"Authentication error" => "Error de autenticación", "Unable to delete user" => "No se pudo eliminar el usuario", "Language changed" => "Idioma cambiado", "Invalid request" => "Solicitud no vĆ”lida", @@ -48,6 +48,7 @@ "New password" => "Nueva contraseƱa:", "show" => "mostrar", "Change password" => "Cambiar contraseƱa", +"Display Name" => "Nombre a mostrar", "Email" => "Correo electrónico", "Your email address" => "Tu dirección de correo", "Fill in an email address to enable password recovery" => "Escribe una dirección de correo electrónico para restablecer la contraseƱa", @@ -63,7 +64,6 @@ "Default Storage" => "Almacenamiento Predeterminado", "Unlimited" => "Ilimitado", "Other" => "Otro", -"Display Name" => "Nombre a mostrar", "Group Admin" => "Grupo admin", "Storage" => "Alamacenamiento", "change display name" => "Cambiar nombre a mostrar", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 3ef0756ede7..a33d9e8063d 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,12 +1,12 @@ "Imposible cargar la lista desde el App Store", +"Authentication error" => "Error al autenticar", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible aƱadir el grupo", "Could not enable app. " => "No se puede habilitar la aplicación.", "Email saved" => "e-mail guardado", "Invalid email" => "el e-mail no es vĆ”lido ", "Unable to delete group" => "No fue posible eliminar el grupo", -"Authentication error" => "Error al autenticar", "Unable to delete user" => "No fue posible eliminar el usuario", "Language changed" => "Idioma cambiado", "Invalid request" => "Solicitud no vĆ”lida", @@ -42,6 +42,7 @@ "New password" => "Nueva contraseƱa:", "show" => "mostrar", "Change password" => "Cambiar contraseƱa", +"Display Name" => "Nombre a mostrar", "Email" => "Correo electrónico", "Your email address" => "Tu dirección de e-mail", "Fill in an email address to enable password recovery" => "EscribĆ­ una dirección de correo electrónico para restablecer la contraseƱa", @@ -57,7 +58,6 @@ "Default Storage" => "Almacenamiento Predeterminado", "Unlimited" => "Ilimitado", "Other" => "Otro", -"Display Name" => "Nombre a mostrar", "Group Admin" => "Grupo Administrador", "Storage" => "Almacenamiento", "Default" => "Predeterminado", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 3f99aed1b88..df5b707fcd5 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,12 +1,12 @@ "App Sotre'i nimekirja laadimine ebaƵnnestus", +"Authentication error" => "Autentimise viga", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", "Could not enable app. " => "Rakenduse sisselülitamine ebaƵnnestus.", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", "Unable to delete group" => "Keela grupi kustutamine", -"Authentication error" => "Autentimise viga", "Unable to delete user" => "Keela kasutaja kustutamine", "Language changed" => "Keel on muudetud", "Invalid request" => "Vigane pƤring", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 4a6cdc365ec..1be2c7940bc 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -1,12 +1,12 @@ "Ezin izan da App Dendatik zerrenda kargatu", +"Authentication error" => "Autentifikazio errorea", "Group already exists" => "Taldea dagoeneko existitzenda", "Unable to add group" => "Ezin izan da taldea gehitu", "Could not enable app. " => "Ezin izan da aplikazioa gaitu.", "Email saved" => "Eposta gorde da", "Invalid email" => "Baliogabeko eposta", "Unable to delete group" => "Ezin izan da taldea ezabatu", -"Authentication error" => "Autentifikazio errorea", "Unable to delete user" => "Ezin izan da erabiltzailea ezabatu", "Language changed" => "Hizkuntza aldatuta", "Invalid request" => "Baliogabeko eskaria", @@ -42,6 +42,7 @@ "New password" => "Pasahitz berria", "show" => "erakutsi", "Change password" => "Aldatu pasahitza", +"Display Name" => "Bistaratze Izena", "Email" => "E-Posta", "Your email address" => "Zure e-posta", "Fill in an email address to enable password recovery" => "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko", @@ -57,7 +58,6 @@ "Default Storage" => "Lehenetsitako Biltegiratzea", "Unlimited" => "Mugarik gabe", "Other" => "Besteak", -"Display Name" => "Bistaratze Izena", "Group Admin" => "Talde administradorea", "Storage" => "Biltegiratzea", "Default" => "Lehenetsia", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 0d35ddc226b..d4290f6dee7 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -1,11 +1,11 @@ "قادر به بارگذاری Ł„ŪŒŲ³ŲŖ Ų§Ų² ŁŲ±ŁˆŲ“ŚÆŲ§Ł‡ اپ Ł†ŪŒŲ³ŲŖŁ…", +"Authentication error" => "Ų®Ų·Ų§ ŲÆŲ± Ų§Ų¹ŲŖŲØŲ§Ų± Ų³Ł†Ų¬ŪŒ", "Group already exists" => "Ų§ŪŒŁ† ŚÆŲ±ŁˆŁ‡ ŲÆŲ± Ų­Ų§Ł„ Ų­Ų§Ų¶Ų± Ł…ŁˆŲ¬ŁˆŲÆ Ų§Ų³ŲŖ", "Unable to add group" => "Ų§ŁŲ²ŁˆŲÆŁ† ŚÆŲ±ŁˆŁ‡ امکان پذیر Ł†ŪŒŲ³ŲŖ", "Email saved" => "Ų§ŪŒŁ…ŪŒŁ„ Ų°Ų®ŪŒŲ±Ł‡ Ų“ŲÆ", "Invalid email" => "Ų§ŪŒŁ…ŪŒŁ„ غیر قابل Ł‚ŲØŁˆŁ„", "Unable to delete group" => "حذف ŚÆŲ±ŁˆŁ‡ امکان پذیر Ł†ŪŒŲ³ŲŖ", -"Authentication error" => "Ų®Ų·Ų§ ŲÆŲ± Ų§Ų¹ŲŖŲØŲ§Ų± Ų³Ł†Ų¬ŪŒ", "Unable to delete user" => "حذف کاربر امکان پذیر Ł†ŪŒŲ³ŲŖ", "Language changed" => "زبان تغییر کرد", "Invalid request" => "درخواست غیر قابل Ł‚ŲØŁˆŁ„", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index c1763dca15e..9f1feb74a11 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,12 +1,12 @@ "Ei pystytƤ lataamaan listaa sovellusvarastosta (App Store)", +"Authentication error" => "Todennusvirhe", "Group already exists" => "RyhmƤ on jo olemassa", "Unable to add group" => "RyhmƤn lisƤys epƤonnistui", "Could not enable app. " => "Sovelluksen kƤyttƶƶnotto epƤonnistui.", "Email saved" => "SƤhkƶposti tallennettu", "Invalid email" => "Virheellinen sƤhkƶposti", "Unable to delete group" => "RyhmƤn poisto epƤonnistui", -"Authentication error" => "Todennusvirhe", "Unable to delete user" => "KƤyttƤjƤn poisto epƤonnistui", "Language changed" => "Kieli on vaihdettu", "Invalid request" => "Virheellinen pyyntƶ", @@ -48,6 +48,7 @@ "New password" => "Uusi salasana", "show" => "nƤytƤ", "Change password" => "Vaihda salasana", +"Display Name" => "NƤyttƶnimi", "Email" => "SƤhkƶposti", "Your email address" => "SƤhkƶpostiosoitteesi", "Fill in an email address to enable password recovery" => "Anna sƤhkƶpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa", @@ -62,7 +63,6 @@ "Create" => "Luo", "Unlimited" => "Rajoittamaton", "Other" => "Muu", -"Display Name" => "NƤyttƶnimi", "Group Admin" => "RyhmƤn yllƤpitƤjƤ", "change display name" => "vaihda nƤyttƶnimi", "set new password" => "aseta uusi salasana", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index b870b56607c..7ada83f4240 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,12 +1,12 @@ "Impossible de charger la liste depuis l'App Store", +"Authentication error" => "Erreur d'authentification", "Group already exists" => "Ce groupe existe dĆ©jĆ ", "Unable to add group" => "Impossible d'ajouter le groupe", "Could not enable app. " => "Impossible d'activer l'Application", "Email saved" => "E-mail sauvegardĆ©", "Invalid email" => "E-mail invalide", "Unable to delete group" => "Impossible de supprimer le groupe", -"Authentication error" => "Erreur d'authentification", "Unable to delete user" => "Impossible de supprimer l'utilisateur", "Language changed" => "Langue changĆ©e", "Invalid request" => "RequĆŖte invalide", @@ -48,6 +48,7 @@ "New password" => "Nouveau mot de passe", "show" => "Afficher", "Change password" => "Changer de mot de passe", +"Display Name" => "Nom affichĆ©", "Email" => "E-mail", "Your email address" => "Votre adresse e-mail", "Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la rĆ©initialisation du mot de passe", @@ -63,7 +64,6 @@ "Default Storage" => "Support de stockage par dĆ©faut", "Unlimited" => "IllimitĆ©", "Other" => "Autre", -"Display Name" => "Nom affichĆ©", "Group Admin" => "Groupe Admin", "Storage" => "Support de stockage", "change display name" => "Changer le nom affichĆ©", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 595248f7c55..997ac53de7e 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,12 +1,12 @@ "Non foi posĆ­bel cargar a lista desde a App Store", +"Authentication error" => "Produciuse un erro de autenticación", "Group already exists" => "O grupo xa existe", "Unable to add group" => "Non Ć© posĆ­bel engadir o grupo", "Could not enable app. " => "Non Ć© posĆ­bel activar o aplicativo.", "Email saved" => "Correo gardado", "Invalid email" => "correo incorrecto", "Unable to delete group" => "Non Ć© posĆ­bel eliminar o grupo.", -"Authentication error" => "Produciuse un erro de autenticación", "Unable to delete user" => "Non Ć© posĆ­bel eliminar o usuario", "Language changed" => "O idioma cambiou", "Invalid request" => "Petición incorrecta", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index a3db2b9a36c..be776d4fa2e 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -1,12 +1,12 @@ "לא × ×™×Ŗ×Ÿ לטעון ×Ø×©×™×ž×” מה־App Store", +"Authentication error" => "שגיאת הזדהות", "Group already exists" => "הקבוצה כבר ×§×™×™×ž×Ŗ", "Unable to add group" => "לא × ×™×Ŗ×Ÿ להוהיף קבוצה", "Could not enable app. " => "לא × ×™×Ŗ×Ÿ להפעיל את היישום", "Email saved" => "הדואדל × ×©×ž×Ø", "Invalid email" => "דואדל לא חוקי", "Unable to delete group" => "לא × ×™×Ŗ×Ÿ למחוק את הקבוצה", -"Authentication error" => "שגיאת הזדהות", "Unable to delete user" => "לא × ×™×Ŗ×Ÿ למחוק את ×”×ž×©×Ŗ×ž×©", "Language changed" => "שפה השתנתה", "Invalid request" => "בקשה לא חוקית", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 0548b0f84c7..f55cdcc687a 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -1,8 +1,8 @@ "Nemogićnost učitavanja liste sa Apps Stora", +"Authentication error" => "GreÅ”ka kod autorizacije", "Email saved" => "Email spremljen", "Invalid email" => "Neispravan email", -"Authentication error" => "GreÅ”ka kod autorizacije", "Language changed" => "Jezik promijenjen", "Invalid request" => "Neispravan zahtjev", "Disable" => "Isključi", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index d56ff7aa58a..23d6c3f5f78 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,12 +1,12 @@ "Nem tƶlthető le a lista az App Store-ból", +"Authentication error" => "AzonosĆ­tĆ”si hiba", "Group already exists" => "A csoport mĆ”r lĆ©tezik", "Unable to add group" => "A csoport nem hozható lĆ©tre", "Could not enable app. " => "A program nem aktivĆ”lható.", "Email saved" => "Email mentve", "Invalid email" => "HibĆ”s email", "Unable to delete group" => "A csoport nem tƶrƶlhető", -"Authentication error" => "AzonosĆ­tĆ”si hiba", "Unable to delete user" => "A felhasznĆ”ló nem tƶrƶlhető", "Language changed" => "A nyelv megvĆ”ltozott", "Invalid request" => "ƉrvĆ©nytelen kĆ©rĆ©s", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 6a4d7a292b5..181450e58ba 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,7 +1,7 @@ "autentikasi bermasalah", "Email saved" => "Email tersimpan", "Invalid email" => "Email tidak sah", -"Authentication error" => "autentikasi bermasalah", "Language changed" => "Bahasa telah diganti", "Invalid request" => "Permintaan tidak valid", "Disable" => "NonAktifkan", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 2421916a5c3..75f46a01925 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -1,12 +1,12 @@ "Ekki tókst aư hlaưa lista frĆ” forrita sƭưu", +"Authentication error" => "Villa viư auưkenningu", "Group already exists" => "Hópur er þegar til", "Unable to add group" => "Ekki tókst aư bƦta viư hóp", "Could not enable app. " => "Gat ekki virkjaư forrit", "Email saved" => "Netfang vistaư", "Invalid email" => "Ɠgilt netfang", "Unable to delete group" => "Ekki tókst aư eyưa hóp", -"Authentication error" => "Villa viư auưkenningu", "Unable to delete user" => "Ekki tókst aư eyưa notenda", "Language changed" => "TungumĆ”li breytt", "Invalid request" => "Ɠgild fyrirspurn", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 714c5c29c4c..2af86155080 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,12 +1,12 @@ "Impossibile caricare l'elenco dall'App Store", +"Authentication error" => "Errore di autenticazione", "Group already exists" => "Il gruppo esiste giĆ ", "Unable to add group" => "Impossibile aggiungere il gruppo", "Could not enable app. " => "Impossibile abilitare l'applicazione.", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "Unable to delete group" => "Impossibile eliminare il gruppo", -"Authentication error" => "Errore di autenticazione", "Unable to delete user" => "Impossibile eliminare l'utente", "Language changed" => "Lingua modificata", "Invalid request" => "Richiesta non valida", @@ -48,6 +48,7 @@ "New password" => "Nuova password", "show" => "mostra", "Change password" => "Modifica password", +"Display Name" => "Nome visualizzato", "Email" => "Email", "Your email address" => "Il tuo indirizzo email", "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", @@ -63,7 +64,6 @@ "Default Storage" => "Archiviazione predefinita", "Unlimited" => "Illimitata", "Other" => "Altro", -"Display Name" => "Nome visualizzato", "Group Admin" => "Gruppi amministrati", "Storage" => "Archiviazione", "change display name" => "cambia il nome visualizzato", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 41f16051fe8..2e96739ac23 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,12 +1,12 @@ "ć‚¢ćƒ—ćƒŖć‚¹ćƒˆć‚¢ć‹ć‚‰ćƒŖć‚¹ćƒˆć‚’ćƒ­ćƒ¼ćƒ‰ć§ćć¾ć›ć‚“", +"Authentication error" => "čŖčØ¼ć‚Øćƒ©ćƒ¼", "Group already exists" => "ć‚°ćƒ«ćƒ¼ćƒ—ćÆę—¢ć«å­˜åœØć—ć¦ć„ć¾ć™", "Unable to add group" => "ć‚°ćƒ«ćƒ¼ćƒ—ć‚’čæ½åŠ ć§ćć¾ć›ć‚“", "Could not enable app. " => "ć‚¢ćƒ—ćƒŖć‚’ęœ‰åŠ¹ć«ć§ćć¾ć›ć‚“ć§ć—ćŸć€‚", "Email saved" => "ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć‚’äæå­˜ć—ć¾ć—ćŸ", "Invalid email" => "ē„”åŠ¹ćŖćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹", "Unable to delete group" => "ć‚°ćƒ«ćƒ¼ćƒ—ć‚’å‰Šé™¤ć§ćć¾ć›ć‚“", -"Authentication error" => "čŖčØ¼ć‚Øćƒ©ćƒ¼", "Unable to delete user" => "ćƒ¦ćƒ¼ć‚¶ć‚’å‰Šé™¤ć§ćć¾ć›ć‚“", "Language changed" => "čØ€čŖžćŒå¤‰ę›“ć•ć‚Œć¾ć—ćŸ", "Invalid request" => "ē„”åŠ¹ćŖćƒŖć‚Æć‚Øć‚¹ćƒˆć§ć™", @@ -48,6 +48,7 @@ "New password" => "ę–°ć—ć„ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰", "show" => "蔨示", "Change password" => "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“", +"Display Name" => "č”Øē¤ŗå", "Email" => "Email", "Your email address" => "ć‚ćŖćŸć®ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹", "Fill in an email address to enable password recovery" => "ā€»ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰å›žå¾©ć‚’ęœ‰åŠ¹ć«ć™ć‚‹ć«ćÆćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć®å…„åŠ›ćŒåæ…č¦ć§ć™", @@ -63,7 +64,6 @@ "Default Storage" => "ćƒ‡ćƒ•ć‚©ćƒ«ćƒˆć‚¹ćƒˆćƒ¬ćƒ¼ć‚ø", "Unlimited" => "ē„”åˆ¶é™", "Other" => "ćć®ä»–", -"Display Name" => "č”Øē¤ŗå", "Group Admin" => "ć‚°ćƒ«ćƒ¼ćƒ—ē®”ē†č€…", "Storage" => "ć‚¹ćƒˆćƒ¬ćƒ¼ć‚ø", "change display name" => "č”Øē¤ŗåć‚’å¤‰ę›“", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 346c89dbc7d..0fc42d42728 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -1,12 +1,12 @@ "įƒįƒžįƒšįƒ˜įƒ™įƒįƒŖįƒ˜įƒ”įƒ‘įƒ˜įƒ” ეია įƒ•įƒ”įƒ  įƒ©įƒįƒ›įƒįƒ˜įƒ¢įƒ•įƒ˜įƒ įƒ—įƒ App Store", +"Authentication error" => "įƒįƒ•įƒ—įƒ”įƒœįƒ¢įƒ˜įƒ¤įƒ˜įƒ™įƒįƒŖįƒ˜įƒ˜įƒ” įƒØįƒ”įƒŖįƒ“įƒįƒ›įƒ", "Group already exists" => "įƒÆįƒ’įƒ£įƒ¤įƒ˜ įƒ£įƒ™įƒ•įƒ” įƒįƒ įƒ”įƒ”įƒ‘įƒįƒ‘įƒ”", "Unable to add group" => "įƒÆįƒ’įƒ£įƒ¤įƒ˜įƒ” įƒ“įƒįƒ›įƒįƒ¢įƒ”įƒ‘įƒ įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ", "Could not enable app. " => "įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ įƒįƒžįƒšįƒ˜įƒ™įƒįƒŖįƒ˜įƒ˜įƒ” įƒ©įƒįƒ įƒ—įƒ•įƒ.", "Email saved" => "įƒ˜įƒ›įƒ”įƒ˜įƒšįƒ˜ įƒØįƒ”įƒœįƒįƒ®įƒ£įƒšįƒ˜įƒ", "Invalid email" => "įƒįƒ įƒįƒ”įƒ¬įƒįƒ įƒ˜ įƒ˜įƒ›įƒ”įƒ˜įƒšįƒ˜", "Unable to delete group" => "įƒÆįƒ’įƒ£įƒ¤įƒ˜įƒ” წაშლა įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ", -"Authentication error" => "įƒįƒ•įƒ—įƒ”įƒœįƒ¢įƒ˜įƒ¤įƒ˜įƒ™įƒįƒŖįƒ˜įƒ˜įƒ” įƒØįƒ”įƒŖįƒ“įƒįƒ›įƒ", "Unable to delete user" => "įƒ›įƒįƒ›įƒ®įƒ›įƒįƒ įƒ”įƒ‘įƒšįƒ˜įƒ” წაშლა įƒ•įƒ”įƒ  įƒ›įƒįƒ®įƒ”įƒ įƒ®įƒ“įƒ", "Language changed" => "įƒ”įƒœįƒ įƒØįƒ”įƒŖįƒ•įƒšįƒ˜įƒšįƒ˜įƒ", "Invalid request" => "įƒįƒ įƒįƒ”įƒ¬įƒįƒ įƒ˜ įƒ›įƒįƒ—įƒ®įƒįƒ•įƒœįƒ", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index e82ecaeba6b..a542b35feec 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,12 +1,12 @@ "앱 ģŠ¤ķ† ģ–“ģ—ģ„œ ėŖ©ė”ģ„ ź°€ģ øģ˜¬ 수 ģ—†ģŠµė‹ˆė‹¤", +"Authentication error" => "ģøģ¦ 오넘", "Group already exists" => "ź·øė£¹ģ“ ģ“ėÆø ģ”“ģž¬ķ•©ė‹ˆė‹¤.", "Unable to add group" => "ź·øė£¹ģ„ 추가할 수 ģ—†ģŠµė‹ˆė‹¤.", "Could not enable app. " => "ģ•±ģ„ ķ™œģ„±ķ™”ķ•  수 ģ—†ģŠµė‹ˆė‹¤.", "Email saved" => "ģ“ė©”ģ¼ ģ €ģž„ėØ", "Invalid email" => "ģž˜ėŖ»ėœ ģ“ė©”ģ¼ ģ£¼ģ†Œ", "Unable to delete group" => "ź·øė£¹ģ„ ģ‚­ģ œķ•  수 ģ—†ģŠµė‹ˆė‹¤.", -"Authentication error" => "ģøģ¦ 오넘", "Unable to delete user" => "ģ‚¬ģš©ģžė„¼ ģ‚­ģ œķ•  수 ģ—†ģŠµė‹ˆė‹¤.", "Language changed" => "ģ–øģ–“ź°€ ė³€ź²½ė˜ģ—ˆģŠµė‹ˆė‹¤", "Invalid request" => "ģž˜ėŖ»ėœ ģš”ģ²­", @@ -42,6 +42,7 @@ "New password" => "새 ģ•”ķ˜ø", "show" => "ė³“ģ“źø°", "Change password" => "ģ•”ķ˜ø 변경", +"Display Name" => "ķ‘œģ‹œ ģ“ė¦„", "Email" => "ģ“ė©”ģ¼", "Your email address" => "ģ“ė©”ģ¼ ģ£¼ģ†Œ", "Fill in an email address to enable password recovery" => "ģ•”ķ˜ø 찾기 źø°ėŠ„ģ„ ģ‚¬ģš©ķ•˜ė ¤ė©“ ģ“ė©”ģ¼ ģ£¼ģ†Œė„¼ ģž…ė „ķ•˜ģ‹­ģ‹œģ˜¤.", @@ -57,7 +58,6 @@ "Default Storage" => "źø°ė³ø ģ €ģž„ģ†Œ", "Unlimited" => "ė¬“ģ œķ•œ", "Other" => "źø°ķƒ€", -"Display Name" => "ķ‘œģ‹œ ģ“ė¦„", "Group Admin" => "그룹 ź“€ė¦¬ģž", "Storage" => "ģ €ģž„ģ†Œ", "change display name" => "ķ‘œģ‹œ ģ“ė¦„ 변경", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 1c8cff81b0f..5ef88f27891 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -1,8 +1,8 @@ "Konnt Lescht net vum App Store lueden", +"Authentication error" => "Authentifikatioun's Fehler", "Email saved" => "E-mail gespƤichert", "Invalid email" => "Ongülteg e-mail", -"Authentication error" => "Authentifikatioun's Fehler", "Language changed" => "Sprooch huet geƤnnert", "Invalid request" => "Ongülteg RequĆŖte", "Disable" => "Ofschalten", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 335505b4539..e514e7f7758 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,9 +1,9 @@ "NeÄÆmanoma ÄÆkelti sąraÅ”o iÅ” Programų Katalogo", +"Authentication error" => "Autentikacijos klaida", "Could not enable app. " => "Nepavyksta ÄÆjungti aplikacijos.", "Email saved" => "El. paÅ”tas iÅ”saugotas", "Invalid email" => "Netinkamas el. paÅ”tas", -"Authentication error" => "Autentikacijos klaida", "Language changed" => "Kalba pakeista", "Invalid request" => "Klaidinga užklausa", "Disable" => "IÅ”jungti", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index efbbc8f1abd..f05ee1d749d 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -1,12 +1,12 @@ "Nevar lejupielādēt sarakstu no lietotņu veikala", +"Authentication error" => "Autentifikācijas kļūda", "Group already exists" => "Grupa jau eksistē", "Unable to add group" => "Nevar pievienot grupu", "Could not enable app. " => "Nevarēja aktivēt lietotni.", "Email saved" => "E-pasts tika saglabāts", "Invalid email" => "NederÄ«gs epasts", "Unable to delete group" => "Nevar izdzēst grupu", -"Authentication error" => "Autentifikācijas kļūda", "Unable to delete user" => "Nevar izdzēst lietotāju", "Language changed" => "Valoda tika nomainÄ«ta", "Invalid request" => "NederÄ«gs pieprasÄ«jums", @@ -48,6 +48,7 @@ "New password" => "Jauna parole", "show" => "parādÄ«t", "Change password" => "MainÄ«t paroli", +"Display Name" => "Redzamais vārds", "Email" => "E-pasts", "Your email address" => "JÅ«su e-pasta adrese", "Fill in an email address to enable password recovery" => "Ievadiet epasta adresi, lai vēlāk varētu atgÅ«t paroli, ja bÅ«s nepiecieÅ”amÄ«ba", @@ -63,7 +64,6 @@ "Default Storage" => "Noklusējuma krātuve", "Unlimited" => "Neierobežota", "Other" => "Cits", -"Display Name" => "Redzamais vārds", "Group Admin" => "Grupas administrators", "Storage" => "Krātuve", "change display name" => "mainÄ«t redzamo vārdu", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 7705b870b37..aba63bc0575 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -1,12 +1,12 @@ "ŠŠµŠ¼Š¾Š¶Š°Š¼ Га вчитам листа оГ App Store", +"Authentication error" => "Š“Ń€ŠµŃˆŠŗŠ° во Š°Š²Ń‚ŠµŠ½Ń‚ŠøŠŗŠ°Ń†ŠøŃ˜Š°", "Group already exists" => "Š“Ń€ŃƒŠæŠ°Ń‚Š° веќе постои", "Unable to add group" => "ŠŠµŠ¼Š¾Š¶Šµ Га ГоГаГам Š³Ń€ŃƒŠæŠ°", "Could not enable app. " => "ŠŠµŠ¼Š¾Š¶Šµ Га овозможам Š°ŠæŠ»ŠøŠŗŠ°Ń†ŠøŃ˜Š°.", "Email saved" => "Електронската ŠæŠ¾ŃˆŃ‚Š° е снимена", "Invalid email" => "ŠŠµŠøŃŠæŃ€Š°Š²Š½Š° електронска ŠæŠ¾ŃˆŃ‚Š°", "Unable to delete group" => "ŠŠµŠ¼Š¾Š¶Šµ Га ŠøŠ·Š±Ń€ŠøŃˆŠ°Š¼ Š³Ń€ŃƒŠæŠ°", -"Authentication error" => "Š“Ń€ŠµŃˆŠŗŠ° во Š°Š²Ń‚ŠµŠ½Ń‚ŠøŠŗŠ°Ń†ŠøŃ˜Š°", "Unable to delete user" => "ŠŠµŠ¼Š¾Š¶Š°Š¼ Га ŠøŠ·Š±Ń€ŠøŃˆŠ°Š¼ корисник", "Language changed" => "ŠˆŠ°Š·ŠøŠŗŠ¾Ń‚ е сменет", "Invalid request" => "неправилно Š±Š°Ń€Š°ŃšŠµ", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 22114cfc2dd..95c1d01e3b5 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -1,7 +1,7 @@ "Ralat pengesahan", "Email saved" => "Emel disimpan", "Invalid email" => "Emel tidak sah", -"Authentication error" => "Ralat pengesahan", "Language changed" => "Bahasa diubah", "Invalid request" => "Permintaan tidak sah", "Disable" => "Nyahaktif", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 0e627120bd6..caf0a551863 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -1,12 +1,12 @@ "Lasting av liste fra App Store feilet.", +"Authentication error" => "Autentikasjonsfeil", "Group already exists" => "Gruppen finnes allerede", "Unable to add group" => "Kan ikke legge til gruppe", "Could not enable app. " => "Kan ikke aktivere app.", "Email saved" => "Epost lagret", "Invalid email" => "Ugyldig epost", "Unable to delete group" => "Kan ikke slette gruppe", -"Authentication error" => "Autentikasjonsfeil", "Unable to delete user" => "Kan ikke slette bruker", "Language changed" => "SprĆ„k endret", "Invalid request" => "Ugyldig forespĆørsel", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 72c9108ef9c..3488536821f 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,12 +1,12 @@ "Kan de lijst niet van de App store laden", +"Authentication error" => "Authenticatie fout", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", "Could not enable app. " => "Kan de app. niet activeren", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "Unable to delete group" => "Niet in staat om groep te verwijderen", -"Authentication error" => "Authenticatie fout", "Unable to delete user" => "Niet in staat om gebruiker te verwijderen", "Language changed" => "Taal aangepast", "Invalid request" => "Ongeldig verzoek", @@ -47,6 +47,7 @@ "New password" => "Nieuw wachtwoord", "show" => "weergeven", "Change password" => "Wijzig wachtwoord", +"Display Name" => "Weergavenaam", "Email" => "E-mailadres", "Your email address" => "Uw e-mailadres", "Fill in an email address to enable password recovery" => "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren", @@ -62,7 +63,6 @@ "Default Storage" => "Default opslag", "Unlimited" => "Ongelimiteerd", "Other" => "Andere", -"Display Name" => "Weergavenaam", "Group Admin" => "Groep beheerder", "Storage" => "Opslag", "change display name" => "wijzig weergavenaam", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 279939b3d34..8faa2d02caa 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -1,8 +1,8 @@ "Klarer ikkje Ć„ laste inn liste fra App Store", +"Authentication error" => "Feil i autentisering", "Email saved" => "E-postadresse lagra", "Invalid email" => "Ugyldig e-postadresse", -"Authentication error" => "Feil i autentisering", "Language changed" => "SprĆ„k endra", "Invalid request" => "Ugyldig fĆørespurnad", "Disable" => "SlĆ„ av", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index c89fa2ae505..9accb3acbab 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -1,12 +1,12 @@ "Pas possible de cargar la tiĆØra dempuĆØi App Store", +"Authentication error" => "Error d'autentificacion", "Group already exists" => "Lo grop existĆ­s ja", "Unable to add group" => "Pas capable d'apondre un grop", "Could not enable app. " => "Pòt pas activar app. ", "Email saved" => "CorriĆØl enregistrat", "Invalid email" => "CorriĆØl incorrĆØcte", "Unable to delete group" => "Pas capable d'escafar un grop", -"Authentication error" => "Error d'autentificacion", "Unable to delete user" => "Pas capable d'escafar un usanciĆØr", "Language changed" => "Lengas cambiadas", "Invalid request" => "Demanda invalida", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 9c05904f259..a06b39e7bd2 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,12 +1,12 @@ "Nie mogę załadować listy aplikacji", +"Authentication error" => "Błąd uwierzytelniania", "Group already exists" => "Grupa już istnieje", "Unable to add group" => "Nie można dodać grupy", "Could not enable app. " => "Nie można włączyć aplikacji.", "Email saved" => "Email zapisany", "Invalid email" => "Niepoprawny email", "Unable to delete group" => "Nie można usunąć grupy", -"Authentication error" => "Błąd uwierzytelniania", "Unable to delete user" => "Nie można usunąć użytkownika", "Language changed" => "Język zmieniony", "Invalid request" => "Nieprawidłowe żądanie", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index a9285d8c407..5a8281446db 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -1,12 +1,12 @@ "NĆ£o foi possĆ­vel carregar lista da App Store", +"Authentication error" => "Erro de autenticação", "Group already exists" => "Grupo jĆ” existe", "Unable to add group" => "NĆ£o foi possĆ­vel adicionar grupo", "Could not enable app. " => "NĆ£o foi possĆ­vel habilitar aplicativo.", "Email saved" => "E-mail guardado", "Invalid email" => "E-mail invĆ”lido", "Unable to delete group" => "NĆ£o foi possĆ­vel remover grupo", -"Authentication error" => "Erro de autenticação", "Unable to delete user" => "NĆ£o foi possĆ­vel remover usuĆ”rio", "Language changed" => "Idioma alterado", "Invalid request" => "Pedido invĆ”lido", @@ -41,6 +41,7 @@ "New password" => "Nova senha", "show" => "mostrar", "Change password" => "Alterar senha", +"Display Name" => "Nome de Exibição", "Email" => "E-mail", "Your email address" => "Seu endereƧo de e-mail", "Fill in an email address to enable password recovery" => "Preencha um endereƧo de e-mail para habilitar a recuperação de senha", @@ -56,7 +57,6 @@ "Default Storage" => "Armazenamento PadrĆ£o", "Unlimited" => "Ilimitado", "Other" => "Outro", -"Display Name" => "Nome de Exibição", "Group Admin" => "Grupo Administrativo", "Storage" => "Armazenamento", "Default" => "PadrĆ£o", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 243dbeb8562..03982fd5e8e 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,12 +1,12 @@ "Incapaz de carregar a lista da App Store", +"Authentication error" => "Erro de autenticação", "Group already exists" => "O grupo jĆ” existe", "Unable to add group" => "ImpossĆ­vel acrescentar o grupo", "Could not enable app. " => "NĆ£o foi possĆ­vel activar a app.", "Email saved" => "Email guardado", "Invalid email" => "Email invĆ”lido", "Unable to delete group" => "ImpossĆ­vel apagar grupo", -"Authentication error" => "Erro de autenticação", "Unable to delete user" => "ImpossĆ­vel apagar utilizador", "Language changed" => "Idioma alterado", "Invalid request" => "Pedido invĆ”lido", @@ -48,6 +48,7 @@ "New password" => "Nova palavra-chave", "show" => "mostrar", "Change password" => "Alterar palavra-chave", +"Display Name" => "Nome pĆŗblico", "Email" => "endereƧo de email", "Your email address" => "O seu endereƧo de email", "Fill in an email address to enable password recovery" => "Preencha com o seu endereƧo de email para ativar a recuperação da palavra-chave", @@ -63,7 +64,6 @@ "Default Storage" => "Armazenamento PadrĆ£o", "Unlimited" => "Ilimitado", "Other" => "Outro", -"Display Name" => "Nome pĆŗblico", "Group Admin" => "Grupo Administrador", "Storage" => "Armazenamento", "change display name" => "modificar nome exibido", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index d244bad31ba..dcc55a843dc 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,12 +1,12 @@ "Imposibil de Ć®ncărcat lista din App Store", +"Authentication error" => "Eroare de autentificare", "Group already exists" => "Grupul există deja", "Unable to add group" => "Nu s-a putut adăuga grupul", "Could not enable app. " => "Nu s-a putut activa aplicația.", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail nevalid", "Unable to delete group" => "Nu s-a putut șterge grupul", -"Authentication error" => "Eroare de autentificare", "Unable to delete user" => "Nu s-a putut șterge utilizatorul", "Language changed" => "Limba a fost schimbată", "Invalid request" => "Cerere eronată", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index c364be95e51..7f3a114df5d 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,21 +1,25 @@ "Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° ŠøŠ· App Store запрещена", +"Authentication error" => "ŠžŃˆŠøŠ±ŠŗŠ° авторизации", "Group already exists" => "Š“Ń€ŃƒŠæŠæŠ° уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚", "Unable to add group" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ", "Could not enable app. " => "ŠŠµ уГалось Š²ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ приложение.", "Email saved" => "Email сохранен", "Invalid email" => "ŠŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Ń‹Š¹ Email", "Unable to delete group" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ", -"Authentication error" => "ŠžŃˆŠøŠ±ŠŗŠ° авторизации", "Unable to delete user" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń", "Language changed" => "Язык изменён", "Invalid request" => "ŠŠµŠ²ŠµŃ€Š½Ń‹Š¹ запрос", "Admins can't remove themself from the admin group" => "АГминистратор не может ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ сам ŃŠµŠ±Ń ŠøŠ· Š³Ń€ŃƒŠæŠæŃ‹ admin", "Unable to add user to group %s" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń в Š³Ń€ŃƒŠæŠæŃƒ %s", "Unable to remove user from group %s" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń ŠøŠ· Š³Ń€ŃƒŠæŠæŃ‹ %s", +"Couldn't update app." => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š¾Š±Š½Š¾Š²ŠøŃ‚ŃŒ приложение", "Disable" => "Š’Ń‹ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ", "Enable" => "Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ", +"Please wait...." => "ŠŸŠ¾Š²Ń€ŠµŠ¼ŠµŠ½Šø...", +"Updating...." => "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½ŠøŠµ...", "Error" => "ŠžŃˆŠøŠ±ŠŗŠ°", +"Updated" => "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½Š¾", "Saving..." => "Дохранение...", "__language_name__" => "Русский ", "Add your App" => "Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ приложение", @@ -42,6 +46,7 @@ "New password" => "ŠŠ¾Š²Ń‹Š¹ ŠæŠ°Ń€Š¾Š»ŃŒ", "show" => "ŠæŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ", "Change password" => "Š”Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ", +"Display Name" => "ŠžŃ‚Š¾Š±Ń€Š°Š¶Š°ŠµŠ¼Š¾Šµ ŠøŠ¼Ń", "Email" => "e-mail", "Your email address" => "Š’Š°Ńˆ аГрес ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты", "Fill in an email address to enable password recovery" => "ВвеГите аГрес ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты, чтобы ŠæŠ¾ŃŠ²ŠøŠ»Š°ŃŃŒ Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŠæŠ°Ń€Š¾Š»Ń", @@ -51,6 +56,7 @@ "Use this address to connect to your ownCloud in your file manager" => "Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ ŃŃ‚Š¾Ń‚ URL Š“Š»Ń ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŃ файлового менеГжера Šŗ Š’Š°ŃˆŠµŠ¼Ńƒ Ń…Ń€Š°Š½ŠøŠ»ŠøŃ‰Ńƒ", "Version" => "Š’ŠµŃ€ŃŠøŃ", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Š Š°Š·Ń€Š°Š±Š°Ń‚Ń‹Š²Š°ŠµŃ‚ŃŃ сообществом ownCloud, исхоГный коГ Š“Š¾ŃŃ‚ŃƒŠæŠµŠ½ поГ лицензией AGPL.", +"Login Name" => "Š˜Š¼Ń ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń", "Groups" => "Š“Ń€ŃƒŠæŠæŃ‹", "Create" => "Š”Š¾Š·Š“Š°Ń‚ŃŒ", "Default Storage" => "Єранилище по-ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ", @@ -58,6 +64,8 @@ "Other" => "Š”Ń€ŃƒŠ³Š¾Šµ", "Group Admin" => "Š“Ń€ŃƒŠæŠæŠ° АГминистраторы", "Storage" => "Єранилище", +"change display name" => "ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ отображаемое ŠøŠ¼Ń", +"set new password" => "ŃƒŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ новый ŠæŠ°Ń€Š¾Š»ŃŒ", "Default" => "По-ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ", "Delete" => "Š£Š“Š°Š»ŠøŃ‚ŃŒ" ); diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 8d9ecf7e55e..7dde545e2ed 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -1,12 +1,12 @@ "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š·Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ список ŠøŠ· App Store", +"Authentication error" => "ŠžŃˆŠøŠ±ŠŗŠ° авторизации", "Group already exists" => "Š“Ń€ŃƒŠæŠæŠ° уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚", "Unable to add group" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ", "Could not enable app. " => "ŠŠµ уГалось Š·Š°ŠæŃƒŃŃ‚ŠøŃ‚ŃŒ приложение", "Email saved" => "Email сохранен", "Invalid email" => "ŠŠµŠ²ŠµŃ€Š½Ń‹Š¹ email", "Unable to delete group" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ", -"Authentication error" => "ŠžŃˆŠøŠ±ŠŗŠ° авторизации", "Unable to delete user" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń", "Language changed" => "Язык изменен", "Invalid request" => "ŠŠµŠ²ŠµŃ€Š½Ń‹Š¹ запрос", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 4dbe31b9910..b2613290f91 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -1,11 +1,11 @@ "ą·ƒą¶­ą·Šā€ą¶ŗą·ą¶“ą¶± ą¶Æą·ą·‚ą¶ŗą¶šą·Š", "Group already exists" => "ą¶šą¶«ą·Šą¶©ą·ą¶ŗą¶ø දැනටමත් ą¶­ą·’ą¶¶ą·š", "Unable to add group" => "ą¶šą·ą¶«ą¶©ą¶ŗą¶šą·Š ą¶‘ą¶šą·Š ą¶šą·… ą¶±ą·œą·„ą·ą¶šą·’ විය", "Could not enable app. " => "යෙදුම ą·ƒą¶šą·Šā€ą¶»ą·“ą¶ŗ ą¶šą·… ą¶±ą·œą·„ą·ą¶šą·’ විය.", "Email saved" => "වි-තැඓෑල ą·ƒą·”ą¶»ą¶šą·’ą¶± ලදී", "Invalid email" => "ą¶…ą·€ą¶½ą¶‚ą¶œą·” වි-තැඓෑල", "Unable to delete group" => "ą¶šą¶«ą·Šą¶©ą·ą¶ŗą¶ø ą¶øą·ą¶šą·“ą¶øą¶§ ą¶±ą·œą·„ą·ą¶š", -"Authentication error" => "ą·ƒą¶­ą·Šā€ą¶ŗą·ą¶“ą¶± ą¶Æą·ą·‚ą¶ŗą¶šą·Š", "Unable to delete user" => "ą¶“ą¶»ą·’ą·ą·“ą¶½ą¶šą¶ŗą· ą¶øą·ą¶šą·“ą¶øą¶§ ą¶±ą·œą·„ą·ą¶š", "Language changed" => "ą¶·ą·ą·‚ą·ą·€ ą·ą·€ą¶±ą·ƒą·Š ą¶šą·’ą¶»ą·“ą¶ø", "Invalid request" => "ą¶…ą·€ą¶½ą¶‚ą¶œą·” අයදුම", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 6148f1476a2..162e4d3d014 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,12 +1,12 @@ "Nie je možnĆ© nahraÅ„ zoznam z App Store", +"Authentication error" => "Chyba pri autentifikĆ”cii", "Group already exists" => "Skupina už existuje", "Unable to add group" => "Nie je možnĆ© pridaÅ„ skupinu", "Could not enable app. " => "Nie je možnĆ© zapnĆŗÅ„ aplikĆ”ciu.", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", "Unable to delete group" => "Nie je možnĆ© odstrĆ”niÅ„ skupinu", -"Authentication error" => "Chyba pri autentifikĆ”cii", "Unable to delete user" => "Nie je možnĆ© odstrĆ”niÅ„ používateľa", "Language changed" => "Jazyk zmenený", "Invalid request" => "NeplatnĆ” požiadavka", @@ -48,6 +48,7 @@ "New password" => "NovĆ© heslo", "show" => "zobraziÅ„", "Change password" => "ZmeniÅ„ heslo", +"Display Name" => "ZobrazovanĆ© meno", "Email" => "Email", "Your email address" => "VaÅ”a emailovĆ” adresa", "Fill in an email address to enable password recovery" => "Vyplňte emailovĆŗ adresu pre aktivovanie obnovy hesla", @@ -63,7 +64,6 @@ "Default Storage" => "PredvolenĆ© Ćŗložisko", "Unlimited" => "NelimitovanĆ©", "Other" => "InĆ©", -"Display Name" => "ZobrazovanĆ© meno", "Group Admin" => "SprĆ”vca skupiny", "Storage" => "Úložisko", "change display name" => "zmeniÅ„ zobrazovanĆ© meno", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 1524f3c33da..8f4fb9435e8 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,12 +1,12 @@ "Ni mogoče naložiti seznama iz App Store", +"Authentication error" => "Napaka overitve", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Ni mogoče dodati skupine", "Could not enable app. " => "Programa ni mogoče omogočiti.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", "Unable to delete group" => "Ni mogoče izbrisati skupine", -"Authentication error" => "Napaka overitve", "Unable to delete user" => "Ni mogoče izbrisati uporabnika", "Language changed" => "Jezik je bil spremenjen", "Invalid request" => "Neveljavna zahteva", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index e9c12e2ea0a..1b12a0178dd 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -1,12 +1,12 @@ "Š“Ń€ŠµŃˆŠŗŠ° приликом ŃƒŃ‡ŠøŃ‚Š°Š²Š°ŃšŠ° списка ŠøŠ· Š”ŠŗŠ»Š°Š“ŠøŃˆŃ‚Š° ŠŸŃ€Š¾Š³Ń€Š°Š¼Š°", +"Authentication error" => "Š“Ń€ŠµŃˆŠŗŠ° при Š°ŃƒŃ‚ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń†ŠøŃ˜Šø", "Group already exists" => "Š“Ń€ŃƒŠæŠ° већ ŠæŠ¾ŃŃ‚Š¾Ń˜Šø", "Unable to add group" => "ŠŠµ могу Га ГоГам Š³Ń€ŃƒŠæŃƒ", "Could not enable app. " => "ŠŠµ могу Га ŃƒŠŗŃ™ŃƒŃ‡ŠøŠ¼ програм", "Email saved" => "Š•-ŠæŠ¾Ń€ŃƒŠŗŠ° ŃŠ°Ń‡ŃƒŠ²Š°Š½Š°", "Invalid email" => "ŠŠµŠøŃŠæŃ€Š°Š²Š½Š° е-аГреса", "Unable to delete group" => "ŠŠµ могу Га уклоним Š³Ń€ŃƒŠæŃƒ", -"Authentication error" => "Š“Ń€ŠµŃˆŠŗŠ° при Š°ŃƒŃ‚ŠµŠ½Ń‚ŠøŃ„ŠøŠŗŠ°Ń†ŠøŃ˜Šø", "Unable to delete user" => "ŠŠµ могу Га уклоним корисника", "Language changed" => "Језик је ŠæŃ€Š¾Š¼ŠµŃšŠµŠ½", "Invalid request" => "ŠŠµŠøŃŠæŃ€Š°Š²Š°Š½ захтев", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 239948a0f40..fb8c7854e9b 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,12 +1,12 @@ "Kan inte ladda listan frĆ„n App Store", +"Authentication error" => "Autentiseringsfel", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lƤgga till grupp", "Could not enable app. " => "Kunde inte aktivera appen.", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "Unable to delete group" => "Kan inte radera grupp", -"Authentication error" => "Autentiseringsfel", "Unable to delete user" => "Kan inte radera anvƤndare", "Language changed" => "SprĆ„k Ƥndrades", "Invalid request" => "Ogiltig begƤran", @@ -48,6 +48,7 @@ "New password" => "Nytt lƶsenord", "show" => "visa", "Change password" => "Ƅndra lƶsenord", +"Display Name" => "Visat namn", "Email" => "E-post", "Your email address" => "Din e-postadress", "Fill in an email address to enable password recovery" => "Fyll i en e-postadress fƶr att aktivera Ć„terstƤllning av lƶsenord", @@ -63,7 +64,6 @@ "Default Storage" => "Fƶrvald lagring", "Unlimited" => "ObegrƤnsad", "Other" => "Annat", -"Display Name" => "Visat namn", "Group Admin" => "Gruppadministratƶr", "Storage" => "Lagring", "change display name" => "Ƥndra visat namn", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index e383a297c4f..5e94df0dfb2 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -1,12 +1,12 @@ "ą®šąÆ†ą®Æą®²ą®æ ą®šąÆ‡ą®®ą®æą®ŖąÆą®Ŗą®æą®²ą®æą®°ąÆą®ØąÆą®¤ąÆ ą®Ŗą®ŸąÆą®Ÿą®æą®Æą®²ąÆˆ ą®ą®±ąÆą®±ą®®ąÆą®Ÿą®æą®Æą®¾ą®¤ąÆą®³ąÆą®³ą®¤ąÆ", +"Authentication error" => "ą®…ą®¤ąÆą®¤ą®¾ą®ŸąÆą®šą®æą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ą®²ą®æą®²ąÆ வஓு", "Group already exists" => "குஓு ą®ą®±ąÆą®•ą®©ą®µąÆ‡ ą®‰ą®³ąÆą®³ą®¤ąÆ", "Unable to add group" => "ą®•ąÆą®“ąÆą®µąÆˆ ą®šąÆ‡ą®°ąÆą®•ąÆą®• முடியாது", "Could not enable app. " => "ą®šąÆ†ą®Æą®²ą®æą®ÆąÆˆ ą®‡ą®Æą®²ąÆą®®ąÆˆą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ முடியாது", "Email saved" => "ą®®ą®æą®©ąÆą®©ą®žąÆą®šą®²ąÆ ą®šąÆ‡ą®®ą®æą®•ąÆą®•ą®ŖąÆą®Ŗą®ŸąÆą®Ÿą®¤ąÆ", "Invalid email" => "ą®šąÆ†ą®²ąÆą®²ąÆą®Ŗą®Ÿą®æą®Æą®±ąÆą®± ą®®ą®æą®©ąÆą®©ą®žąÆą®šą®²ąÆ", "Unable to delete group" => "ą®•ąÆą®“ąÆą®µąÆˆ ą®ØąÆ€ą®•ąÆą®• முடியாது", -"Authentication error" => "ą®…ą®¤ąÆą®¤ą®¾ą®ŸąÆą®šą®æą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ą®²ą®æą®²ąÆ வஓு", "Unable to delete user" => "பயனாளரை ą®ØąÆ€ą®•ąÆą®• முடியாது", "Language changed" => "மொஓி ą®®ą®¾ą®±ąÆą®±ą®ŖąÆą®Ŗą®ŸąÆą®Ÿą®¤ąÆ", "Invalid request" => "ą®šąÆ†ą®²ąÆą®²ąÆą®Ŗą®Ÿą®æą®Æą®±ąÆą®± ą®µąÆ‡ą®£ąÆą®ŸąÆą®•ąÆ‹ą®³ąÆ", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 9350b78297b..309dbc2657c 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,12 +1,12 @@ "ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ą¹‚ąø«ąø„ąø”ąø£ąø²ąø¢ąøąø²ąø£ąøˆąø²ąø App Store ได้", +"Authentication error" => "ą¹€ąøąø“ąø”ąø‚ą¹‰ąø­ąøœąø“ąø”ąøžąø„ąø²ąø”ą¹€ąøąøµą¹ˆąø¢ąø§ąøąø±ąøšąøŖąø“ąø—ąø˜ąø“ą¹Œąøąø²ąø£ą¹€ąø‚ą¹‰ąø²ą¹ƒąøŠą¹‰ąø‡ąø²ąø™", "Group already exists" => "ąø”ąøµąøąø„ąøøą¹ˆąø”ąø”ąø±ąø‡ąøąø„ą¹ˆąø²ąø§ąø­ąø¢ąø¹ą¹ˆą¹ƒąø™ąø£ąø°ąøšąøšąø­ąø¢ąø¹ą¹ˆą¹ąø„ą¹‰ąø§", "Unable to add group" => "ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ą¹€ąøžąø“ą¹ˆąø”ąøąø„ąøøą¹ˆąø”ą¹„ąø”ą¹‰", "Could not enable app. " => "ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ą¹€ąø›ąø“ąø”ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ą¹ąø­ąø›ą¹„ąø”ą¹‰", "Email saved" => "ąø­ąøµą¹€ąø”ąø„ąø–ąø¹ąøąøšąø±ąø™ąø—ąø¶ąøą¹ąø„ą¹‰ąø§", "Invalid email" => "ąø­ąøµą¹€ąø”ąø„ą¹„ąø”ą¹ˆąø–ąø¹ąøąø•ą¹‰ąø­ąø‡", "Unable to delete group" => "ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ąø„ąøšąøąø„ąøøą¹ˆąø”ą¹„ąø”ą¹‰", -"Authentication error" => "ą¹€ąøąø“ąø”ąø‚ą¹‰ąø­ąøœąø“ąø”ąøžąø„ąø²ąø”ą¹€ąøąøµą¹ˆąø¢ąø§ąøąø±ąøšąøŖąø“ąø—ąø˜ąø“ą¹Œąøąø²ąø£ą¹€ąø‚ą¹‰ąø²ą¹ƒąøŠą¹‰ąø‡ąø²ąø™", "Unable to delete user" => "ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ąø„ąøšąøœąø¹ą¹‰ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ą¹„ąø”ą¹‰", "Language changed" => "ą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ąø ąø²ąø©ąø²ą¹€ąø£ąøµąø¢ąøšąø£ą¹‰ąø­ąø¢ą¹ąø„ą¹‰ąø§", "Invalid request" => "ąø„ąø³ąø£ą¹‰ąø­ąø‡ąø‚ąø­ą¹„ąø”ą¹ˆąø–ąø¹ąøąø•ą¹‰ąø­ąø‡", @@ -48,6 +48,7 @@ "New password" => "ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ą¹ƒąø«ąø”ą¹ˆ", "show" => "แสดง", "Change password" => "ą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™", +"Display Name" => "ąøŠąø·ą¹ˆąø­ąø—ąøµą¹ˆąø•ą¹‰ąø­ąø‡ąøąø²ąø£ą¹ąøŖąø”ąø‡", "Email" => "ąø­ąøµą¹€ąø”ąø„ą¹Œ", "Your email address" => "ąø—ąøµą¹ˆąø­ąø¢ąø¹ą¹ˆąø­ąøµą¹€ąø”ąø„ą¹Œąø‚ąø­ąø‡ąø„ąøøąø“", "Fill in an email address to enable password recovery" => "ąøąø£ąø­ąøąø—ąøµą¹ˆąø­ąø¢ąø¹ą¹ˆąø­ąøµą¹€ąø”ąø„ą¹Œąø‚ąø­ąø‡ąø„ąøøąø“ą¹€ąøžąø·ą¹ˆąø­ą¹€ąø›ąø“ąø”ą¹ƒąø«ą¹‰ąø”ąøµąøąø²ąø£ąøąø¹ą¹‰ąø„ąø·ąø™ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ą¹„ąø”ą¹‰", @@ -63,7 +64,6 @@ "Default Storage" => "ąøžąø·ą¹‰ąø™ąø—ąøµą¹ˆąøˆąø³ąøąø±ąø”ąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹€ąø£ąø“ą¹ˆąø”ąø•ą¹‰ąø™", "Unlimited" => "ą¹„ąø”ą¹ˆąøˆąø³ąøąø±ąø”ąøˆąø³ąø™ąø§ąø™", "Other" => "ąø­ąø·ą¹ˆąø™ą¹†", -"Display Name" => "ąøŠąø·ą¹ˆąø­ąø—ąøµą¹ˆąø•ą¹‰ąø­ąø‡ąøąø²ąø£ą¹ąøŖąø”ąø‡", "Group Admin" => "ąøœąø¹ą¹‰ąø”ąø¹ą¹ąø„ąøąø„ąøøą¹ˆąø”", "Storage" => "ąøžąø·ą¹‰ąø™ąø—ąøµą¹ˆąøˆąø±ąø”ą¹€ąøą¹‡ąøšąø‚ą¹‰ąø­ąø”ąø¹ąø„", "change display name" => "ą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ąøŠąø·ą¹ˆąø­ąø—ąøµą¹ˆąø•ą¹‰ąø­ąø‡ąøąø²ąø£ą¹ƒąø«ą¹‰ą¹ąøŖąø”ąø‡", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 89c8cf2829e..db55491612e 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -1,12 +1,12 @@ "App Store'dan liste yüklenemiyor", +"Authentication error" => "Eşleşme hata", "Group already exists" => "Grup zaten mevcut", "Unable to add group" => "Gruba eklenemiyor", "Could not enable app. " => "Uygulama devreye alınamadı", "Email saved" => "Eposta kaydedildi", "Invalid email" => "GeƧersiz eposta", "Unable to delete group" => "Grup silinemiyor", -"Authentication error" => "Eşleşme hata", "Unable to delete user" => "Kullanıcı silinemiyor", "Language changed" => "Dil değiştirildi", "Invalid request" => "GeƧersiz istek", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 035dbec3910..54e43b51373 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -1,12 +1,12 @@ "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ завантажити список Š· App Store", +"Authentication error" => "Помилка автентифікації", "Group already exists" => "Š“Ń€ŃƒŠæŠ° вже Ń–ŃŠ½ŃƒŃ”", "Unable to add group" => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ ГоГати Š³Ń€ŃƒŠæŃƒ", "Could not enable app. " => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ Š°ŠŗŃ‚ŠøŠ²ŃƒŠ²Š°Ń‚Šø ŠæŃ€Š¾Š³Ń€Š°Š¼Ńƒ. ", "Email saved" => "ŠŠ“Ń€ŠµŃŃƒ збережено", "Invalid email" => "ŠŠµŠ²Ń–Ń€Š½Š° аГреса", "Unable to delete group" => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ виГалити Š³Ń€ŃƒŠæŃƒ", -"Authentication error" => "Помилка автентифікації", "Unable to delete user" => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ виГалити ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š°", "Language changed" => "Мова змінена", "Invalid request" => "Помилковий запит", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 3a133460a38..a7682e7ed0e 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -1,12 +1,12 @@ "KhĆ“ng thể tįŗ£i danh sĆ”ch ứng dỄng từ App Store", +"Authentication error" => "Lį»—i xĆ”c thį»±c", "Group already exists" => "Nhóm đã tồn tįŗ”i", "Unable to add group" => "KhĆ“ng thể thĆŖm nhóm", "Could not enable app. " => "khĆ“ng thể kĆ­ch hoįŗ”t ứng dỄng.", "Email saved" => "Lʰu email", "Invalid email" => "Email khĆ“ng hợp lệ", "Unable to delete group" => "KhĆ“ng thể xóa nhóm", -"Authentication error" => "Lį»—i xĆ”c thį»±c", "Unable to delete user" => "KhĆ“ng thể xóa ngĘ°į»i dùng", "Language changed" => "NgĆ“n ngữ đã được thay đổi", "Invalid request" => "YĆŖu cįŗ§u khĆ“ng hợp lệ", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 6a957518564..c7d73ae2ded 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,12 +1,12 @@ "äøčƒ½ä»ŽApp Store äø­åŠ č½½åˆ—č”Ø", +"Authentication error" => "认证错误", "Group already exists" => "ē¾¤ē»„å·²å­˜åœØ", "Unable to add group" => "ęœŖčƒ½ę·»åŠ ē¾¤ē»„", "Could not enable app. " => "ęœŖčƒ½åÆē”Øåŗ”ē”Ø", "Email saved" => "Email äæå­˜äŗ†", "Invalid email" => "éžę³•Email", "Unable to delete group" => "ęœŖčƒ½åˆ é™¤ē¾¤ē»„", -"Authentication error" => "认证错误", "Unable to delete user" => "ęœŖčƒ½åˆ é™¤ē”Øęˆ·", "Language changed" => "čÆ­čØ€ę”¹å˜äŗ†", "Invalid request" => "éžę³•čÆ·ę±‚", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 48f890fb0c9..40c571a8763 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,12 +1,12 @@ "ę— ę³•ä»Žåŗ”ē”Øå•†åŗ—č½½å…„åˆ—č”Ø", +"Authentication error" => "认证错误", "Group already exists" => "å·²å­˜åœØčÆ„ē»„", "Unable to add group" => "ę— ę³•ę·»åŠ ē»„", "Could not enable app. " => "无法开启App", "Email saved" => "ē”µå­é‚®ä»¶å·²äæå­˜", "Invalid email" => "ę— ę•ˆēš„ē”µå­é‚®ä»¶", "Unable to delete group" => "ę— ę³•åˆ é™¤ē»„", -"Authentication error" => "认证错误", "Unable to delete user" => "ę— ę³•åˆ é™¤ē”Øęˆ·", "Language changed" => "语言已修改", "Invalid request" => "éžę³•čÆ·ę±‚", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index b540549524d..ecff21604f3 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,12 +1,12 @@ "ē„”ę³•å¾ž App Store č®€å–ęø…å–®", +"Authentication error" => "čŖč­‰éŒÆčŖ¤", "Group already exists" => "ē¾¤ēµ„å·²å­˜åœØ", "Unable to add group" => "ē¾¤ēµ„å¢žåŠ å¤±ę•—", "Could not enable app. " => "ęœŖčƒ½å•Ÿå‹•ę­¤app", "Email saved" => "Email已儲存", "Invalid email" => "ē„”ę•ˆēš„email", "Unable to delete group" => "ē¾¤ēµ„åˆŖé™¤éŒÆčŖ¤", -"Authentication error" => "čŖč­‰éŒÆčŖ¤", "Unable to delete user" => "ä½æē”Øč€…åˆŖé™¤éŒÆčŖ¤", "Language changed" => "čŖžčØ€å·²č®Šę›“", "Invalid request" => "ē„”ę•ˆč«‹ę±‚", @@ -48,6 +48,7 @@ "New password" => "新密碼", "show" => "锯示", "Change password" => "č®Šę›“åÆ†ē¢¼", +"Display Name" => "é”Æē¤ŗåēØ±", "Email" => "電子郵件", "Your email address" => "ä½ ēš„é›»å­éƒµä»¶äæ”ē®±", "Fill in an email address to enable password recovery" => "č«‹å”«å…„é›»å­éƒµä»¶äæ”ē®±ä»„ä¾æå›žå¾©åÆ†ē¢¼", @@ -63,7 +64,6 @@ "Default Storage" => "é čØ­å„²å­˜å€", "Unlimited" => "ē„”é™åˆ¶", "Other" => "其他", -"Display Name" => "é”Æē¤ŗåēØ±", "Group Admin" => "群組 箔理哔", "Storage" => "儲存區", "change display name" => "äæ®ę”¹é”Æē¤ŗåēØ±", From 84f3c8b6cc1060203d807ee65545478ce34f93c4 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 7 Feb 2013 00:49:39 +0100 Subject: [PATCH 32/91] show webdav test results in admin section as well --- settings/admin.php | 1 + settings/templates/admin.php | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/settings/admin.php b/settings/admin.php index 4d9685ab920..e256c5fe357 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -31,6 +31,7 @@ $tmpl->assign('entriesremain', $entriesremain); $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isinternetconnectionworking()); $tmpl->assign('islocaleworking', OC_Util::issetlocaleworking()); +$tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 0097489743f..8c2b6148a66 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -22,6 +22,21 @@ if (!$_['htaccessworking']) { +
+ t('Setup Warning');?> + + + t('Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken.'); ?> + t('Please double check the installation guides.', 'http://doc.owncloud.org/server/5.0/admin_manual/installation.html'); ?> + + +
+ From 149d079fd4648f761820b13525bbb9064f9d5710 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 7 Feb 2013 08:09:53 +0100 Subject: [PATCH 33/91] Move loading of js_config to templatelayout Also check for installed flag because this isn't available before setup --- core/templates/layout.base.php | 1 - core/templates/layout.guest.php | 1 - core/templates/layout.user.php | 1 - lib/templatelayout.php | 3 +++ 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 47fb75612cf..2049bcb36da 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -7,7 +7,6 @@ - diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 9aabc08acec..69330aa9fce 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -8,7 +8,6 @@ - diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 2547278547f..de38239572b 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -8,7 +8,6 @@ - diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 37ece91047f..a14c36c93d2 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -36,6 +36,9 @@ class OC_TemplateLayout extends OC_Template { // Add the js files $jsfiles = self::findJavascriptFiles(OC_Util::$scripts); $this->assign('jsfiles', array(), false); + if (OC_Config::getValue('installed', false)) { + $this->append( 'jsfiles', OC_Helper::linkToRoute('js_config')); + } if (!empty(OC_Util::$core_scripts)) { $this->append( 'jsfiles', OC_Helper::linkToRemoteBase('core.js', false)); } From c0b370f6cf8bf2ec3f4af921fc9f6935238ca41d Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 7 Feb 2013 08:11:18 +0100 Subject: [PATCH 34/91] Define the variables that are expected to exist but won't be set in setup --- core/js/js.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/js/js.js b/core/js/js.js index 6b0c289850c..80914e954e5 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -5,6 +5,9 @@ * To the end of config/config.php to enable debug mode. * The undefined checks fix the broken ie8 console */ +var oc_debug; +var oc_webroot; +var oc_requesttoken; if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") { if (!window.console) { window.console = {}; From 458ba4b55c38999a1eecb0163b167ba97365a403 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 7 Feb 2013 08:12:09 +0100 Subject: [PATCH 35/91] Fix disabling setup form on submit --- core/js/setup.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/core/js/setup.js b/core/js/setup.js index 9aded6591ca..2656cac2f45 100644 --- a/core/js/setup.js +++ b/core/js/setup.js @@ -52,12 +52,10 @@ $(document).ready(function() { // Save form parameters var post = $(this).serializeArray(); - // FIXME: This lines are breaking the installation // Disable inputs - // $(':submit', this).attr('disabled','disabled').val('Finishing …'); - // $('input', this).addClass('ui-state-disabled').attr('disabled','disabled'); - // $('#selectDbType').button('disable'); - // $('label.ui-button', this).addClass('ui-state-disabled').attr('aria-disabled', 'true').button('disable'); + $(':submit', this).attr('disabled','disabled').val('Finishing …'); + $('input', this).addClass('ui-state-disabled').attr('disabled','disabled'); + $('#selectDbType').buttonset('disable'); // Create the form var form = $('
'); From 17384994d6455c533ddb22205660bbfdde0e26b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 7 Feb 2013 10:13:09 +0100 Subject: [PATCH 36/91] add class hascontrols to trash bin file table --- apps/files_trashbin/templates/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index c3e51b4becd..24e4a0e6c69 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -9,7 +9,7 @@
t('Nothing in here. Your trash bin is empty!')?>
-
+
'; - if(name.indexOf('.')!=-1){ + createRow:function(type, name, iconurl, linktarget, size, lastModified, permissions){ + var td, simpleSize, basename, extension; + //containing tr + var tr = $('').attr({ + "data-type": type, + "data-size": size, + "data-file": name, + "data-permissions": permissions + }); + // filename td + td = $('').attr({ + "class": "filename", + "style": 'background-image:url('+iconurl+')' + }); + td.append(''); + var link_elem = $('').attr({ + "class": "name", + "href": linktarget + }); + //split extension from filename for non dirs + if (type != 'dir' && name.indexOf('.')!=-1) { basename=name.substr(0,name.lastIndexOf('.')); extension=name.substr(name.lastIndexOf('.')); - }else{ + } else { basename=name; extension=false; } - html+=''; - if(size!='Pending'){ + //dirs can show the number of uploaded files + if (type == 'dir') { + link_elem.append($('').attr({ + 'class': 'uploadtext', + 'currentUploads': 0 + })); + } + td.append(link_elem); + tr.append(td); + + //size column + if(size!=t('files', 'Pending')){ simpleSize=simpleFileSize(size); }else{ - simpleSize='Pending'; + simpleSize=t('files', 'Pending'); } - sizeColor = Math.round(200-size/(1024*1024)*2); - lastModifiedTime=Math.round(lastModified.getTime() / 1000); - modifiedColor=Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*14); - html+=''; - html+=''; - html+=''; - FileList.insertElement(name,'file',$(html).attr('data-file',name)); + var sizeColor = Math.round(200-Math.pow((size/(1024*1024)),2)); + var lastModifiedTime = Math.round(lastModified.getTime() / 1000); + td = $('').attr({ + "class": "filesize", + "title": humanFileSize(size), + "style": 'color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')' + }).text(simpleSize); + tr.append(td); + + // date column + var modifiedColor = Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*5); + td = $('').attr({ "class": "date" }); + td.append($('').attr({ + "class": "modified", + "title": formatDate(lastModified), + "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' + }).text( relative_modified_date(lastModified.getTime() / 1000) )); + tr.append(td); + return tr; + }, + addFile:function(name,size,lastModified,loading,hidden){ + var imgurl; + if (loading) { + imgurl = OC.imagePath('core', 'loading.gif'); + } else { + imgurl = OC.imagePath('core', 'filetypes/file.png'); + } + var tr = this.createRow( + 'file', + name, + imgurl, + OC.Router.generate('download', { file: $('#dir').val()+'/'+name }), + size, + lastModified, + $('#permissions').val() + ); + + FileList.insertElement(name, 'file', tr.attr('data-file',name)); var row = $('tr').filterAttr('data-file',name); if(loading){ row.data('loading',true); @@ -44,30 +101,18 @@ var FileList={ FileActions.display(row.find('td.filename')); }, addDir:function(name,size,lastModified,hidden){ - var html, td, link_elem, sizeColor, lastModifiedTime, modifiedColor; - html = $('').attr({ "data-type": "dir", "data-size": size, "data-file": name, "data-permissions": $('#permissions').val()}); - td = $('').attr({"class": "filename", "style": 'background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')' }); - td.append(''); - link_elem = $('').attr({ "class": "name", "href": OC.linkTo('files', 'index.php')+"?dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/') }); - link_elem.append($('').addClass('nametext').text(name)); - link_elem.append($('').attr({'class': 'uploadtext', 'currentUploads': 0})); - td.append(link_elem); - html.append(td); - if(size!='Pending'){ - simpleSize=simpleFileSize(size); - }else{ - simpleSize='Pending'; - } - sizeColor = Math.round(200-Math.pow((size/(1024*1024)),2)); - lastModifiedTime=Math.round(lastModified.getTime() / 1000); - modifiedColor=Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*5); - td = $('').attr({ "class": "filesize", "title": humanFileSize(size), "style": 'color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')'}).text(simpleSize); - html.append(td); - - td = $('').attr({ "class": "date" }); - td.append($('').attr({ "class": "modified", "title": formatDate(lastModified), "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' }).text( relative_modified_date(lastModified.getTime() / 1000) )); - html.append(td); - FileList.insertElement(name,'dir',html); + + var tr = this.createRow( + 'dir', + name, + OC.imagePath('core', 'filetypes/folder.png'), + OC.linkTo('files', 'index.php')+"?dir="+ encodeURIComponent($('#dir').val()+'/'+name).replace(/%2F/g, '/'), + size, + lastModified, + $('#permissions').val() + ); + + FileList.insertElement(name,'dir',tr); var row = $('tr').filterAttr('data-file',name); row.find('td.filename').draggable(dragOptions); row.find('td.filename').droppable(folderDropOptions); From 18fa8e27537c3aa785d2ea9ca6c2a83dc5882757 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Sat, 9 Feb 2013 15:06:29 +0100 Subject: [PATCH 82/91] json_encode the appid --- settings/js/apps-custom.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/js/apps-custom.php b/settings/js/apps-custom.php index 9ec2a758ee3..d827dfc7058 100644 --- a/settings/js/apps-custom.php +++ b/settings/js/apps-custom.php @@ -23,4 +23,4 @@ foreach($combinedApps as $app) { echo("\n"); } -echo ("var appid =\"".$_GET['appid']."\";"); \ No newline at end of file +echo ("var appid =".json_encode($_GET['appid']).";"); \ No newline at end of file From 9dddcae9ca3dcf872893e36e2f478ebecafdc6e2 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 9 Feb 2013 15:03:47 +0100 Subject: [PATCH 83/91] Remove invalid characters from app id to prevent loading of invalid resources --- core/ajax/translations.php | 1 + lib/app.php | 9 +++++++++ lib/base.php | 2 +- lib/l10n.php | 2 +- settings/ajax/disableapp.php | 2 +- settings/ajax/enableapp.php | 2 +- settings/ajax/navigationdetect.php | 1 + settings/ajax/updateapp.php | 1 + 8 files changed, 16 insertions(+), 4 deletions(-) diff --git a/core/ajax/translations.php b/core/ajax/translations.php index e22cbad4708..e52a2e9b1e8 100644 --- a/core/ajax/translations.php +++ b/core/ajax/translations.php @@ -22,6 +22,7 @@ */ $app = $_POST["app"]; +$app = OC_App::cleanAppId($app); $l = OC_L10N::get( $app ); diff --git a/lib/app.php b/lib/app.php index 3a4e21e8cd1..54f16d6bdcd 100644 --- a/lib/app.php +++ b/lib/app.php @@ -38,6 +38,15 @@ class OC_App{ static private $checkedApps = array(); static private $altLogin = array(); + /** + * @brief clean the appid + * @param $app Appid that needs to be cleaned + * @return string + */ + public static function cleanAppId($app) { + return str_replace(array('\0', '/', '\\', '..'), '', $app); + } + /** * @brief loads all apps * @param array $types diff --git a/lib/base.php b/lib/base.php index 5bfdb0b7c0a..b9e59c3431e 100644 --- a/lib/base.php +++ b/lib/base.php @@ -468,7 +468,7 @@ class OC { register_shutdown_function(array('OC_Helper', 'cleanTmp')); //parse the given parameters - self::$REQUESTEDAPP = (isset($_GET['app']) && trim($_GET['app']) != '' && !is_null($_GET['app']) ? str_replace(array('\0', '/', '\\', '..'), '', strip_tags($_GET['app'])) : OC_Config::getValue('defaultapp', 'files')); + self::$REQUESTEDAPP = (isset($_GET['app']) && trim($_GET['app']) != '' && !is_null($_GET['app']) ? OC_App::cleanAppId(strip_tags($_GET['app'])) : OC_Config::getValue('defaultapp', 'files')); if (substr_count(self::$REQUESTEDAPP, '?') != 0) { $app = substr(self::$REQUESTEDAPP, 0, strpos(self::$REQUESTEDAPP, '?')); $param = substr($_GET['app'], strpos($_GET['app'], '?') + 1); diff --git a/lib/l10n.php b/lib/l10n.php index ee879009265..e272bcd79f3 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -97,7 +97,7 @@ class OC_L10N{ if ($this->app === true) { return; } - $app = $this->app; + $app = OC_App::cleanAppId($this->app); $lang = $this->lang; $this->app = true; // Find the right language diff --git a/settings/ajax/disableapp.php b/settings/ajax/disableapp.php index e89de928eac..466a719157d 100644 --- a/settings/ajax/disableapp.php +++ b/settings/ajax/disableapp.php @@ -2,6 +2,6 @@ OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); -OC_App::disable($_POST['appid']); +OC_App::disable(OC_App::cleanAppId($_POST['appid'])); OC_JSON::success(); diff --git a/settings/ajax/enableapp.php b/settings/ajax/enableapp.php index 18202dc39e9..ab84aee5166 100644 --- a/settings/ajax/enableapp.php +++ b/settings/ajax/enableapp.php @@ -3,7 +3,7 @@ OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); -$appid = OC_App::enable($_POST['appid']); +$appid = OC_App::enable(OC_App::cleanAppId($_POST['appid'])); if($appid !== false) { OC_JSON::success(array('data' => array('appid' => $appid))); } else { diff --git a/settings/ajax/navigationdetect.php b/settings/ajax/navigationdetect.php index 93acb50dc20..607c0e873f9 100644 --- a/settings/ajax/navigationdetect.php +++ b/settings/ajax/navigationdetect.php @@ -4,6 +4,7 @@ OC_Util::checkAdminUser(); OCP\JSON::callCheck(); $app = $_GET['app']; +$app = OC_App::cleanAppId($app); //load the one app and see what it adds to the navigation OC_App::loadApp($app); diff --git a/settings/ajax/updateapp.php b/settings/ajax/updateapp.php index 77c0bbc3e36..9367a3b5a3b 100644 --- a/settings/ajax/updateapp.php +++ b/settings/ajax/updateapp.php @@ -4,6 +4,7 @@ OC_JSON::checkAdminUser(); OCP\JSON::callCheck(); $appid = $_POST['appid']; +$appid = OC_App::cleanAppId($appid); $result = OC_Installer::updateApp($appid); if($result !== false) { From 60411f7d3d676e4ed83262b1066e7ce4a7dc904f Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 9 Feb 2013 16:18:30 +0100 Subject: [PATCH 84/91] Remove unneeded __destruct call in OC\Files\Storage\Temporary --- lib/files/storage/temporary.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/files/storage/temporary.php b/lib/files/storage/temporary.php index d84dbda2e39..542d2cd9f48 100644 --- a/lib/files/storage/temporary.php +++ b/lib/files/storage/temporary.php @@ -21,7 +21,6 @@ class Temporary extends Local{ } public function __destruct() { - parent::__destruct(); $this->cleanUp(); } } From 420b63cbe48a37204762953332bbc2973217661f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Sat, 9 Feb 2013 16:58:55 +0100 Subject: [PATCH 85/91] fix empty path handling --- lib/files/cache/scanner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index 8d504af6163..9a5546dce3f 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -138,7 +138,7 @@ class Scanner { * walk over any folders that are not fully scanned yet and scan them */ public function backgroundScan() { - while ($path = $this->cache->getIncomplete()) { + while (($path = $this->cache->getIncomplete()) !== false) { $this->scan($path); $this->cache->correctFolderSize($path); } From 842fc85b9a42aaa0ce31c71e05507ed5eeaa6dc4 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 9 Feb 2013 11:34:25 +0100 Subject: [PATCH 86/91] moved iframe height and width fix from js to css --- core/css/styles.css | 2 ++ settings/templates/help.php | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 556ca6b82bb..e6a4bf61995 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -319,6 +319,8 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin .arrow.left { left:-13px; bottom:1.2em; -webkit-transform:rotate(270deg); -moz-transform:rotate(270deg); -o-transform:rotate(270deg); -ms-transform:rotate(270deg); transform:rotate(270deg); } .arrow.up { top:-8px; right:2em; } .arrow.down { -webkit-transform:rotate(180deg); -moz-transform:rotate(180deg); -o-transform:rotate(180deg); -ms-transform:rotate(180deg); transform:rotate(180deg); } +.help-includes {overflow: hidden; width: 100%; height: 100%; -moz-box-sizing: border-box; box-sizing: border-box; padding-top: 2.8em; } +.help-iframe {width: 100%; height: 100%; margin: 0;padding: 0; border: 0; overflow: auto;} /* ---- BREADCRUMB ---- */ div.crumb { float:left; display:block; background:url('../img/breadcrumb.svg') no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; } diff --git a/settings/templates/help.php b/settings/templates/help.php index 7383fdcf56a..192bac4ad4a 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -10,5 +10,6 @@ t( 'Commercial Support' ); ?> -

- \ No newline at end of file +
+ +
From aa1adf42c74569f2591a59855bf370584ed1e5cc Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 9 Feb 2013 13:32:52 +0100 Subject: [PATCH 87/91] added exe and msi filetypes and icon --- core/img/filetypes/application.png | Bin 0 -> 464 bytes lib/mimetypes.list.php | 2 ++ 2 files changed, 2 insertions(+) create mode 100644 core/img/filetypes/application.png diff --git a/core/img/filetypes/application.png b/core/img/filetypes/application.png new file mode 100644 index 0000000000000000000000000000000000000000..1dee9e366094e87db68c606d0522d72d4b939818 GIT binary patch literal 464 zcmV;>0WbcEP)8e6`gpm!y1M!N^ZV(=IC*t) z{^;nqJv-tM$9J1L2QJ2DN!#51=1_l@G`2=6e0lehL%sic%`_4--LFM}IF!KzJCseW zq1I3__Z40|e?qyK1__gzP(qrBf-G7SQbQ`#Lw94WVe(o`qg+f4hy;Qju)q#I(9{`% zQmAGomzhQ!b|gq>KqL@IkO~$=Koi}a$u6d07kiS}NoYVMJjAeZpaB*;wwcDdEbK@K zNP;B7RzhQ|H9AlUO<`J>m1(5R)Pb-iLBb@7Jp)}LHdAb-VVgYxVoTzGoqu{~a>6uj zeqCRFI9pC#h09bGwy9;oHcp6(RB%jeY^F=Ll!S+9JkVe4nDG7tJMQiP0000 'application/illustrator', 'epub' => 'application/epub+zip', 'mobi' => 'application/x-mobipocket-ebook', + 'msi' => 'application', + 'exe' => 'application' ); From 43981e62e2ede9812988a81a73d2214cd7c670e0 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 9 Feb 2013 17:46:07 +0100 Subject: [PATCH 88/91] Revert "added exe and msi filetypes and icon" This reverts commit aa1adf42c74569f2591a59855bf370584ed1e5cc. --- core/img/filetypes/application.png | Bin 464 -> 0 bytes lib/mimetypes.list.php | 2 -- 2 files changed, 2 deletions(-) delete mode 100644 core/img/filetypes/application.png diff --git a/core/img/filetypes/application.png b/core/img/filetypes/application.png deleted file mode 100644 index 1dee9e366094e87db68c606d0522d72d4b939818..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 464 zcmV;>0WbcEP)8e6`gpm!y1M!N^ZV(=IC*t) z{^;nqJv-tM$9J1L2QJ2DN!#51=1_l@G`2=6e0lehL%sic%`_4--LFM}IF!KzJCseW zq1I3__Z40|e?qyK1__gzP(qrBf-G7SQbQ`#Lw94WVe(o`qg+f4hy;Qju)q#I(9{`% zQmAGomzhQ!b|gq>KqL@IkO~$=Koi}a$u6d07kiS}NoYVMJjAeZpaB*;wwcDdEbK@K zNP;B7RzhQ|H9AlUO<`J>m1(5R)Pb-iLBb@7Jp)}LHdAb-VVgYxVoTzGoqu{~a>6uj zeqCRFI9pC#h09bGwy9;oHcp6(RB%jeY^F=Ll!S+9JkVe4nDG7tJMQiP0000 'application/illustrator', 'epub' => 'application/epub+zip', 'mobi' => 'application/x-mobipocket-ebook', - 'msi' => 'application', - 'exe' => 'application' ); From 62122148bf480387f78934abe58e85602e6b4960 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 9 Feb 2013 17:46:23 +0100 Subject: [PATCH 89/91] Revert "moved iframe height and width fix from js to css" This reverts commit 842fc85b9a42aaa0ce31c71e05507ed5eeaa6dc4. --- core/css/styles.css | 2 -- settings/templates/help.php | 5 ++--- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index e6a4bf61995..556ca6b82bb 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -319,8 +319,6 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin .arrow.left { left:-13px; bottom:1.2em; -webkit-transform:rotate(270deg); -moz-transform:rotate(270deg); -o-transform:rotate(270deg); -ms-transform:rotate(270deg); transform:rotate(270deg); } .arrow.up { top:-8px; right:2em; } .arrow.down { -webkit-transform:rotate(180deg); -moz-transform:rotate(180deg); -o-transform:rotate(180deg); -ms-transform:rotate(180deg); transform:rotate(180deg); } -.help-includes {overflow: hidden; width: 100%; height: 100%; -moz-box-sizing: border-box; box-sizing: border-box; padding-top: 2.8em; } -.help-iframe {width: 100%; height: 100%; margin: 0;padding: 0; border: 0; overflow: auto;} /* ---- BREADCRUMB ---- */ div.crumb { float:left; display:block; background:url('../img/breadcrumb.svg') no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; } diff --git a/settings/templates/help.php b/settings/templates/help.php index 192bac4ad4a..7383fdcf56a 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -10,6 +10,5 @@ t( 'Commercial Support' ); ?> -
- -
+

+ \ No newline at end of file From 7f58e2749537e000344dd886df5e103e06eefe91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sat, 9 Feb 2013 18:01:38 +0100 Subject: [PATCH 90/91] cleanup - more to come after --- apps/files_encryption/ajax/mode.php | 38 - apps/files_encryption/appinfo/app.php | 4 +- apps/files_encryption/hooks/hooks.php | 10 - apps/files_encryption/js/settings-personal.js | 38 - apps/files_encryption/js/settings.js | 29 +- apps/files_encryption/lib/crypt.php | 779 +++++++++--------- apps/files_encryption/lib/keymanager.php | 103 +-- apps/files_encryption/lib/stream.php | 6 +- apps/files_encryption/settings-personal.php | 2 - .../templates/settings-personal.php | 2 +- 10 files changed, 423 insertions(+), 588 deletions(-) delete mode 100644 apps/files_encryption/ajax/mode.php delete mode 100644 apps/files_encryption/js/settings-personal.js diff --git a/apps/files_encryption/ajax/mode.php b/apps/files_encryption/ajax/mode.php deleted file mode 100644 index 64c5be94401..00000000000 --- a/apps/files_encryption/ajax/mode.php +++ /dev/null @@ -1,38 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -use OCA\Encryption\Keymanager; - -OCP\JSON::checkAppEnabled('files_encryption'); -OCP\JSON::checkLoggedIn(); -OCP\JSON::callCheck(); - -$mode = $_POST['mode']; -$changePasswd = false; -$passwdChanged = false; - -if ( isset($_POST['newpasswd']) && isset($_POST['oldpasswd']) ) { - $oldpasswd = $_POST['oldpasswd']; - $newpasswd = $_POST['newpasswd']; - $changePasswd = true; - $passwdChanged = Keymanager::changePasswd($oldpasswd, $newpasswd); -} - -$query = \OC_DB::prepare( "SELECT mode FROM *PREFIX*encryption WHERE uid = ?" ); -$result = $query->execute(array(\OCP\User::getUser())); - -if ($result->fetchRow()){ - $query = OC_DB::prepare( 'UPDATE *PREFIX*encryption SET mode = ? WHERE uid = ?' ); -} else { - $query = OC_DB::prepare( 'INSERT INTO *PREFIX*encryption ( mode, uid ) VALUES( ?, ? )' ); -} - -if ( (!$changePasswd || $passwdChanged) && $query->execute(array($mode, \OCP\User::getUser())) ) { - OCP\JSON::success(); -} else { - OCP\JSON::error(); -} \ No newline at end of file diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index f83109a18ea..08728622525 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -43,6 +43,6 @@ if ( } -// Reguster settings scripts +// Register settings scripts OCP\App::registerAdmin( 'files_encryption', 'settings' ); -OCP\App::registerPersonal( 'files_encryption', 'settings-personal' ); \ No newline at end of file +OCP\App::registerPersonal( 'files_encryption', 'settings-personal' ); diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 8bdeee0937b..7e4f677ce9d 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -165,16 +165,6 @@ class Hooks { * @brief */ public static function postShared( $params ) { - - // Delete existing catfile - Keymanager::deleteFileKey( ); - - // Generate new catfile and env keys - Crypt::multiKeyEncrypt( $plainContent, $publicKeys ); - - // Save env keys to user folders - - } /** diff --git a/apps/files_encryption/js/settings-personal.js b/apps/files_encryption/js/settings-personal.js deleted file mode 100644 index 1a53e99d2b4..00000000000 --- a/apps/files_encryption/js/settings-personal.js +++ /dev/null @@ -1,38 +0,0 @@ -/** - * Copyright (c) 2012, Bjoern Schiessle - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ - -$(document).ready(function(){ - $('input[name=encryption_mode]').change(function(){ - var prevmode = document.getElementById('prev_encryption_mode').value - var client=$('input[value="client"]:checked').val() - ,server=$('input[value="server"]:checked').val() - ,user=$('input[value="user"]:checked').val() - ,none=$('input[value="none"]:checked').val() - if (client) { - $.post(OC.filePath('files_encryption', 'ajax', 'mode.php'), { mode: 'client' }); - if (prevmode == 'server') { - OC.dialogs.info(t('encryption', 'Please switch to your ownCloud client and change your encryption password to complete the conversion.'), t('encryption', 'switched to client side encryption')); - } - } else if (server) { - if (prevmode == 'client') { - OC.dialogs.form([{text:'Login password', name:'newpasswd', type:'password'},{text:'Encryption password used on the client', name:'oldpasswd', type:'password'}],t('encryption', 'Change encryption password to login password'), function(data) { - $.post(OC.filePath('files_encryption', 'ajax', 'mode.php'), { mode: 'server', newpasswd: data[0].value, oldpasswd: data[1].value }, function(result) { - if (result.status != 'success') { - document.getElementById(prevmode+'_encryption').checked = true; - OC.dialogs.alert(t('encryption', 'Please check your passwords and try again.'), t('encryption', 'Could not change your file encryption password to your login password')) - } else { - console.log("alles super"); - } - }, true); - }); - } else { - $.post(OC.filePath('files_encryption', 'ajax', 'mode.php'), { mode: 'server' }); - } - } else { - $.post(OC.filePath('files_encryption', 'ajax', 'mode.php'), { mode: 'none' }); - } - }) -}) \ No newline at end of file diff --git a/apps/files_encryption/js/settings.js b/apps/files_encryption/js/settings.js index 60563bde859..0be857bb73e 100644 --- a/apps/files_encryption/js/settings.js +++ b/apps/files_encryption/js/settings.js @@ -9,38 +9,11 @@ $(document).ready(function(){ $('#encryption_blacklist').multiSelect({ oncheck:blackListChange, onuncheck:blackListChange, - createText:'...', + createText:'...' }); function blackListChange(){ var blackList=$('#encryption_blacklist').val().join(','); OC.AppConfig.setValue('files_encryption','type_blacklist',blackList); } - - //TODO: Handle switch between client and server side encryption - $('input[name=encryption_mode]').change(function(){ - var client=$('input[value="client"]:checked').val() - ,server=$('input[value="server"]:checked').val() - ,user=$('input[value="user"]:checked').val() - ,none=$('input[value="none"]:checked').val() - ,disable=false - if (client) { - OC.AppConfig.setValue('files_encryption','mode','client'); - disable = true; - } else if (server) { - OC.AppConfig.setValue('files_encryption','mode','server'); - disable = true; - } else if (user) { - OC.AppConfig.setValue('files_encryption','mode','user'); - disable = true; - } else { - OC.AppConfig.setValue('files_encryption','mode','none'); - } - if (disable) { - document.getElementById('server_encryption').disabled = true; - document.getElementById('client_encryption').disabled = true; - document.getElementById('user_encryption').disabled = true; - document.getElementById('none_encryption').disabled = true; - } - }) }) \ No newline at end of file diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index e3d23023db3..c7a414c5080 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -4,8 +4,8 @@ * ownCloud * * @author Sam Tuke, Frank Karlitschek, Robin Appelman - * @copyright 2012 Sam Tuke samtuke@owncloud.com, - * Robin Appelman icewind@owncloud.com, Frank Karlitschek + * @copyright 2012 Sam Tuke samtuke@owncloud.com, + * Robin Appelman icewind@owncloud.com, Frank Karlitschek * frank@owncloud.org * * This library is free software; you can redistribute it and/or @@ -47,15 +47,15 @@ class Crypt { public static function mode( $user = null ) { return 'server'; - + } - - /** - * @brief Create a new encryption keypair - * @return array publicKey, privatekey - */ + + /** + * @brief Create a new encryption keypair + * @return array publicKey, privatekey + */ public static function createKeypair() { - + $res = openssl_pkey_new(); // Get private key @@ -63,576 +63,543 @@ class Crypt { // Get public key $publicKey = openssl_pkey_get_details( $res ); - + $publicKey = $publicKey['key']; - + return( array( 'publicKey' => $publicKey, 'privateKey' => $privateKey ) ); - + } - - /** - * @brief Add arbitrary padding to encrypted data - * @param string $data data to be padded - * @return padded data - * @note In order to end up with data exactly 8192 bytes long we must - * add two letters. It is impossible to achieve exactly 8192 length - * blocks with encryption alone, hence padding is added to achieve the - * required length. - */ + + /** + * @brief Add arbitrary padding to encrypted data + * @param string $data data to be padded + * @return padded data + * @note In order to end up with data exactly 8192 bytes long we must + * add two letters. It is impossible to achieve exactly 8192 length + * blocks with encryption alone, hence padding is added to achieve the + * required length. + */ public static function addPadding( $data ) { - + $padded = $data . 'xx'; - + return $padded; - + } - - /** - * @brief Remove arbitrary padding to encrypted data - * @param string $padded padded data to remove padding from - * @return unpadded data on success, false on error - */ + + /** + * @brief Remove arbitrary padding to encrypted data + * @param string $padded padded data to remove padding from + * @return unpadded data on success, false on error + */ public static function removePadding( $padded ) { - + if ( substr( $padded, -2 ) == 'xx' ) { - + $data = substr( $padded, 0, -2 ); - + return $data; - + } else { - + // TODO: log the fact that unpadded data was submitted for removal of padding return false; - + } - + } - - /** - * @brief Check if a file's contents contains an IV and is symmetrically encrypted - * @return true / false - * @note see also OCA\Encryption\Util->isEncryptedPath() - */ + + /** + * @brief Check if a file's contents contains an IV and is symmetrically encrypted + * @return true / false + * @note see also OCA\Encryption\Util->isEncryptedPath() + */ public static function isCatfile( $content ) { - + if ( !$content ) { - + return false; - + } - + $noPadding = self::removePadding( $content ); - + // Fetch encryption metadata from end of file $meta = substr( $noPadding, -22 ); - + // Fetch IV from end of file $iv = substr( $meta, -16 ); - + // Fetch identifier from start of metadata $identifier = substr( $meta, 0, 6 ); - + if ( $identifier == '00iv00') { - + return true; - + } else { - + return false; - + } - + } - + /** * Check if a file is encrypted according to database file cache * @param string $path * @return bool */ public static function isEncryptedMeta( $path ) { - + // TODO: Use DI to get \OC\Files\Filesystem out of here - + // Fetch all file metadata from DB $metadata = \OC\Files\Filesystem::getFileInfo( $path, '' ); - + // Return encryption status return isset( $metadata['encrypted'] ) and ( bool )$metadata['encrypted']; - + } - - /** - * @brief Check if a file is encrypted via legacy system - * @param string $relPath The path of the file, relative to user/data; - * e.g. filename or /Docs/filename, NOT admin/files/filename - * @return true / false - */ + + /** + * @brief Check if a file is encrypted via legacy system + * @param string $relPath The path of the file, relative to user/data; + * e.g. filename or /Docs/filename, NOT admin/files/filename + * @return true / false + */ public static function isLegacyEncryptedContent( $data, $relPath ) { - + // Fetch all file metadata from DB $metadata = \OC\Files\Filesystem::getFileInfo( $relPath, '' ); - + // If a file is flagged with encryption in DB, but isn't a // valid content + IV combination, it's probably using the // legacy encryption system - if ( - isset( $metadata['encrypted'] ) - and $metadata['encrypted'] === true - and ! self::isCatfile( $data ) + if ( + isset( $metadata['encrypted'] ) + and $metadata['encrypted'] === true + and ! self::isCatfile( $data ) ) { - + return true; - + } else { - + return false; - + } - + } - - /** - * @brief Symmetrically encrypt a string - * @returns encrypted file - */ + + /** + * @brief Symmetrically encrypt a string + * @returns encrypted file + */ public static function encrypt( $plainContent, $iv, $passphrase = '' ) { - + if ( $encryptedContent = openssl_encrypt( $plainContent, 'AES-128-CFB', $passphrase, false, $iv ) ) { return $encryptedContent; - + } else { - + \OC_Log::write( 'Encryption library', 'Encryption (symmetric) of content failed', \OC_Log::ERROR ); - + return false; - + } - + } - - /** - * @brief Symmetrically decrypt a string - * @returns decrypted file - */ + + /** + * @brief Symmetrically decrypt a string + * @returns decrypted file + */ public static function decrypt( $encryptedContent, $iv, $passphrase ) { - + if ( $plainContent = openssl_decrypt( $encryptedContent, 'AES-128-CFB', $passphrase, false, $iv ) ) { return $plainContent; - - + + } else { - + throw new \Exception( 'Encryption library: Decryption (symmetric) of content failed' ); - - return false; - + } - + } - - /** - * @brief Concatenate encrypted data with its IV and padding - * @param string $content content to be concatenated - * @param string $iv IV to be concatenated - * @returns string concatenated content - */ + + /** + * @brief Concatenate encrypted data with its IV and padding + * @param string $content content to be concatenated + * @param string $iv IV to be concatenated + * @returns string concatenated content + */ public static function concatIv ( $content, $iv ) { - + $combined = $content . '00iv00' . $iv; - + return $combined; - + } - - /** - * @brief Split concatenated data and IV into respective parts - * @param string $catFile concatenated data to be split - * @returns array keys: encrypted, iv - */ + + /** + * @brief Split concatenated data and IV into respective parts + * @param string $catFile concatenated data to be split + * @returns array keys: encrypted, iv + */ public static function splitIv ( $catFile ) { - + // Fetch encryption metadata from end of file $meta = substr( $catFile, -22 ); - + // Fetch IV from end of file $iv = substr( $meta, -16 ); - + // Remove IV and IV identifier text to expose encrypted content $encrypted = substr( $catFile, 0, -22 ); - + $split = array( 'encrypted' => $encrypted - , 'iv' => $iv + , 'iv' => $iv ); - + return $split; - + } - - /** - * @brief Symmetrically encrypts a string and returns keyfile content - * @param $plainContent content to be encrypted in keyfile - * @returns encrypted content combined with IV - * @note IV need not be specified, as it will be stored in the returned keyfile - * and remain accessible therein. - */ + + /** + * @brief Symmetrically encrypts a string and returns keyfile content + * @param $plainContent content to be encrypted in keyfile + * @returns encrypted content combined with IV + * @note IV need not be specified, as it will be stored in the returned keyfile + * and remain accessible therein. + */ public static function symmetricEncryptFileContent( $plainContent, $passphrase = '' ) { - + if ( !$plainContent ) { - + return false; - + } - + $iv = self::generateIv(); - + if ( $encryptedContent = self::encrypt( $plainContent, $iv, $passphrase ) ) { - - // Combine content to encrypt with IV identifier and actual IV - $catfile = self::concatIv( $encryptedContent, $iv ); - - $padded = self::addPadding( $catfile ); - - return $padded; - + + // Combine content to encrypt with IV identifier and actual IV + $catfile = self::concatIv( $encryptedContent, $iv ); + + $padded = self::addPadding( $catfile ); + + return $padded; + } else { - + \OC_Log::write( 'Encryption library', 'Encryption (symmetric) of keyfile content failed', \OC_Log::ERROR ); - + return false; - + } - + } /** - * @brief Symmetrically decrypts keyfile content - * @param string $source - * @param string $target - * @param string $key the decryption key - * @returns decrypted content - * - * This function decrypts a file - */ + * @brief Symmetrically decrypts keyfile content + * @param string $source + * @param string $target + * @param string $key the decryption key + * @returns decrypted content + * + * This function decrypts a file + */ public static function symmetricDecryptFileContent( $keyfileContent, $passphrase = '' ) { - + if ( !$keyfileContent ) { - + throw new \Exception( 'Encryption library: no data provided for decryption' ); - + } - + // Remove padding $noPadding = self::removePadding( $keyfileContent ); - + // Split into enc data and catfile $catfile = self::splitIv( $noPadding ); - + if ( $plainContent = self::decrypt( $catfile['encrypted'], $catfile['iv'], $passphrase ) ) { - + return $plainContent; - + } - + } - + /** - * @brief Creates symmetric keyfile content using a generated key - * @param string $plainContent content to be encrypted - * @returns array keys: key, encrypted - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ + * @brief Creates symmetric keyfile content using a generated key + * @param string $plainContent content to be encrypted + * @returns array keys: key, encrypted + * @note symmetricDecryptFileContent() can be used to decrypt files created using this method + * + * This function decrypts a file + */ public static function symmetricEncryptFileContentKeyfile( $plainContent ) { - + $key = self::generateKey(); - + if( $encryptedContent = self::symmetricEncryptFileContent( $plainContent, $key ) ) { - + return array( 'key' => $key - , 'encrypted' => $encryptedContent + , 'encrypted' => $encryptedContent ); - + } else { - + return false; - + } - + } - + /** - * @brief Create asymmetrically encrypted keyfile content using a generated key - * @param string $plainContent content to be encrypted - * @returns array keys: key, encrypted - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ + * @brief Create asymmetrically encrypted keyfile content using a generated key + * @param string $plainContent content to be encrypted + * @returns array keys: key, encrypted + * @note symmetricDecryptFileContent() can be used to decrypt files created using this method + * + * This function decrypts a file + */ public static function multiKeyEncrypt( $plainContent, array $publicKeys ) { - + // Set empty vars to be set by openssl by reference $sealed = ''; $envKeys = array(); - + if( openssl_seal( $plainContent, $sealed, $envKeys, $publicKeys ) ) { - + return array( 'keys' => $envKeys - , 'encrypted' => $sealed + , 'encrypted' => $sealed ); - + } else { - + return false; - + } - - } - - /** - * @brief Asymmetrically encrypt a file using multiple public keys - * @param string $plainContent content to be encrypted - * @returns string $plainContent decrypted string - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ - public static function multiKeyDecrypt( $encryptedContent, $envKey, $privateKey ) { - - if ( !$encryptedContent ) { - - return false; - - } - - if ( openssl_open( $encryptedContent, $plainContent, $envKey, $privateKey ) ) { - - return $plainContent; - - } else { - - \OC_Log::write( 'Encryption library', 'Decryption (asymmetric) of sealed content failed', \OC_Log::ERROR ); - - return false; - - } - - } - - /** - * @brief Asymetrically encrypt a string using a public key - * @returns encrypted file - */ - public static function keyEncrypt( $plainContent, $publicKey ) { - - openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey ); - - return $encryptedContent; - - } - - /** - * @brief Asymetrically decrypt a file using a private key - * @returns decrypted file - */ - public static function keyDecrypt( $encryptedContent, $privatekey ) { - - openssl_private_decrypt( $encryptedContent, $plainContent, $privatekey ); - - return $plainContent; - + } - /** - * @brief Encrypts content symmetrically and generates keyfile asymmetrically - * @returns array containing catfile and new keyfile. - * keys: data, key - * @note this method is a wrapper for combining other crypt class methods - */ + /** + * @brief Asymmetrically encrypt a file using multiple public keys + * @param string $plainContent content to be encrypted + * @returns string $plainContent decrypted string + * @note symmetricDecryptFileContent() can be used to decrypt files created using this method + * + * This function decrypts a file + */ + public static function multiKeyDecrypt( $encryptedContent, $envKey, $privateKey ) { + + if ( !$encryptedContent ) { + + return false; + + } + + if ( openssl_open( $encryptedContent, $plainContent, $envKey, $privateKey ) ) { + + return $plainContent; + + } else { + + \OC_Log::write( 'Encryption library', 'Decryption (asymmetric) of sealed content failed', \OC_Log::ERROR ); + + return false; + + } + + } + + /** + * @brief Asymmetrically encrypt a string using a public key + * @returns encrypted file + */ + public static function keyEncrypt( $plainContent, $publicKey ) { + + openssl_public_encrypt( $plainContent, $encryptedContent, $publicKey ); + + return $encryptedContent; + + } + + /** + * @brief Asymetrically decrypt a file using a private key + * @returns decrypted file + */ + public static function keyDecrypt( $encryptedContent, $privatekey ) { + + openssl_private_decrypt( $encryptedContent, $plainContent, $privatekey ); + + return $plainContent; + + } + + /** + * @brief Encrypts content symmetrically and generates keyfile asymmetrically + * @returns array containing catfile and new keyfile. + * keys: data, key + * @note this method is a wrapper for combining other crypt class methods + */ public static function keyEncryptKeyfile( $plainContent, $publicKey ) { - + // Encrypt plain data, generate keyfile & encrypted file $cryptedData = self::symmetricEncryptFileContentKeyfile( $plainContent ); - + // Encrypt keyfile $cryptedKey = self::keyEncrypt( $cryptedData['key'], $publicKey ); - + return array( 'data' => $cryptedData['encrypted'], 'key' => $cryptedKey ); - + } - - /** - * @brief Takes catfile, keyfile, and private key, and - * performs decryption - * @returns decrypted content - * @note this method is a wrapper for combining other crypt class methods - */ + + /** + * @brief Takes catfile, keyfile, and private key, and + * performs decryption + * @returns decrypted content + * @note this method is a wrapper for combining other crypt class methods + */ public static function keyDecryptKeyfile( $catfile, $keyfile, $privateKey ) { - + // Decrypt the keyfile with the user's private key $decryptedKeyfile = self::keyDecrypt( $keyfile, $privateKey ); - + // Decrypt the catfile symmetrically using the decrypted keyfile $decryptedData = self::symmetricDecryptFileContent( $catfile, $decryptedKeyfile ); - + return $decryptedData; - + } - + /** - * @brief Symmetrically encrypt a file by combining encrypted component data blocks - */ + * @brief Symmetrically encrypt a file by combining encrypted component data blocks + */ public static function symmetricBlockEncryptFileContent( $plainContent, $key ) { - + $crypted = ''; - + $remaining = $plainContent; - + $testarray = array(); - + while( strlen( $remaining ) ) { - + //echo "\n\n\$block = ".substr( $remaining, 0, 6126 ); - + // Encrypt a chunk of unencrypted data and add it to the rest $block = self::symmetricEncryptFileContent( substr( $remaining, 0, 6126 ), $key ); - + $padded = self::addPadding( $block ); - + $crypted .= $block; - + $testarray[] = $block; - + // Remove the data already encrypted from remaining unencrypted data $remaining = substr( $remaining, 6126 ); - + } - - //echo "hags "; - - //echo "\n\n\n\$crypted = $crypted\n\n\n"; - - //print_r($testarray); - + return $crypted; } /** - * @brief Symmetrically decrypt a file by combining encrypted component data blocks - */ + * @brief Symmetrically decrypt a file by combining encrypted component data blocks + */ public static function symmetricBlockDecryptFileContent( $crypted, $key ) { - + $decrypted = ''; - + $remaining = $crypted; - + $testarray = array(); - + while( strlen( $remaining ) ) { - + $testarray[] = substr( $remaining, 0, 8192 ); - + // Decrypt a chunk of unencrypted data and add it to the rest $decrypted .= self::symmetricDecryptFileContent( $remaining, $key ); - + // Remove the data already encrypted from remaining unencrypted data $remaining = substr( $remaining, 8192 ); - + } - - //echo "\n\n\$testarray = "; print_r($testarray); - + return $decrypted; - + } - - /** - * @brief Generates a pseudo random initialisation vector - * @return String $iv generated IV - */ + + /** + * @brief Generates a pseudo random initialisation vector + * @return String $iv generated IV + */ public static function generateIv() { - + if ( $random = openssl_random_pseudo_bytes( 12, $strong ) ) { - + if ( !$strong ) { - + // If OpenSSL indicates randomness is insecure, log error \OC_Log::write( 'Encryption library', 'Insecure symmetric key was generated using openssl_random_pseudo_bytes()', \OC_Log::WARN ); - + } - + // We encode the iv purely for string manipulation // purposes - it gets decoded before use $iv = base64_encode( $random ); - + return $iv; - + } else { - - throw new Exception( 'Generating IV failed' ); - + + throw new \Exception( 'Generating IV failed' ); + } - + } - - /** - * @brief Generate a pseudo random 1024kb ASCII key - * @returns $key Generated key - */ + + /** + * @brief Generate a pseudo random 1024kb ASCII key + * @returns $key Generated key + */ public static function generateKey() { - + // Generate key if ( $key = base64_encode( openssl_random_pseudo_bytes( 183, $strong ) ) ) { - + if ( !$strong ) { - + // If OpenSSL indicates randomness is insecure, log error - throw new Exception ( 'Encryption library, Insecure symmetric key was generated using openssl_random_pseudo_bytes()' ); - + throw new \Exception ( 'Encryption library, Insecure symmetric key was generated using openssl_random_pseudo_bytes()' ); + } - + return $key; - + } else { - + return false; - + } - + } - public static function changekeypasscode( $oldPassword, $newPassword ) { - - if ( \OCP\User::isLoggedIn() ) { - - $key = Keymanager::getPrivateKey( $user, $view ); - - if ( ( $key = Crypt::symmetricDecryptFileContent($key,$oldpasswd) ) ) { - - if ( ( $key = Crypt::symmetricEncryptFileContent( $key, $newpasswd ) ) ) { - - Keymanager::setPrivateKey( $key ); - - return true; - } - - } - - } - - return false; - - } - /** * @brief Get the blowfish encryption handeler for a key * @param $key string (optional) @@ -641,21 +608,21 @@ class Crypt { * if the key is left out, the default handeler will be used */ public static function getBlowfish( $key = '' ) { - + if ( $key ) { - + return new \Crypt_Blowfish( $key ); - + } else { - + return false; - + } - + } - + public static function legacyCreateKey( $passphrase ) { - + // Generate a random integer $key = mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ) . mt_rand( 10000, 99999 ); @@ -663,9 +630,9 @@ class Crypt { $legacyEncKey = self::legacyEncrypt( $key, $passphrase ); return $legacyEncKey; - + } - + /** * @brief encrypts content using legacy blowfish system * @param $content the cleartext message you want to encrypt @@ -675,54 +642,54 @@ class Crypt { * This function encrypts an content */ public static function legacyEncrypt( $content, $passphrase = '' ) { - + $bf = self::getBlowfish( $passphrase ); - + return $bf->encrypt( $content ); - + } - + /** - * @brief decrypts content using legacy blowfish system - * @param $content the cleartext message you want to decrypt - * @param $key the encryption key (optional) - * @returns cleartext content - * - * This function decrypts an content - */ + * @brief decrypts content using legacy blowfish system + * @param $content the cleartext message you want to decrypt + * @param $key the encryption key (optional) + * @returns cleartext content + * + * This function decrypts an content + */ public static function legacyDecrypt( $content, $passphrase = '' ) { - + $bf = self::getBlowfish( $passphrase ); - + $decrypted = $bf->decrypt( $content ); - + $trimmed = rtrim( $decrypted, "\0" ); - + return $trimmed; - + } - + public static function legacyKeyRecryptKeyfile( $legacyEncryptedContent, $legacyPassphrase, $publicKey, $newPassphrase ) { - + $decrypted = self::legacyDecrypt( $legacyEncryptedContent, $legacyPassphrase ); - + $recrypted = self::keyEncryptKeyfile( $decrypted, $publicKey ); - + return $recrypted; - + } - + /** - * @brief Re-encryptes a legacy blowfish encrypted file using AES with integrated IV - * @param $legacyContent the legacy encrypted content to re-encrypt - * @returns cleartext content - * - * This function decrypts an content - */ + * @brief Re-encryptes a legacy blowfish encrypted file using AES with integrated IV + * @param $legacyContent the legacy encrypted content to re-encrypt + * @returns cleartext content + * + * This function decrypts an content + */ public static function legacyRecrypt( $legacyContent, $legacyPassphrase, $newPassphrase ) { - + // TODO: write me - + } - + } \ No newline at end of file diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 0d0380db6ec..95587797154 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -28,7 +28,7 @@ namespace OCA\Encryption; * @note Where a method requires a view object, it's root must be '/' */ class Keymanager { - + /** * @brief retrieve the ENCRYPTED private key from a user * @@ -46,8 +46,8 @@ class Keymanager { /** * @brief retrieve public key for a specified user - * @param \OC_FilesystemView $view - * @param $userId + * @param \OC_FilesystemView $view + * @param $userId * @return string public key or false */ public static function getPublicKey( \OC_FilesystemView $view, $userId ) { @@ -58,8 +58,8 @@ class Keymanager { /** * @brief retrieve both keys from a user (private and public) - * @param \OC_FilesystemView $view - * @param $userId + * @param \OC_FilesystemView $view + * @param $userId * @return array keys: privateKey, publicKey */ public static function getUserKeys( \OC_FilesystemView $view, $userId ) { @@ -148,11 +148,11 @@ class Keymanager { /** * @brief retrieve keyfile for an encrypted file - * @param \OC_FilesystemView $view - * @param $userId - * @param $filePath - * @internal param \OCA\Encryption\file $string name - * @return string file key or false + * @param \OC_FilesystemView $view + * @param $userId + * @param $filePath + * @internal param \OCA\Encryption\file $string name + * @return string file key or false * @note The keyfile returned is asymmetrically encrypted. Decryption * of the keyfile must be performed by client code */ @@ -177,12 +177,12 @@ class Keymanager { /** * @brief Delete a keyfile * - * @param OC_FilesystemView $view - * @param string $userId username - * @param string $path path of the file the key belongs to - * @return bool Outcome of unlink operation - * @note $path must be relative to data/user/files. e.g. mydoc.txt NOT - * /data/admin/files/mydoc.txt + * @param OC_FilesystemView $view + * @param string $userId username + * @param string $path path of the file the key belongs to + * @return bool Outcome of unlink operation + * @note $path must be relative to data/user/files. e.g. mydoc.txt NOT + * /data/admin/files/mydoc.txt */ public static function deleteFileKey( \OC_FilesystemView $view, $userId, $path ) { @@ -220,12 +220,11 @@ class Keymanager { \OC_FileProxy::$enabled = false; - if ( !$view->file_exists( '' ) ) $view->mkdir( '' ); + if ( !$view->file_exists( '' ) ) + $view->mkdir( '' ); return $view->file_put_contents( $user . '.private.key', $key ); - - \OC_FileProxy::$enabled = true; - + } /** @@ -253,24 +252,24 @@ class Keymanager { \OC_FileProxy::$enabled = false; - if ( !$view->file_exists( '' ) ) $view->mkdir( '' ); + if ( !$view->file_exists( '' ) ) + $view->mkdir( '' ); return $view->file_put_contents( \OCP\User::getUser() . '.public.key', $key ); - - \OC_FileProxy::$enabled = true; + } /** - * @brief store file encryption key - * - * @param string $path relative path of the file, including filename - * @param string $key - * @param null $view - * @param string $dbClassName - * @return bool true/false - * @note The keyfile is not encrypted here. Client code must - * asymmetrically encrypt the keyfile before passing it to this method + * @brief store file encryption key + * + * @param string $path relative path of the file, including filename + * @param string $key + * @param null $view + * @param string $dbClassName + * @return bool true/false + * @note The keyfile is not encrypted here. Client code must + * asymmetrically encrypt the keyfile before passing it to this method */ public static function setShareKey( \OC_FilesystemView $view, $path, $userId, $shareKey ) { @@ -280,54 +279,38 @@ class Keymanager { return $view->file_put_contents( $basePath . '/' . $shareKeyPath . '.shareKey', $shareKey ); - } - - /** - * @brief Make preparations to vars and filesystem for saving a keyfile - */ - public static function keySetPreparation( \OC_FilesystemView $view, $path, $basePath, $userId ) { + } + + /** + * @brief Make preparations to vars and filesystem for saving a keyfile + */ + public static function keySetPreparation( \OC_FilesystemView $view, $path, $basePath, $userId ) { $targetPath = ltrim( $path, '/' ); $path_parts = pathinfo( $targetPath ); // If the file resides within a subdirectory, create it - if ( - isset( $path_parts['dirname'] ) - && ! $view->file_exists( $basePath . '/' . $path_parts['dirname'] ) + if ( + isset( $path_parts['dirname'] ) + && ! $view->file_exists( $basePath . '/' . $path_parts['dirname'] ) ) { $view->mkdir( $basePath . '/' . $path_parts['dirname'] ); } - return $targetPath; - - } + return $targetPath; - /** - * @brief change password of private encryption key - * - * @param string $oldpasswd old password - * @param string $newpasswd new password - * @return bool true/false - */ - public static function changePasswd($oldpasswd, $newpasswd) { - - if ( \OCP\User::checkPassword(\OCP\User::getUser(), $newpasswd) ) { - return Crypt::changekeypasscode($oldpasswd, $newpasswd); - } - return false; - } - + /** * @brief Fetch the legacy encryption key from user files * @param string $login used to locate the legacy key * @param string $passphrase used to decrypt the legacy key * @return true / false * - * if the key is left out, the default handeler will be used + * if the key is left out, the default handler will be used */ public function getLegacyKey() { diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index d4b993b4c06..65d7d57a05a 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -173,7 +173,7 @@ class Stream { // $count will always be 8192 https://bugs.php.net/bug.php?id=21641 // This makes this function a lot simpler, but will break this class if the above 'bug' gets 'fixed' - \OCP\Util::writeLog( 'files_encryption', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', OCP\Util::FATAL ); + \OCP\Util::writeLog( 'files_encryption', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', \OCP\Util::FATAL ); die(); @@ -209,7 +209,7 @@ class Stream { } /** - * @brief Encrypt and pad data ready for writting to disk + * @brief Encrypt and pad data ready for writing to disk * @param string $plainData data to be encrypted * @param string $key key to use for encryption * @return encrypted data on success, false on failure @@ -403,7 +403,7 @@ class Stream { $encrypted = $this->preWriteEncrypt( $chunk, $this->keyfile ); // Write the data chunk to disk. This will be - // addended to the last data chunk if the file + // attended to the last data chunk if the file // being handled totals more than 6126 bytes fwrite( $this->handle, $encrypted ); diff --git a/apps/files_encryption/settings-personal.php b/apps/files_encryption/settings-personal.php index 6fe4ea6d564..af0273cfdc4 100644 --- a/apps/files_encryption/settings-personal.php +++ b/apps/files_encryption/settings-personal.php @@ -12,8 +12,6 @@ $blackList = explode( ',', \OCP\Config::getAppValue( 'files_encryption', 'type_b $tmpl->assign( 'blacklist', $blackList ); -OCP\Util::addscript('files_encryption','settings-personal'); - return $tmpl->fetchPage(); return null; diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index 1f71efb1735..47467c52c08 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -16,7 +16,7 @@ -

+ From 0664b98b4ff3a8dd8c1b97732cdb60d2b7077636 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 9 Feb 2013 18:09:03 +0100 Subject: [PATCH 91/91] added icons and mimetypes for .msi and .exe files --- core/img/filetypes/application.png | Bin 0 -> 464 bytes lib/mimetypes.list.php | 2 ++ 2 files changed, 2 insertions(+) create mode 100644 core/img/filetypes/application.png diff --git a/core/img/filetypes/application.png b/core/img/filetypes/application.png new file mode 100644 index 0000000000000000000000000000000000000000..1dee9e366094e87db68c606d0522d72d4b939818 GIT binary patch literal 464 zcmV;>0WbcEP)8e6`gpm!y1M!N^ZV(=IC*t) z{^;nqJv-tM$9J1L2QJ2DN!#51=1_l@G`2=6e0lehL%sic%`_4--LFM}IF!KzJCseW zq1I3__Z40|e?qyK1__gzP(qrBf-G7SQbQ`#Lw94WVe(o`qg+f4hy;Qju)q#I(9{`% zQmAGomzhQ!b|gq>KqL@IkO~$=Koi}a$u6d07kiS}NoYVMJjAeZpaB*;wwcDdEbK@K zNP;B7RzhQ|H9AlUO<`J>m1(5R)Pb-iLBb@7Jp)}LHdAb-VVgYxVoTzGoqu{~a>6uj zeqCRFI9pC#h09bGwy9;oHcp6(RB%jeY^F=Ll!S+9JkVe4nDG7tJMQiP0000 'application/illustrator', 'epub' => 'application/epub+zip', 'mobi' => 'application/x-mobipocket-ebook', + 'exe' => 'application', + 'msi' => 'application' );
From c72537cd852583b64914e1e8da55d8520e64d554 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 7 Feb 2013 12:42:09 +0100 Subject: [PATCH 37/91] don't call the delete button unshare, unshare operation no longer available --- apps/files/js/fileactions.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index af3fc483910..e1d8b60d315 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -112,10 +112,7 @@ var FileActions = { if (img.call) { img = img(file); } - // NOTE: Temporary fix to allow unsharing of files in root of Shared folder - if ($('#dir').val() == '/Shared') { - var html = ''; - } else if (typeof trashBinApp !== 'undefined' && trashBinApp) { + if (typeof trashBinApp !== 'undefined' && trashBinApp) { var html = ''; } else { var html = ''; From c81d7b0b903b15e57676ea249ee90707c1d7a3f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 7 Feb 2013 12:45:27 +0100 Subject: [PATCH 38/91] OCA_Versions is now known as OCA\Files_Versions --- apps/files_trashbin/lib/trash.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index e41dcb096c9..10808ca717b 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -65,7 +65,7 @@ class Trashbin { if ( \OCP\App::isEnabled('files_versions') ) { if ( $view->is_dir('files_versions'.$file_path) ) { $view->rename('files_versions'.$file_path, 'versions_trashbin/'. $deleted.'.d'.$timestamp); - } else if ( $versions = \OCA_Versions\Storage::getVersions($file_path) ) { + } else if ( $versions = \OCA\Files_Versions\Storage::getVersions($file_path) ) { foreach ($versions as $v) { $view->rename('files_versions'.$v['path'].'.v'.$v['version'], 'versions_trashbin/'. $deleted.'.v'.$v['version'].'.d'.$timestamp); } From 7e874af2c89b5d3c07dae45614693dade74b190e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Thu, 7 Feb 2013 13:14:45 +0100 Subject: [PATCH 39/91] rename OCA_Trash to OCA\Files_Trashbin --- apps/files_trashbin/ajax/delete.php | 2 +- apps/files_trashbin/ajax/undelete.php | 2 +- apps/files_trashbin/appinfo/app.php | 6 +++--- apps/files_trashbin/lib/hooks.php | 2 +- apps/files_trashbin/lib/trash.php | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index a166ce55c88..b3d41f1be64 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -15,7 +15,7 @@ if ($path_parts['dirname'] == '.') { $timestamp = null; } -if (OCA_Trash\Trashbin::delete($filename, $timestamp)) { +if (OCA\Files_Trashbin\Trashbin::delete($filename, $timestamp)) { error_log("feinifeini"); OCP\JSON::success(array("data" => array("filename" => $file))); } else { diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index ee1c64aaaf2..a118d003de7 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -22,7 +22,7 @@ foreach ($list as $file) { $timestamp = null; } - if ( !OCA_Trash\Trashbin::restore($file, $filename, $timestamp) ) { + if ( !OCA\Files_Trashbin\Trashbin::restore($file, $filename, $timestamp) ) { $error[] = $filename; } else { $success[$i]['filename'] = $file; diff --git a/apps/files_trashbin/appinfo/app.php b/apps/files_trashbin/appinfo/app.php index 3741d42c781..b1a15cd13d1 100644 --- a/apps/files_trashbin/appinfo/app.php +++ b/apps/files_trashbin/appinfo/app.php @@ -1,7 +1,7 @@ Date: Thu, 7 Feb 2013 13:16:15 +0100 Subject: [PATCH 40/91] remove debug output --- apps/files_trashbin/ajax/delete.php | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index b3d41f1be64..7ea0155724f 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -16,7 +16,6 @@ if ($path_parts['dirname'] == '.') { } if (OCA\Files_Trashbin\Trashbin::delete($filename, $timestamp)) { - error_log("feinifeini"); OCP\JSON::success(array("data" => array("filename" => $file))); } else { OCP\JSON::error(array("data" => array("message" => "Couldn't delete ".$file. " permanently"))); From 15e383fd013ab44f6f0b3edcbbde206dadb33219 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 7 Feb 2013 16:05:45 +0100 Subject: [PATCH 41/91] Typo --- apps/user_ldap/lib/connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 9b440da4f9f..f92779b1cad 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -412,7 +412,7 @@ class Connection { if((strpos($this->config['ldapHost'], 'ldaps') === 0) && $this->config['ldapTLS']) { $this->config['ldapTLS'] = false; - \OCP\Util::writeLog('user_ldap', 'LDAPS (already using secure connection) and TLS do not work together. Switched of TLS.', \OCP\Util::INFO); + \OCP\Util::writeLog('user_ldap', 'LDAPS (already using secure connection) and TLS do not work together. Switched off TLS.', \OCP\Util::INFO); } From 488ab0dba2bc6d48968255943edaef7174757308 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 7 Feb 2013 16:17:54 +0100 Subject: [PATCH 42/91] l10n support enhanced in files_version --- apps/files_versions/ajax/rollbackVersion.php | 3 ++- apps/files_versions/history.php | 19 +++++++++++++------ apps/files_versions/templates/history.php | 2 +- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index dc5a59cb4af..216051dbcb0 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -11,6 +11,7 @@ $revision=(int)$_GET['revision']; if(OCA\Files_Versions\Storage::rollback( $file, $revision )) { OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file ))); }else{ - OCP\JSON::error(array("data" => array( "message" => "Could not revert:" . $file ))); + $l = OC_L10N::get('files_versions'); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", $file )))); } diff --git a/apps/files_versions/history.php b/apps/files_versions/history.php index 1bd5cde44be..437a3fec065 100644 --- a/apps/files_versions/history.php +++ b/apps/files_versions/history.php @@ -24,6 +24,7 @@ OCP\User::checkLoggedIn( ); OCP\Util::addStyle('files_versions', 'versions'); $tmpl = new OCP\Template( 'files_versions', 'history', 'user' ); +$l = OC_L10N::get('files_versions'); if ( isset( $_GET['path'] ) ) { @@ -36,15 +37,21 @@ if ( isset( $_GET['path'] ) ) { if( $versions->rollback( $path, $_GET['revert'] ) ) { - $tmpl->assign( 'outcome_stat', 'success' ); + $tmpl->assign( 'outcome_stat', $l->t('success') ); - $tmpl->assign( 'outcome_msg', "File {$_GET['path']} was reverted to version ".OCP\Util::formatDate( doubleval($_GET['revert']) ) ); + $message = $l->t('File %s was reverted to version %s', + array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) ); + + $tmpl->assign( 'outcome_msg', $message); } else { - $tmpl->assign( 'outcome_stat', 'failure' ); + $tmpl->assign( 'outcome_stat', $l->t('failure') ); - $tmpl->assign( 'outcome_msg', "File {$_GET['path']} could not be reverted to version ".OCP\Util::formatDate( doubleval($_GET['revert']) ) ); + $message = $l->t('File %s could not be reverted to version %s', + array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) ); + + $tmpl->assign( 'outcome_msg', $message); } @@ -58,12 +65,12 @@ if ( isset( $_GET['path'] ) ) { }else{ - $tmpl->assign( 'message', 'No old versions available' ); + $tmpl->assign( 'message', $l->t('No old versions available') ); } }else{ - $tmpl->assign( 'message', 'No path specified' ); + $tmpl->assign( 'message', $l->t('No path specified') ); } diff --git a/apps/files_versions/templates/history.php b/apps/files_versions/templates/history.php index cc5a494f19e..850ece89c98 100644 --- a/apps/files_versions/templates/history.php +++ b/apps/files_versions/templates/history.php @@ -17,7 +17,7 @@ if( isset( $_['message'] ) ) { } echo( 'Versions of '.$_['path'] ).'
'; - echo('

Revert a file to a previous version by clicking on its revert button


'); + echo('

'.$l->t('Revert a file to a previous version by clicking on its revert button').'


'); foreach ( $_['versions'] as $v ) { echo ' '; From 18a288a3c3612db731e13d38da5786e622d6e9ec Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 7 Feb 2013 16:31:04 +0100 Subject: [PATCH 43/91] l10n support enhanced in files_trashbin --- apps/files_trashbin/ajax/delete.php | 3 ++- apps/files_trashbin/ajax/undelete.php | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index 7ea0155724f..7a6bd1342ea 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -18,6 +18,7 @@ if ($path_parts['dirname'] == '.') { if (OCA\Files_Trashbin\Trashbin::delete($filename, $timestamp)) { OCP\JSON::success(array("data" => array("filename" => $file))); } else { - OCP\JSON::error(array("data" => array("message" => "Couldn't delete ".$file. " permanently"))); + $l = OC_L10N::get('files_trashbin'); + OCP\JSON::error(array("data" => array("message" => $l->t("Couldn't delete %s permanently", array($file))))); } diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index a118d003de7..cc010979c51 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -37,8 +37,10 @@ if ( $error ) { foreach ( $error as $e ) { $filelist .= $e.', '; } - OCP\JSON::error(array("data" => array("message" => "Couldn't restore ".rtrim($filelist,', '), "success" => $success, "error" => $error))); + $l = OC_L10N::get('files_trashbin'); + $message = $l->t("Couldn't restore %s", array(rtrim($filelist,', '))); + OCP\JSON::error(array("data" => array("message" => $message, + "success" => $success, "error" => $error))); } else { OCP\JSON::success(array("data" => array("success" => $success))); } - From e0212c11747423abc3720901cf69e69171aa5f9d Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 7 Feb 2013 16:34:57 +0100 Subject: [PATCH 44/91] l10n support enhanced in files_versions --- apps/files_versions/ajax/rollbackVersion.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index 216051dbcb0..2970915ac63 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -12,6 +12,6 @@ if(OCA\Files_Versions\Storage::rollback( $file, $revision )) { OCP\JSON::success(array("data" => array( "revision" => $revision, "file" => $file ))); }else{ $l = OC_L10N::get('files_versions'); - OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", $file )))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not revert: %s", array($file) )))); } From 5f92d269dc83762bbf200158149eec1e605c98a6 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 7 Feb 2013 16:49:36 +0100 Subject: [PATCH 45/91] l10n support enhanced in core --- core/ajax/vcategories/add.php | 2 +- core/ajax/vcategories/removeFromFavorites.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/ajax/vcategories/add.php b/core/ajax/vcategories/add.php index 23d00af70ab..16a1461be08 100644 --- a/core/ajax/vcategories/add.php +++ b/core/ajax/vcategories/add.php @@ -34,7 +34,7 @@ debug(print_r($category, true)); $categories = new OC_VCategories($type); if($categories->hasCategory($category)) { - bailOut(OC_Contacts_App::$l10n->t('This category already exists: '.$category)); + bailOut($l->t('This category already exists: %s', array($category))); } else { $categories->add($category, true); } diff --git a/core/ajax/vcategories/removeFromFavorites.php b/core/ajax/vcategories/removeFromFavorites.php index ba6e95c2497..78a528caa86 100644 --- a/core/ajax/vcategories/removeFromFavorites.php +++ b/core/ajax/vcategories/removeFromFavorites.php @@ -27,12 +27,12 @@ if(is_null($type)) { } if(is_null($id)) { - bailOut($l->t('%s ID not provided.', $type)); + bailOut($l->t('%s ID not provided.', array($type))); } $categories = new OC_VCategories($type); if(!$categories->removeFromFavorites($id, $type)) { - bailOut($l->t('Error removing %s from favorites.', $id)); + bailOut($l->t('Error removing %s from favorites.', array($id))); } OC_JSON::success(); From 867dc8e6dc163060d277c6f728dcc7efd96a8a50 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 7 Feb 2013 16:57:54 +0100 Subject: [PATCH 46/91] fix database labels having left padding --- core/css/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/styles.css b/core/css/styles.css index 268040525bf..ac52d87d1f9 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -200,6 +200,7 @@ input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; } p.infield { position:relative; } label.infield { cursor:text !important; top:1.05em; left:.85em; } #login form label.infield { position:absolute; font-size:19px; color:#aaa; white-space:nowrap; padding-left:1.4em; } +#login #databaseField .infield { padding-left:0; } #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } #login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } From ae7a80ede3a27c9f77d163108592716dae9ea312 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 7 Feb 2013 17:02:43 +0100 Subject: [PATCH 47/91] some comments for CSS documentation --- core/css/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index ac52d87d1f9..9f673c41c30 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -166,7 +166,6 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b #login #datadirContent label { display:block; margin:0; color:#999; } #login form #datadirField legend { margin-bottom:15px; } - /* Icons for username and password fields to better recognize them */ #adminlogin, #adminpass, #user, #password { width:11.7em!important; padding-left:1.8em; } #adminlogin+label+img, #adminpass+label+img, #user+label+img, #password+label+img { @@ -177,7 +176,6 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; } #pass_image { position: absolute; top: 1.2em; left: 1.4em; opacity: 0.3; } - /* Nicely grouping input field sets */ .grouptop input { margin-bottom:0; @@ -194,9 +192,9 @@ input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; } box-shadow:0 1px 1px #fff,0 1px 0 #ddd inset; } +/* In field labels. No, HTML placeholder does not work as well. */ #login form label { color:#666; } #login .groupmiddle label, #login .groupbottom label { top:.65em; } -/* NEEDED FOR INFIELD LABELS */ p.infield { position:relative; } label.infield { cursor:text !important; top:1.05em; left:.85em; } #login form label.infield { position:absolute; font-size:19px; color:#aaa; white-space:nowrap; padding-left:1.4em; } @@ -204,6 +202,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } #login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } +/* Database selector */ #login form #selectDbType { text-align:center; } #login form #selectDbType label { position:static; margin:0 -3px 5px; padding:.4em; @@ -213,6 +212,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#000; background-color:#e8e8e8; } +/* Warnings */ fieldset.warning { padding:8px; color:#b94a48; background-color:#f2dede; border:1px solid #eed3d7; From ee6884e33649881731793b29e0605e0beb193c46 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 7 Feb 2013 17:04:03 +0100 Subject: [PATCH 48/91] remove duplicate show password toggle code, move current one to proper location --- core/css/styles.css | 30 +++++++++++------------------- 1 file changed, 11 insertions(+), 19 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 9f673c41c30..18c41e93f41 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -59,25 +59,6 @@ input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:# ::-webkit-scrollbar-thumb { background:#ddd; } -#show { float: right; position: absolute; right: 1em; top: 0.8em; display:none; } -#login form input[name="show"] + label { background: url("../img/actions/toggle.png") no-repeat; opacity:0.3; -float: right; width: 24px; position: absolute !important; height: 14px; right: 1em; top: 1.25em;} -#login form input[name="show"]:checked + label { background:url("../img/actions/toggle.png") no-repeat; opacity:0.8; } - - - -/* SHOW PASSWORD TOGGLE */ -#show { - position:absolute; right:1em; top:.8em; float:right; - display:none; -} -#login form input[name="show"] + label { - position:absolute !important; height:14px; width:24px; right:1em; top:1.25em; float:right; - background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat; opacity:.3; -} -#login form input[name="show"]:checked + label { opacity:.8; } - - /* BUTTONS */ input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a { width:auto; padding:.4em; @@ -202,6 +183,17 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } #login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } +/* Show password toggle */ +#show { + position:absolute; right:1em; top:.8em; float:right; + display:none; +} +#login form input[name="show"] + label { + position:absolute !important; height:14px; width:24px; right:1em; top:1.25em; float:right; + background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat; opacity:.3; +} +#login form input[name="show"]:checked + label { opacity:.8; } + /* Database selector */ #login form #selectDbType { text-align:center; } #login form #selectDbType label { From 32e739f2ae2eebb7b169052463aa73fb452d5afb Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 7 Feb 2013 17:41:24 +0100 Subject: [PATCH 49/91] make show password not specific to log in --- core/css/styles.css | 11 +++++------ core/templates/login.php | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 18c41e93f41..ebb59f08fa1 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -149,13 +149,12 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b /* Icons for username and password fields to better recognize them */ #adminlogin, #adminpass, #user, #password { width:11.7em!important; padding-left:1.8em; } -#adminlogin+label+img, #adminpass+label+img, #user+label+img, #password+label+img { +#adminlogin+label+img, #adminpass+label+img, #user+label+img, #password-icon { position:absolute; left:1.25em; top:1.65em; opacity:.3; } -#adminpass+label+img, #password+label+img { top:1.1em; } +#adminpass+label+img, #password-icon { top:1.1em; } input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; } -#pass_image { position: absolute; top: 1.2em; left: 1.4em; opacity: 0.3; } /* Nicely grouping input field sets */ .grouptop input { @@ -188,11 +187,11 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } position:absolute; right:1em; top:.8em; float:right; display:none; } -#login form input[name="show"] + label { - position:absolute !important; height:14px; width:24px; right:1em; top:1.25em; float:right; +#show + label { + position:absolute!important; height:14px; width:24px; right:1em; top:1.25em!important; background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat; opacity:.3; } -#login form input[name="show"]:checked + label { opacity:.8; } +#show:checked + label { opacity:.8; } /* Database selector */ #login form #selectDbType { text-align:center; } diff --git a/core/templates/login.php b/core/templates/login.php index e66d27f6d69..3be2b039b03 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -33,7 +33,7 @@ /> - +

From 1ef3e4c5c66b9b261952ac780bbc1cd69f5fe404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 7 Feb 2013 17:42:03 +0100 Subject: [PATCH 50/91] simplyfy mimetype parsing of 'file' output --- lib/helper.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index 0e549d006a1..a0fbdd10394 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -394,13 +394,12 @@ class OC_Helper { // it looks like we have a 'file' command, // lets see if it does have mime support $path=escapeshellarg($path); - $fp = popen("file -i -b $path 2>/dev/null", "r"); + $fp = popen("file -b --mime-type $path 2>/dev/null", "r"); $reply = fgets($fp); pclose($fp); - // we have smth like 'text/x-c++; charset=us-ascii\n' - // and need to eliminate everything starting with semicolon including trailing LF - $mimeType = preg_replace('/;.*/ms', '', trim($reply)); + //trim the newline + $mimeType = trim($reply); } return $mimeType; From afa1a6d2b3cc1b07c7e99b370ad88f9473c50add Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 7 Feb 2013 17:53:38 +0100 Subject: [PATCH 51/91] Don't try to use routes when called from cli --- lib/base.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lib/base.php b/lib/base.php index b432f282aaf..5bfdb0b7c0a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -554,14 +554,16 @@ class OC { self::checkUpgrade(); } - try { - OC::getRouter()->match(OC_Request::getPathInfo()); - return; - } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { - //header('HTTP/1.0 404 Not Found'); - } catch (Symfony\Component\Routing\Exception\MethodNotAllowedException $e) { - OC_Response::setStatus(405); - return; + if (!self::$CLI) { + try { + OC::getRouter()->match(OC_Request::getPathInfo()); + return; + } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { + //header('HTTP/1.0 404 Not Found'); + } catch (Symfony\Component\Routing\Exception\MethodNotAllowedException $e) { + OC_Response::setStatus(405); + return; + } } $app = OC::$REQUESTEDAPP; From 20b6cb28b16fd663ea386fd6faf6c3129a97f42b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 7 Feb 2013 18:07:27 +0100 Subject: [PATCH 52/91] Fix warning with displayname in user layout template --- core/templates/layout.user.php | 2 +- lib/templatelayout.php | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 2547278547f..ecba54497c7 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -1,7 +1,7 @@ - <?php echo isset($_['application']) && !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud <?php echo OC_User::getDisplayName()?' ('.OC_Util::sanitizeHTML(OC_User::getDisplayName()).') ':'' ?> + <?php echo !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud <?php echo !empty($_['user_displayname'])?' ('.$_['user_displayname'].') ':'' ?> diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 37ece91047f..28bdca6be0a 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -19,6 +19,7 @@ class OC_TemplateLayout extends OC_Template { } // Add navigation entry + $this->assign( 'application', '', false ); $navigation = OC_App::getNavigation(); $this->assign( 'navigation', $navigation, false); $this->assign( 'settingsnavigation', OC_App::getSettingsNavigation(), false); @@ -28,6 +29,8 @@ class OC_TemplateLayout extends OC_Template { break; } } + $user_displayname = OC_User::getDisplayName(); + $this->assign( 'user_displayname', $user_displayname ); } else if ($renderas == 'guest') { parent::__construct('core', 'layout.guest'); } else { From 8ca730f4c103a88ee26941772624163f236d3eab Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 7 Feb 2013 18:04:14 +0100 Subject: [PATCH 53/91] make show password toggle work for installation (once #1525 is fixed) --- core/css/styles.css | 4 ++-- core/templates/installation.php | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index ebb59f08fa1..cefab2d49ff 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -149,11 +149,11 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b /* Icons for username and password fields to better recognize them */ #adminlogin, #adminpass, #user, #password { width:11.7em!important; padding-left:1.8em; } -#adminlogin+label+img, #adminpass+label+img, #user+label+img, #password-icon { +#adminlogin+label+img, #adminpass-icon, #user+label+img, #password-icon { position:absolute; left:1.25em; top:1.65em; opacity:.3; } -#adminpass+label+img, #password-icon { top:1.1em; } +#adminpass-icon, #password-icon { top:1.1em; } input[name="password-clone"] { padding-left:1.8em; width:11.7em !important; } /* Nicely grouping input field sets */ diff --git a/core/templates/installation.php b/core/templates/installation.php index 03c580c9b0b..f3d232b637e 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -40,9 +40,11 @@

- + - + + +

From f3f55654ce0202bcb00e692ea318b2f165354746 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 7 Feb 2013 18:28:56 +0100 Subject: [PATCH 54/91] Use dummy request method in CLI --- lib/router.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/router.php b/lib/router.php index 746b68c2c0c..fbf56a1bb42 100644 --- a/lib/router.php +++ b/lib/router.php @@ -23,7 +23,11 @@ class OC_Router { public function __construct() { $baseUrl = OC_Helper::linkTo('', 'index.php'); - $method = $_SERVER['REQUEST_METHOD']; + if (OC::$CLI) { + $method = $_SERVER['REQUEST_METHOD']; + }else{ + $method = 'GET'; + } $host = OC_Request::serverHost(); $schema = OC_Request::serverProtocol(); $this->context = new RequestContext($baseUrl, $method, $host, $schema); From 73ed62976de60ed1ab6728944d638e5b9b4b4e10 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 7 Feb 2013 18:30:01 +0100 Subject: [PATCH 55/91] Fix previous commit --- lib/router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/router.php b/lib/router.php index fbf56a1bb42..dbaca9e0d5d 100644 --- a/lib/router.php +++ b/lib/router.php @@ -23,7 +23,7 @@ class OC_Router { public function __construct() { $baseUrl = OC_Helper::linkTo('', 'index.php'); - if (OC::$CLI) { + if ( !OC::$CLI) { $method = $_SERVER['REQUEST_METHOD']; }else{ $method = 'GET'; From a82d18d2f8e13edab296daaf2bda917381e78810 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 7 Feb 2013 21:13:57 +0100 Subject: [PATCH 56/91] Fill oc_webroot with the expected value --- core/js/js.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/js/js.js b/core/js/js.js index 80914e954e5..c137f734d91 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -8,6 +8,7 @@ var oc_debug; var oc_webroot; var oc_requesttoken; +oc_webroot = oc_webroot || location.pathname.substr(0, location.pathname.lastIndexOf('/')); if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") { if (!window.console) { window.console = {}; From b67251b0ffbba5d52802ced8e1ff02f408be8cc7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 7 Feb 2013 23:57:18 +0100 Subject: [PATCH 57/91] Files: add translation support back to move/rename --- apps/files/ajax/move.php | 6 +++--- apps/files/ajax/rename.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 78ed218c136..03d2a6a5624 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -12,7 +12,7 @@ $file = stripslashes($_POST["file"]); $target = stripslashes(rawurldecode($_POST["target"])); if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file - File with this name already exists" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) ))); exit; } @@ -22,8 +22,8 @@ if ($dir != '' || $file != 'Shared') { if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file ))); } else { - OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) ))); } }else{ - OCP\JSON::error(array("data" => array( "message" => "Could not move $file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) ))); } diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 970aaa638da..2364e477d93 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -17,8 +17,8 @@ if ( $newname !== '.' and ($dir != '' || $file != 'Shared') and $newname !== '.' if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname ))); } else { - OCP\JSON::error(array("data" => array( "message" => "Unable to rename file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); } }else{ - OCP\JSON::error(array("data" => array( "message" => "Unable to rename file" ))); + OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") ))); } From 5ef9d96d10c2984f0a5c19f299312492387b5aec Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 7 Feb 2013 23:59:14 +0100 Subject: [PATCH 58/91] Files: rename 'space' to 'storage' in upload.php --- apps/files/ajax/upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 676612c0e42..07977f5ddf1 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -49,7 +49,7 @@ foreach ($files['size'] as $size) { $totalSize += $size; } if ($totalSize > \OC\Files\Filesystem::free_space($dir)) { - OCP\JSON::error(array('data' => array('message' => $l->t('Not enough space available'), + OCP\JSON::error(array('data' => array('message' => $l->t('Not enough storage available'), 'uploadMaxFilesize' => $maxUploadFilesize, 'maxHumanFilesize' => $maxHumanFilesize))); exit(); From 59249ebc0ca3731711ee99d591742164b32d0cdd Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 8 Feb 2013 00:13:16 +0100 Subject: [PATCH 59/91] [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 1 + apps/files/l10n/cs_CZ.php | 1 + apps/files/l10n/de_DE.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/ja_JP.php | 1 + apps/files/l10n/lv.php | 1 + apps/files/l10n/nl.php | 1 + apps/files/l10n/pt_PT.php | 1 + apps/files/l10n/ru.php | 1 + apps/files/l10n/uk.php | 14 +- apps/files_encryption/l10n/de_DE.php | 3 + apps/files_encryption/l10n/ja_JP.php | 3 + apps/files_encryption/l10n/nl.php | 4 + apps/files_encryption/l10n/ru.php | 7 + apps/files_trashbin/l10n/ca.php | 1 + apps/files_trashbin/l10n/cs_CZ.php | 1 + apps/files_trashbin/l10n/de_DE.php | 1 + apps/files_trashbin/l10n/it.php | 1 + apps/files_trashbin/l10n/ja_JP.php | 1 + apps/files_trashbin/l10n/lv.php | 1 + apps/files_trashbin/l10n/nl.php | 1 + apps/files_trashbin/l10n/ru.php | 7 +- apps/user_ldap/l10n/bn_BD.php | 1 - apps/user_ldap/l10n/ca.php | 1 - apps/user_ldap/l10n/cs_CZ.php | 1 - apps/user_ldap/l10n/da.php | 1 - apps/user_ldap/l10n/de.php | 1 - apps/user_ldap/l10n/de_DE.php | 1 - apps/user_ldap/l10n/el.php | 1 - apps/user_ldap/l10n/eo.php | 1 - apps/user_ldap/l10n/es.php | 1 - apps/user_ldap/l10n/es_AR.php | 1 - apps/user_ldap/l10n/et_EE.php | 1 - apps/user_ldap/l10n/eu.php | 1 - apps/user_ldap/l10n/fi_FI.php | 1 - apps/user_ldap/l10n/fr.php | 1 - apps/user_ldap/l10n/gl.php | 1 - apps/user_ldap/l10n/hu_HU.php | 1 - apps/user_ldap/l10n/id.php | 1 - apps/user_ldap/l10n/it.php | 1 - apps/user_ldap/l10n/ja_JP.php | 1 - apps/user_ldap/l10n/ko.php | 1 - apps/user_ldap/l10n/lv.php | 1 - apps/user_ldap/l10n/nb_NO.php | 1 - apps/user_ldap/l10n/nl.php | 9 +- apps/user_ldap/l10n/pl.php | 1 - apps/user_ldap/l10n/pt_BR.php | 1 - apps/user_ldap/l10n/pt_PT.php | 4 +- apps/user_ldap/l10n/ro.php | 1 - apps/user_ldap/l10n/ru.php | 20 +- apps/user_ldap/l10n/ru_RU.php | 1 - apps/user_ldap/l10n/sk_SK.php | 1 - apps/user_ldap/l10n/sl.php | 1 - apps/user_ldap/l10n/sr.php | 1 - apps/user_ldap/l10n/sv.php | 1 - apps/user_ldap/l10n/ta_LK.php | 1 - apps/user_ldap/l10n/th_TH.php | 1 - apps/user_ldap/l10n/tr.php | 1 - apps/user_ldap/l10n/uk.php | 20 +- apps/user_ldap/l10n/vi.php | 1 - apps/user_ldap/l10n/zh_CN.GB2312.php | 1 - apps/user_ldap/l10n/zh_CN.php | 1 - core/l10n/ar.php | 1 - core/l10n/bn_BD.php | 1 - core/l10n/ca.php | 2 +- core/l10n/cs_CZ.php | 2 +- core/l10n/da.php | 1 - core/l10n/de.php | 1 - core/l10n/de_DE.php | 2 +- core/l10n/el.php | 1 - core/l10n/eo.php | 1 - core/l10n/es.php | 1 - core/l10n/es_AR.php | 1 - core/l10n/et_EE.php | 1 - core/l10n/eu.php | 1 - core/l10n/fa.php | 1 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/he.php | 1 - core/l10n/hr.php | 1 - core/l10n/hu_HU.php | 1 - core/l10n/ia.php | 1 - core/l10n/id.php | 1 - core/l10n/is.php | 1 - core/l10n/it.php | 2 +- core/l10n/ja_JP.php | 2 +- core/l10n/ka_GE.php | 1 - core/l10n/ko.php | 1 - core/l10n/lb.php | 1 - core/l10n/lt_LT.php | 1 - core/l10n/lv.php | 2 +- core/l10n/mk.php | 1 - core/l10n/ms_MY.php | 1 - core/l10n/nb_NO.php | 1 - core/l10n/nl.php | 2 +- core/l10n/oc.php | 1 - core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 1 - core/l10n/pt_PT.php | 2 +- core/l10n/ro.php | 1 - core/l10n/ru.php | 2 +- core/l10n/ru_RU.php | 1 - core/l10n/sk_SK.php | 1 - core/l10n/sl.php | 1 - core/l10n/sr.php | 1 - core/l10n/sv.php | 1 - core/l10n/ta_LK.php | 1 - core/l10n/th_TH.php | 1 - core/l10n/tr.php | 1 - core/l10n/uk.php | 5 +- core/l10n/vi.php | 1 - core/l10n/zh_CN.GB2312.php | 1 - core/l10n/zh_CN.php | 1 - core/l10n/zh_TW.php | 1 - l10n/af_ZA/core.po | 61 +-- l10n/af_ZA/files_trashbin.po | 14 +- l10n/af_ZA/files_versions.po | 41 +- l10n/af_ZA/user_ldap.po | 6 +- l10n/ar/core.po | 63 +-- l10n/ar/files_trashbin.po | 14 +- l10n/ar/files_versions.po | 39 +- l10n/ar/user_ldap.po | 6 +- l10n/bg_BG/core.po | 61 +-- l10n/bg_BG/files_trashbin.po | 14 +- l10n/bg_BG/files_versions.po | 39 +- l10n/bg_BG/user_ldap.po | 6 +- l10n/bn_BD/core.po | 63 +-- l10n/bn_BD/files_trashbin.po | 14 +- l10n/bn_BD/files_versions.po | 39 +- l10n/bn_BD/user_ldap.po | 8 +- l10n/ca/core.po | 65 +-- l10n/ca/files.po | 8 +- l10n/ca/files_trashbin.po | 16 +- l10n/ca/files_versions.po | 39 +- l10n/ca/settings.po | 14 +- l10n/ca/user_ldap.po | 10 +- l10n/cs_CZ/core.po | 65 +-- l10n/cs_CZ/files.po | 8 +- l10n/cs_CZ/files_trashbin.po | 16 +- l10n/cs_CZ/files_versions.po | 39 +- l10n/cs_CZ/settings.po | 14 +- l10n/cs_CZ/user_ldap.po | 10 +- l10n/da/core.po | 63 +-- l10n/da/files_trashbin.po | 14 +- l10n/da/files_versions.po | 39 +- l10n/da/user_ldap.po | 8 +- l10n/de/core.po | 63 +-- l10n/de/files_trashbin.po | 14 +- l10n/de/files_versions.po | 39 +- l10n/de/user_ldap.po | 8 +- l10n/de_DE/core.po | 66 +-- l10n/de_DE/files.po | 9 +- l10n/de_DE/files_encryption.po | 13 +- l10n/de_DE/files_trashbin.po | 17 +- l10n/de_DE/files_versions.po | 39 +- l10n/de_DE/settings.po | 15 +- l10n/de_DE/user_ldap.po | 10 +- l10n/el/core.po | 63 +-- l10n/el/files_trashbin.po | 14 +- l10n/el/files_versions.po | 39 +- l10n/el/user_ldap.po | 8 +- l10n/eo/core.po | 63 +-- l10n/eo/files_trashbin.po | 14 +- l10n/eo/files_versions.po | 39 +- l10n/eo/user_ldap.po | 8 +- l10n/es/core.po | 63 +-- l10n/es/files_trashbin.po | 14 +- l10n/es/files_versions.po | 39 +- l10n/es/user_ldap.po | 10 +- l10n/es_AR/core.po | 63 +-- l10n/es_AR/files_trashbin.po | 14 +- l10n/es_AR/files_versions.po | 39 +- l10n/es_AR/user_ldap.po | 10 +- l10n/et_EE/core.po | 63 +-- l10n/et_EE/files_trashbin.po | 14 +- l10n/et_EE/files_versions.po | 39 +- l10n/et_EE/user_ldap.po | 8 +- l10n/eu/core.po | 63 +-- l10n/eu/files_trashbin.po | 14 +- l10n/eu/files_versions.po | 39 +- l10n/eu/user_ldap.po | 8 +- l10n/fa/core.po | 63 +-- l10n/fa/files_trashbin.po | 14 +- l10n/fa/files_versions.po | 41 +- l10n/fa/user_ldap.po | 8 +- l10n/fi_FI/core.po | 63 +-- l10n/fi_FI/files_trashbin.po | 14 +- l10n/fi_FI/files_versions.po | 39 +- l10n/fi_FI/user_ldap.po | 8 +- l10n/fr/core.po | 63 +-- l10n/fr/files_trashbin.po | 14 +- l10n/fr/files_versions.po | 39 +- l10n/fr/user_ldap.po | 10 +- l10n/gl/core.po | 63 +-- l10n/gl/files_trashbin.po | 14 +- l10n/gl/files_versions.po | 39 +- l10n/gl/user_ldap.po | 8 +- l10n/he/core.po | 63 +-- l10n/he/files_trashbin.po | 14 +- l10n/he/files_versions.po | 39 +- l10n/he/user_ldap.po | 6 +- l10n/hi/core.po | 61 +-- l10n/hi/files_trashbin.po | 14 +- l10n/hi/files_versions.po | 39 +- l10n/hi/user_ldap.po | 6 +- l10n/hr/core.po | 63 +-- l10n/hr/files_trashbin.po | 14 +- l10n/hr/files_versions.po | 39 +- l10n/hr/user_ldap.po | 6 +- l10n/hu_HU/core.po | 63 +-- l10n/hu_HU/files_trashbin.po | 14 +- l10n/hu_HU/files_versions.po | 39 +- l10n/hu_HU/user_ldap.po | 8 +- l10n/ia/core.po | 63 +-- l10n/ia/files_trashbin.po | 14 +- l10n/ia/files_versions.po | 39 +- l10n/ia/user_ldap.po | 6 +- l10n/id/core.po | 63 +-- l10n/id/files_trashbin.po | 14 +- l10n/id/files_versions.po | 39 +- l10n/id/user_ldap.po | 8 +- l10n/is/core.po | 63 +-- l10n/is/files_trashbin.po | 14 +- l10n/is/files_versions.po | 39 +- l10n/is/user_ldap.po | 6 +- l10n/it/core.po | 65 +-- l10n/it/files.po | 8 +- l10n/it/files_trashbin.po | 16 +- l10n/it/files_versions.po | 39 +- l10n/it/settings.po | 14 +- l10n/it/user_ldap.po | 10 +- l10n/ja_JP/core.po | 65 +-- l10n/ja_JP/files.po | 8 +- l10n/ja_JP/files_encryption.po | 12 +- l10n/ja_JP/files_trashbin.po | 16 +- l10n/ja_JP/files_versions.po | 39 +- l10n/ja_JP/settings.po | 14 +- l10n/ja_JP/user_ldap.po | 10 +- l10n/ka_GE/core.po | 63 +-- l10n/ka_GE/files_trashbin.po | 14 +- l10n/ka_GE/files_versions.po | 39 +- l10n/ka_GE/user_ldap.po | 6 +- l10n/ko/core.po | 63 +-- l10n/ko/files_trashbin.po | 14 +- l10n/ko/files_versions.po | 39 +- l10n/ko/user_ldap.po | 8 +- l10n/ku_IQ/core.po | 61 +-- l10n/ku_IQ/files_trashbin.po | 14 +- l10n/ku_IQ/files_versions.po | 39 +- l10n/ku_IQ/user_ldap.po | 6 +- l10n/lb/core.po | 63 +-- l10n/lb/files_trashbin.po | 14 +- l10n/lb/files_versions.po | 41 +- l10n/lb/user_ldap.po | 6 +- l10n/lt_LT/core.po | 63 +-- l10n/lt_LT/files_trashbin.po | 14 +- l10n/lt_LT/files_versions.po | 39 +- l10n/lt_LT/user_ldap.po | 6 +- l10n/lv/core.po | 65 +-- l10n/lv/files.po | 8 +- l10n/lv/files_trashbin.po | 16 +- l10n/lv/files_versions.po | 41 +- l10n/lv/settings.po | 14 +- l10n/lv/user_ldap.po | 10 +- l10n/mk/core.po | 63 +-- l10n/mk/files_trashbin.po | 14 +- l10n/mk/files_versions.po | 39 +- l10n/mk/user_ldap.po | 6 +- l10n/ms_MY/core.po | 63 +-- l10n/ms_MY/files_trashbin.po | 14 +- l10n/ms_MY/files_versions.po | 39 +- l10n/ms_MY/user_ldap.po | 6 +- l10n/nb_NO/core.po | 63 +-- l10n/nb_NO/files_trashbin.po | 14 +- l10n/nb_NO/files_versions.po | 39 +- l10n/nb_NO/user_ldap.po | 8 +- l10n/nl/core.po | 65 +-- l10n/nl/files.po | 8 +- l10n/nl/files_encryption.po | 15 +- l10n/nl/files_trashbin.po | 16 +- l10n/nl/files_versions.po | 39 +- l10n/nl/settings.po | 16 +- l10n/nl/user_ldap.po | 24 +- l10n/nn_NO/core.po | 61 +-- l10n/nn_NO/files_trashbin.po | 14 +- l10n/nn_NO/files_versions.po | 39 +- l10n/nn_NO/user_ldap.po | 6 +- l10n/oc/core.po | 63 +-- l10n/oc/files_trashbin.po | 14 +- l10n/oc/files_versions.po | 39 +- l10n/oc/user_ldap.po | 6 +- l10n/pl/core.po | 63 +-- l10n/pl/files_trashbin.po | 14 +- l10n/pl/files_versions.po | 39 +- l10n/pl/user_ldap.po | 8 +- l10n/pl_PL/core.po | 61 +-- l10n/pl_PL/files_trashbin.po | 14 +- l10n/pl_PL/files_versions.po | 39 +- l10n/pl_PL/user_ldap.po | 6 +- l10n/pt_BR/core.po | 63 +-- l10n/pt_BR/files_trashbin.po | 14 +- l10n/pt_BR/files_versions.po | 39 +- l10n/pt_BR/user_ldap.po | 8 +- l10n/pt_PT/core.po | 67 +-- l10n/pt_PT/files.po | 10 +- l10n/pt_PT/files_trashbin.po | 14 +- l10n/pt_PT/files_versions.po | 39 +- l10n/pt_PT/user_ldap.po | 16 +- l10n/ro/core.po | 63 +-- l10n/ro/files_trashbin.po | 14 +- l10n/ro/files_versions.po | 39 +- l10n/ro/user_ldap.po | 8 +- l10n/ru/core.po | 66 +-- l10n/ru/files.po | 9 +- l10n/ru/files_encryption.po | 21 +- l10n/ru/files_trashbin.po | 25 +- l10n/ru/files_versions.po | 39 +- l10n/ru/settings.po | 19 +- l10n/ru/user_ldap.po | 47 +-- l10n/ru_RU/core.po | 63 +-- l10n/ru_RU/files_trashbin.po | 14 +- l10n/ru_RU/files_versions.po | 39 +- l10n/ru_RU/user_ldap.po | 8 +- l10n/si_LK/core.po | 61 +-- l10n/si_LK/files_trashbin.po | 14 +- l10n/si_LK/files_versions.po | 39 +- l10n/si_LK/user_ldap.po | 6 +- l10n/sk_SK/core.po | 63 +-- l10n/sk_SK/files_trashbin.po | 14 +- l10n/sk_SK/files_versions.po | 39 +- l10n/sk_SK/user_ldap.po | 10 +- l10n/sl/core.po | 63 +-- l10n/sl/files_trashbin.po | 14 +- l10n/sl/files_versions.po | 39 +- l10n/sl/user_ldap.po | 8 +- l10n/sr/core.po | 63 +-- l10n/sr/files_trashbin.po | 14 +- l10n/sr/files_versions.po | 41 +- l10n/sr/user_ldap.po | 10 +- l10n/sr@latin/core.po | 61 +-- l10n/sr@latin/files_trashbin.po | 14 +- l10n/sr@latin/files_versions.po | 39 +- l10n/sr@latin/user_ldap.po | 6 +- l10n/sv/core.po | 63 +-- l10n/sv/files_trashbin.po | 14 +- l10n/sv/files_versions.po | 39 +- l10n/sv/user_ldap.po | 10 +- l10n/sw_KE/core.po | 589 +++++++++++++++++++++++++++ l10n/sw_KE/files.po | 300 ++++++++++++++ l10n/sw_KE/files_encryption.po | 60 +++ l10n/sw_KE/files_external.po | 120 ++++++ l10n/sw_KE/files_sharing.po | 48 +++ l10n/sw_KE/files_trashbin.po | 68 ++++ l10n/sw_KE/files_versions.po | 65 +++ l10n/sw_KE/lib.po | 156 +++++++ l10n/sw_KE/settings.po | 328 +++++++++++++++ l10n/sw_KE/user_ldap.po | 309 ++++++++++++++ l10n/sw_KE/user_webdavauth.po | 33 ++ l10n/ta_LK/core.po | 63 +-- l10n/ta_LK/files_trashbin.po | 14 +- l10n/ta_LK/files_versions.po | 39 +- l10n/ta_LK/user_ldap.po | 8 +- l10n/templates/core.pot | 59 +-- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 12 +- l10n/templates/files_versions.pot | 37 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 4 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 63 +-- l10n/th_TH/files_trashbin.po | 14 +- l10n/th_TH/files_versions.po | 39 +- l10n/th_TH/user_ldap.po | 10 +- l10n/tr/core.po | 63 +-- l10n/tr/files_trashbin.po | 14 +- l10n/tr/files_versions.po | 39 +- l10n/tr/user_ldap.po | 8 +- l10n/uk/core.po | 72 ++-- l10n/uk/files.po | 31 +- l10n/uk/files_trashbin.po | 14 +- l10n/uk/files_versions.po | 39 +- l10n/uk/settings.po | 35 +- l10n/uk/user_ldap.po | 47 +-- l10n/vi/core.po | 63 +-- l10n/vi/files_trashbin.po | 14 +- l10n/vi/files_versions.po | 39 +- l10n/vi/user_ldap.po | 8 +- l10n/zh_CN.GB2312/core.po | 63 +-- l10n/zh_CN.GB2312/files_trashbin.po | 14 +- l10n/zh_CN.GB2312/files_versions.po | 39 +- l10n/zh_CN.GB2312/user_ldap.po | 8 +- l10n/zh_CN/core.po | 63 +-- l10n/zh_CN/files_trashbin.po | 14 +- l10n/zh_CN/files_versions.po | 39 +- l10n/zh_CN/user_ldap.po | 8 +- l10n/zh_HK/core.po | 61 +-- l10n/zh_HK/files_trashbin.po | 14 +- l10n/zh_HK/files_versions.po | 39 +- l10n/zh_HK/user_ldap.po | 6 +- l10n/zh_TW/core.po | 63 +-- l10n/zh_TW/files_trashbin.po | 14 +- l10n/zh_TW/files_versions.po | 39 +- l10n/zh_TW/user_ldap.po | 6 +- settings/l10n/ca.php | 4 + settings/l10n/cs_CZ.php | 4 + settings/l10n/de_DE.php | 4 + settings/l10n/it.php | 4 + settings/l10n/ja_JP.php | 4 + settings/l10n/lv.php | 4 + settings/l10n/nl.php | 5 + settings/l10n/ru.php | 6 + settings/l10n/uk.php | 14 + 417 files changed, 7832 insertions(+), 2774 deletions(-) create mode 100644 l10n/sw_KE/core.po create mode 100644 l10n/sw_KE/files.po create mode 100644 l10n/sw_KE/files_encryption.po create mode 100644 l10n/sw_KE/files_external.po create mode 100644 l10n/sw_KE/files_sharing.po create mode 100644 l10n/sw_KE/files_trashbin.po create mode 100644 l10n/sw_KE/files_versions.po create mode 100644 l10n/sw_KE/lib.po create mode 100644 l10n/sw_KE/settings.po create mode 100644 l10n/sw_KE/user_ldap.po create mode 100644 l10n/sw_KE/user_webdavauth.po diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 22b684fcfd7..eb43cdc2a6f 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -11,6 +11,7 @@ "Invalid directory." => "Directori no vĆ lid.", "Files" => "Fitxers", "Unshare" => "Deixa de compartir", +"Delete permanently" => "Esborra permanentment", "Delete" => "Suprimeix", "Rename" => "Reanomena", "{new_name} already exists" => "{new_name} ja existeix", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index f0beda9f55c..174068e4145 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -11,6 +11,7 @@ "Invalid directory." => "Neplatný adresÔř", "Files" => "Soubory", "Unshare" => "ZruÅ”it sdĆ­lenĆ­", +"Delete permanently" => "Trvale odstranit", "Delete" => "Smazat", "Rename" => "Přejmenovat", "{new_name} already exists" => "{new_name} již existuje", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 18f3ee38028..317b1347518 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -11,6 +11,7 @@ "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", +"Delete permanently" => "Entgültig lƶschen", "Delete" => "Lƶschen", "Rename" => "Umbenennen", "{new_name} already exists" => "{new_name} existiert bereits", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index bb3a5bdf054..e2ff3634322 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -11,6 +11,7 @@ "Invalid directory." => "Cartella non valida.", "Files" => "File", "Unshare" => "Rimuovi condivisione", +"Delete permanently" => "Elimina definitivamente", "Delete" => "Elimina", "Rename" => "Rinomina", "{new_name} already exists" => "{new_name} esiste giĆ ", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index c8b1054f30b..7ccf9f828e6 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -11,6 +11,7 @@ "Invalid directory." => "ē„”åŠ¹ćŖćƒ‡ć‚£ćƒ¬ć‚ÆćƒˆćƒŖć§ć™ć€‚", "Files" => "ćƒ•ć‚”ć‚¤ćƒ«", "Unshare" => "å…±ęœ‰ć—ćŖć„", +"Delete permanently" => "å®Œå…Øć«å‰Šé™¤ć™ć‚‹", "Delete" => "削除", "Rename" => "åå‰ć®å¤‰ę›“", "{new_name} already exists" => "{new_name} ćÆć™ć§ć«å­˜åœØć—ć¦ć„ć¾ć™", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 25c1da73beb..e6d09f2896c 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -11,6 +11,7 @@ "Invalid directory." => "NederÄ«ga direktorija.", "Files" => "Datnes", "Unshare" => "Pārtraukt dalīŔanos", +"Delete permanently" => "Dzēst pavisam", "Delete" => "Dzēst", "Rename" => "Pārsaukt", "{new_name} already exists" => "{new_name} jau eksistē", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index addd3a93723..433ef1c8c53 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -11,6 +11,7 @@ "Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", "Unshare" => "Stop delen", +"Delete permanently" => "Verwijder definitief", "Delete" => "Verwijder", "Rename" => "Hernoem", "{new_name} already exists" => "{new_name} bestaat al", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index b1d7385bc58..3a2f91bbc7c 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -11,6 +11,7 @@ "Invalid directory." => "Directório InvĆ”lido", "Files" => "Ficheiros", "Unshare" => "Deixar de partilhar", +"Delete permanently" => "Eliminar permanentemente", "Delete" => "Apagar", "Rename" => "Renomear", "{new_name} already exists" => "O nome {new_name} jĆ” existe", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 52bc4395128..9fac2d86e6d 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -11,6 +11,7 @@ "Invalid directory." => "ŠŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Ń‹Š¹ каталог.", "Files" => "Файлы", "Unshare" => "ŠžŃ‚Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŃŽ", +"Delete permanently" => "УГалено навсегГа", "Delete" => "Š£Š“Š°Š»ŠøŃ‚ŃŒ", "Rename" => "ŠŸŠµŃ€ŠµŠøŠ¼ŠµŠ½Š¾Š²Š°Ń‚ŃŒ", "{new_name} already exists" => "{new_name} уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 9831dfe0f8f..6f2afc7d525 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -7,8 +7,11 @@ "No file was uploaded" => "ŠŠµ віГвантажено жоГного Ń„Š°Š¹Š»Ńƒ", "Missing a temporary folder" => "Š’Ń–Š“ŃŃƒŃ‚Š½Ń–Š¹ тимчасовий каталог", "Failed to write to disk" => "ŠŠµŠ²Š“Š°Š»Š¾ŃŃ записати на Гиск", +"Not enough space available" => "ŠœŃ–ŃŃ†Ń Š±Ń–Š»ŃŒŃˆŠµ немає", +"Invalid directory." => "ŠŠµŠ²Ń–Ń€Š½ŠøŠ¹ каталог.", "Files" => "Файли", "Unshare" => "Заборонити Š“Š¾ŃŃ‚ŃƒŠæ", +"Delete permanently" => "ВиГалити назавжГи", "Delete" => "ВиГалити", "Rename" => "ŠŸŠµŃ€ŠµŠ¹Š¼ŠµŠ½ŃƒŠ²Š°Ń‚Šø", "{new_name} already exists" => "{new_name} вже Ń–ŃŠ½ŃƒŃ”", @@ -18,7 +21,13 @@ "replaced {new_name}" => "замінено {new_name}", "undo" => "віГмінити", "replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}", +"perform delete operation" => "виконати Š¾ŠæŠµŃ€Š°Ń†Ń–ŃŽ Š²ŠøŠ“Š°Š»ŠµŠ½Š½Ń", +"'.' is an invalid file name." => "'.' це невірне ім'я Ń„Š°Š¹Š»Ńƒ.", +"File name cannot be empty." => " Ім'я Ń„Š°Š¹Š»Ńƒ не може Š±ŃƒŃ‚Šø порожнім.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ŠŠµŠ²Ń–Ń€Š½Šµ ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не Гозволені.", +"Your storage is full, files can not be updated or synced anymore!" => "Š’Š°ŃˆŠµ сховище переповнене, файли Š±Ń–Š»ŃŒŃˆŠµ не Š¼Š¾Š¶ŃƒŃ‚ŃŒ Š±ŃƒŃ‚Šø оновлені або синхронізовані !", +"Your storage is almost full ({usedSpacePercent}%)" => "Š’Š°ŃˆŠµ сховище майже повне ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Š’Š°ŃˆŠµ Š·Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń Š³Š¾Ń‚ŃƒŃ”Ń‚ŃŒŃŃ. Це може Š·Š°Š¹Š½ŃŃ‚Šø Š“ŠµŃŠŗŠøŠ¹ час, ŃŠŗŃ‰Š¾ файли завеликі.", "Unable to upload your file as it is a directory or has 0 bytes" => "ŠŠµŠ¼Š¾Š¶Š»ŠøŠ²Š¾ завантажити ваш файл Ń‚Š¾Š¼Ńƒ, що він тека або файл розміром 0 байт", "Upload Error" => "Помилка Š·Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń", "Close" => "Закрити", @@ -28,6 +37,7 @@ "Upload cancelled." => "Š—Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń перервано.", "File upload is in progress. Leaving the page now will cancel the upload." => "Š’ŠøŠŗŠ¾Š½ŃƒŃ”Ń‚ŃŒŃŃ Š·Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń Ń„Š°Š¹Š»Ńƒ. Š—Š°ŠŗŃ€ŠøŃ‚Ń‚Ń цієї сторінки привеГе Го віГміни Š·Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń.", "URL cannot be empty." => "URL не може Š±ŃƒŃ‚Šø ŠæŃƒŃŃ‚ŠøŠ¼.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "ŠŠµŠ²Ń–Ń€Š½Šµ ім'я теки. Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š°Š½Š½Ń \"Shared\" зарезервовано Owncloud", "Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", @@ -48,11 +58,13 @@ "Text file" => "Текстовий файл", "Folder" => "Папка", "From link" => "Š— ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń", +"Trash" => "Дмітник", "Cancel upload" => "ŠŸŠµŃ€ŠµŃ€Š²Š°Ń‚Šø Š·Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń", "Nothing in here. Upload something!" => "Š¢ŃƒŃ‚ нічого немає. ВіГвантажте що-небуГь!", "Download" => "Завантажити", "Upload too large" => "Файл занаГто великий", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файли,що ви Š½Š°Š¼Š°Š³Š°Ń”Ń‚ŠµŃŃŒ віГвантажити ŠæŠµŃ€ŠµŠ²ŠøŃ‰ŃƒŃŽŃ‚ŃŒ максимальний Гозволений розмір файлів на Ń†ŃŒŠ¾Š¼Ńƒ сервері.", "Files are being scanned, please wait." => "Файли ŃŠŗŠ°Š½ŃƒŃŽŃ‚ŃŒŃŃ, зачекайте, буГь-ласка.", -"Current scanning" => "ŠŸŠ¾Ń‚Š¾Ń‡Š½Šµ ŃŠŗŠ°Š½ŃƒŠ²Š°Š½Š½Ń" +"Current scanning" => "ŠŸŠ¾Ń‚Š¾Ń‡Š½Šµ ŃŠŗŠ°Š½ŃƒŠ²Š°Š½Š½Ń", +"Upgrading filesystem cache..." => "ŠžŠ½Š¾Š²Š»ŠµŠ½Š½Ń кеша файлової системи..." ); diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index c3c69e09007..465af23efdd 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Could not change your file encryption password to your login password" => "Ihr Verschlüsselungspasswort konnte nicht als Anmeldepasswort gesetzt werden.", "Encryption" => "Verschlüsselung", +"File encryption is enabled." => "Datei-Verschlüsselung ist aktiviert", +"The following file types will not be encrypted:" => "Die folgenden Datei-Typen werden nicht verschlüsselt:", +"Exclude the following file types from encryption:" => "Die folgenden Datei-Typen von der Verschlüsselung ausnehmen:", "None" => "Keine" ); diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index 8d3df1f06ae..b7aeb8d8348 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ē¢ŗčŖć—ć¦ć‚‚ć†äø€åŗ¦č”ŒćŖć£ć¦ćć ć•ć„ć€‚", "Could not change your file encryption password to your login password" => "ćƒ•ć‚”ć‚¤ćƒ«ęš—å·åŒ–ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’ćƒ­ć‚°ć‚¤ćƒ³ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć«å¤‰ę›“ć§ćć¾ć›ć‚“ć§ć—ćŸć€‚", "Encryption" => "ęš—å·åŒ–", +"File encryption is enabled." => "ćƒ•ć‚”ć‚¤ćƒ«ć®ęš—å·åŒ–ćÆęœ‰åŠ¹ć§ć™ć€‚", +"The following file types will not be encrypted:" => "ę¬”ć®ćƒ•ć‚”ć‚¤ćƒ«ć‚æć‚¤ćƒ—ćÆęš—å·åŒ–ć•ć‚Œć¾ć›ć‚“:", +"Exclude the following file types from encryption:" => "ę¬”ć®ćƒ•ć‚”ć‚¤ćƒ«ć‚æć‚¤ćƒ—ć‚’ęš—å·åŒ–ć‹ć‚‰é™¤å¤–:", "None" => "なし" ); diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index fc8a7954a9e..c434330049b 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -1,8 +1,12 @@ "Schakel om naar uw eigen ownCloud client en wijzig uw versleutelwachtwoord om de conversie af te ronden.", "switched to client side encryption" => "overgeschakeld naar client side encryptie", "Change encryption password to login password" => "Verander encryptie wachtwoord naar login wachtwoord", "Please check your passwords and try again." => "Controleer uw wachtwoorden en probeer het opnieuw.", "Could not change your file encryption password to your login password" => "Kon het bestandsencryptie wachtwoord niet veranderen naar het login wachtwoord", "Encryption" => "Versleuteling", +"File encryption is enabled." => "Bestandsversleuteling geactiveerd.", +"The following file types will not be encrypted:" => "De volgende bestandstypen zullen niet worden versleuteld:", +"Exclude the following file types from encryption:" => "Sluit de volgende bestandstypen uit van versleuteling:", "None" => "Geen" ); diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index c11cf74ecfb..19d09274c19 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -1,4 +1,11 @@ "ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° ŠæŠµŃ€ŠµŠŗŠ»ŃŽŃ‡ŠøŃ‚ŠµŃŃŒ на Š’Š°Ńˆ клиент ownCloud Šø ŠæŠ¾Š¼ŠµŠ½ŃŠ¹Ń‚Šµ ŠæŠ°Ń€Š¾Š»ŃŒ ŃˆŠøŠ²Ń€Š¾Š²Š°Š½ŠøŃ Š“Š»Ń Š·Š°Š²ŠµŃ€ŃˆŠµŠ½ŠøŃ ŠæŃ€ŠµŠ¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ.", +"Change encryption password to login password" => "Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃ Š“Š»Ń ŠæŠ°Ń€Š¾Š»Ń вхоГа", +"Please check your passwords and try again." => "ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° ŠæŃ€Š¾Š²ŠµŃ€ŃŒŃ‚Šµ пароли Šø ŠæŠ¾ŠæŃ€Š¾Š±ŃƒŠ¹Ń‚Šµ снова.", +"Could not change your file encryption password to your login password" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ Š’Š°Ńˆ ŠæŠ°Ń€Š¾Š»ŃŒ файла ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃ Š“Š»Ń ŠæŠ°Ń€Š¾Š»Ń вхоГа", "Encryption" => "Шифрование", +"File encryption is enabled." => "Шифрование файла Š²ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾.", +"The following file types will not be encrypted:" => "Š”Š»ŠµŠ“ŃƒŃŽŃ‰ŠøŠµ типы файлов не Š±ŃƒŠ“ŃƒŃ‚ Š·Š°ŃˆŠøŃ„Ń€Š¾Š²Š°Š½Ń‹:", +"Exclude the following file types from encryption:" => "Š˜ŃŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŠøŠµ типы файлов ŠøŠ· ŃˆŠøŃ„Ń€Š¾Š²Š°Š½Š½Ń‹Ń…:", "None" => "ŠŠøŃ‡ŠµŠ³Š¾" ); diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index 3af33c8a310..e5e0ae3492a 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -1,5 +1,6 @@ "executa l'operació de restauració", +"delete file permanently" => "esborra el fitxer permanentment", "Name" => "Nom", "Deleted" => "Eliminat", "1 folder" => "1 carpeta", diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index caaaea37436..2f88f3ae4c6 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -1,5 +1,6 @@ "provĆ©st obnovu", +"delete file permanently" => "trvale odstranit soubor", "Name" => "NĆ”zev", "Deleted" => "SmazĆ”no", "1 folder" => "1 složka", diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 45e30d85a3b..e293bf0b2eb 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -1,5 +1,6 @@ "Führe die Wiederherstellung aus", +"delete file permanently" => "Datei entgültig lƶschen", "Name" => "Name", "Deleted" => "Gelƶscht", "1 folder" => "1 Ordner", diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 7def431a42a..cf8b9819389 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -1,5 +1,6 @@ "esegui operazione di ripristino", +"delete file permanently" => "elimina il file definitivamente", "Name" => "Nome", "Deleted" => "Eliminati", "1 folder" => "1 cartella", diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index 0b4e1954e74..13e704f05a0 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -1,5 +1,6 @@ "å¾©å…ƒę“ä½œć‚’å®Ÿč”Œć™ć‚‹", +"delete file permanently" => "ćƒ•ć‚”ć‚¤ćƒ«ć‚’å®Œå…Øć«å‰Šé™¤ć™ć‚‹", "Name" => "名前", "Deleted" => "å‰Šé™¤ęøˆćæ", "1 folder" => "1 ćƒ•ć‚©ćƒ«ćƒ€", diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index 017a8d285c0..f08a4780c24 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -1,5 +1,6 @@ "veikt atjaunoÅ”anu", +"delete file permanently" => "dzēst datni pavisam", "Name" => "Nosaukums", "Deleted" => "Dzēsts", "1 folder" => "1 mape", diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index 4efa6ecf662..a41a5c2fd9c 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -1,5 +1,6 @@ "uitvoeren restore operatie", +"delete file permanently" => "verwijder bestanden definitief", "Name" => "Naam", "Deleted" => "Verwijderd", "1 folder" => "1 map", diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 23d739a2ff7..14d807ec622 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -1,7 +1,12 @@ "Š²Ń‹ŠæŠ¾Š»Š½ŠøŃ‚ŃŒ Š¾ŠæŠµŃ€Š°Ń†ŠøŃŽ Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ", +"delete file permanently" => "ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ файл навсегГа", "Name" => "Š˜Š¼Ń", +"Deleted" => "УГалён", "1 folder" => "1 папка", "{count} folders" => "{count} папок", "1 file" => "1 файл", -"{count} files" => "{count} файлов" +"{count} files" => "{count} файлов", +"Nothing in here. Your trash bin is empty!" => "Š—Š“ŠµŃŃŒ ничего нет. Š’Š°ŃˆŠ° корзина ŠæŃƒŃŃ‚а!", +"Restore" => "Š’Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ" ); diff --git a/apps/user_ldap/l10n/bn_BD.php b/apps/user_ldap/l10n/bn_BD.php index 6c347eab879..69dfc896179 100644 --- a/apps/user_ldap/l10n/bn_BD.php +++ b/apps/user_ldap/l10n/bn_BD.php @@ -18,7 +18,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "কোন ą¦øą§ą¦„ą¦¾ą¦Ø ধারক ą¦¬ą§ą¦Æą¦¤ą§€ą¦¤, ą¦‰ą¦¦ą¦¾ą¦¹ą¦°ą¦£ą¦ƒ\"objectClass=posixGroup\"ą„¤", "Port" => "ą¦Ŗą§‹ą¦°ą§ą¦Ÿ", "Use TLS" => "TLS ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦° কর", -"Do not use it for SSL connections, it will fail." => "SSL সংযোগের ą¦œą¦Øą§ą¦Æ ą¦ą¦Ÿą¦æ ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦° করবেন না, তাহলে ą¦¬ą§ą¦Æą¦°ą§ą¦„ ą¦¹ą¦¬ą§‡ą¦Øą¦‡ą„¤", "Case insensitve LDAP server (Windows)" => "ą¦¬ą¦°ą§ą¦£ অসংবেদী LDAP ą¦øą¦¾ą¦°ą§ą¦­ą¦¾ą¦° (ą¦‰ą¦‡ą¦Øą§ą¦”ą§‹ą¦œ)", "Turn off SSL certificate validation." => "SSL ą¦øą¦Øą¦¦ą¦Ŗą¦¤ą§ą¦° ą¦Æą¦¾ą¦šą¦¾ą¦‡ą¦•ą¦°ą¦£ ą¦¬ą¦Øą§ą¦§ ą¦°ą¦¾ą¦•ą„¤", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "ą¦¶ą§ą¦§ą§ą¦®ą¦¾ą¦¤ą§ą¦° যদি ą¦ą¦‡ ą¦¬ą¦æą¦•ą¦²ą§ą¦Ŗą¦Ÿą¦æ ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦° করেই সংযোগ ą¦•ą¦¾ą¦°ą§ą¦Æą¦•ą¦°ą§€ হয় তবে আপনার ownCloud ą¦øą¦¾ą¦°ą§ą¦­ą¦¾ą¦°ą§‡ LDAP ą¦øą¦¾ą¦°ą§ą¦­ą¦¾ą¦°ą§‡ą¦° SSL ą¦øą¦Øą¦¦ą¦Ŗą¦¤ą§ą¦°ą¦Ÿą¦æ আমদানি ą¦•ą¦°ą§ą¦Øą„¤", diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 5cf03b6787b..a210e6f1a12 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -43,7 +43,6 @@ "Disable Main Server" => "Desactiva el servidor principal", "When switched on, ownCloud will only connect to the replica server." => "Quan estĆ  connectat, ownCloud nomĆ©s es connecta al servidor de la rĆØplica.", "Use TLS" => "Usa TLS", -"Do not use it for SSL connections, it will fail." => "No ho useu en connexions SSL, fallarĆ .", "Case insensitve LDAP server (Windows)" => "Servidor LDAP sense distinció entre majĆŗscules i minĆŗscules (Windows)", "Turn off SSL certificate validation." => "Desactiva la validació de certificat SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la connexió nomĆ©s funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor ownCloud.", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 0aace1f7410..6f5ab4011a4 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -43,7 +43,6 @@ "Disable Main Server" => "ZakĆ”zat hlavnĆ­ serveru", "When switched on, ownCloud will only connect to the replica server." => "Při zapnutĆ­ se ownCloud připojĆ­ pouze k zĆ”ložnĆ­mu serveru", "Use TLS" => "Použít TLS", -"Do not use it for SSL connections, it will fail." => "Nepoužívejte pro připojenĆ­ pomocĆ­ SSL, připojenĆ­ selže.", "Case insensitve LDAP server (Windows)" => "LDAP server nerozliÅ”ujĆ­cĆ­ velikost znakÅÆ (Windows)", "Turn off SSL certificate validation." => "Vypnout ověřovĆ”nĆ­ SSL certifikĆ”tu.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Pokud připojenĆ­ pracuje pouze s touto možnostĆ­, tak importujte SSL certifikĆ”t SSL serveru do VaÅ”eho serveru ownCloud", diff --git a/apps/user_ldap/l10n/da.php b/apps/user_ldap/l10n/da.php index dd7fb8a1a0c..9329c4e8a24 100644 --- a/apps/user_ldap/l10n/da.php +++ b/apps/user_ldap/l10n/da.php @@ -14,7 +14,6 @@ "Defines the filter to apply, when retrieving groups." => "Definere filteret der bruges nĆ„r der indlƦses grupper.", "Port" => "Port", "Use TLS" => "Brug TLS", -"Do not use it for SSL connections, it will fail." => "Brug ikke til SSL forbindelser, da den vil fejle.", "Turn off SSL certificate validation." => "Deaktiver SSL certifikat validering", "Not recommended, use for testing only." => "Anbefales ikke, brug kun for at teste.", "User Display Name Field" => "User Display Name Field", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index df680465c98..618e7a32457 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -23,7 +23,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ohne Platzhalter, z.B.: \"objectClass=posixGroup\"", "Port" => "Port", "Use TLS" => "Nutze TLS", -"Do not use it for SSL connections, it will fail." => "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalte die SSL-Zertifikatsprüfung aus.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 1b47cfec2a6..7d3847f8a89 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -43,7 +43,6 @@ "Disable Main Server" => "Hauptserver deaktivieren", "When switched on, ownCloud will only connect to the replica server." => "Wenn eingeschaltet wird sich ownCloud nur mit dem Replilat-Server verbinden.", "Use TLS" => "Nutze TLS", -"Do not use it for SSL connections, it will fail." => "Verwenden Sie dies nicht für SSL-Verbindungen, es wird fehlschlagen.", "Case insensitve LDAP server (Windows)" => "LDAP-Server (Windows: Groß- und Kleinschreibung bleibt unbeachtet)", "Turn off SSL certificate validation." => "Schalten Sie die SSL-Zertifikatsprüfung aus.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden.", diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 3951c94dfa7..7c0940dc09c 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "χωρίς κάποια μεταβλητή, Ļ€.χ. \"objectClass=ΟμάΓαPosix\".", "Port" => "Ī˜ĻĻĪ±", "Use TLS" => "Χρήση TLS", -"Do not use it for SSL connections, it will fail." => "Μην Ļ‡ĻĪ·ĻƒĪ¹Ī¼ĪæĻ€ĪæĪ¹ĪµĪÆĻ„Īµ για ĻƒĻ…Ī½Ī“Ī­ĻƒĪµĪ¹Ļ‚ SSL, θα Ī±Ļ€ĪæĻ„ĻĻ‡ĪµĪ¹.", "Case insensitve LDAP server (Windows)" => "LDAP server (Windows) με Γιάκριση Ļ€ĪµĪ¶ĻŽĪ½-ĪšĪ•Ī¦Ī‘Ī›Ī‘Ī™Ī©Ī", "Turn off SSL certificate validation." => "Ī‘Ļ€ĪµĪ½ĪµĻĪ³ĪæĻ€ĪæĪÆĪ·ĻƒĪ· ĪµĻ€Ī¹ĪŗĻĻĻ‰ĻƒĪ·Ļ‚ Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĪæĻ SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Εάν Ī· ĻƒĻĪ½Ī“ĪµĻƒĪ· Ī“ĪæĻ…Ī»ĪµĻĪµĪ¹ μόνο με αυτή την επιλογή, ĪµĪ¹ĻƒĪ¬Ī³ĪµĻ„Īµ το LDAP SSL Ļ€Ī¹ĻƒĻ„ĪæĻ€ĪæĪ¹Ī·Ļ„Ī¹ĪŗĻŒ του Ī“Ī¹Ī±ĪŗĪæĪ¼Ī¹ĻƒĻ„Ī® ĻƒĻ„ĪæĪ½ ownCloud server ĻƒĪ±Ļ‚.", diff --git a/apps/user_ldap/l10n/eo.php b/apps/user_ldap/l10n/eo.php index 2a2b70603c5..3ffcbddb3e3 100644 --- a/apps/user_ldap/l10n/eo.php +++ b/apps/user_ldap/l10n/eo.php @@ -17,7 +17,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sen ajna referencilo, ekz.: \"objectClass=posixGroup\".", "Port" => "Pordo", "Use TLS" => "Uzi TLS-on", -"Do not use it for SSL connections, it will fail." => "Ne uzu ĝin por SSL-konektoj, ĝi malsukcesos.", "Case insensitve LDAP server (Windows)" => "LDAP-servilo blinda je litergrandeco (Vindozo)", "Turn off SSL certificate validation." => "Malkapabligi validkontrolon de SSL-atestiloj.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se la konekto nur funkcias kun ĉi tiu malnepro, enportu la SSL-atestilo de la LDAP-servilo en via ownCloud-servilo.", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 3740d13e224..034f7709ad0 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -43,7 +43,6 @@ "Disable Main Server" => "Deshabilitar servidor principal", "When switched on, ownCloud will only connect to the replica server." => "Cuando se inicie, ownCloud unicamente estara conectado al servidor replica", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "No usarlo para SSL, habrĆ” error.", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayĆŗsculas/minĆŗsculas (Windows)", "Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud.", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 28bc318a52f..a87444a270c 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -35,7 +35,6 @@ "Port" => "Puerto", "Disable Main Server" => "Deshabilitar el Servidor Principal", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "No usarlo para SSL, darĆ” error.", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayĆŗsculas/minĆŗsculas (Windows)", "Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importĆ” el certificado SSL del servidor LDAP en tu servidor ownCloud.", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index ba03a8a8093..91eb38c7c5f 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ilma ühegi kohatƤitjata, nt. \"objectClass=posixGroup\".", "Port" => "Port", "Use TLS" => "Kasutaja TLS", -"Do not use it for SSL connections, it will fail." => "Ƅra kasuta seda SSL ühenduse jaoks, see ei toimi.", "Case insensitve LDAP server (Windows)" => "MittetƵstutundlik LDAP server (Windows)", "Turn off SSL certificate validation." => "Lülita SSL sertifikaadi kontrollimine vƤlja.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma ownCloud serverisse.", diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php index 2aad2363ce9..97c23f86480 100644 --- a/apps/user_ldap/l10n/eu.php +++ b/apps/user_ldap/l10n/eu.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "txantiloirik gabe, adb. \"objectClass=posixGroup\".", "Port" => "Portua", "Use TLS" => "Erabili TLS", -"Do not use it for SSL connections, it will fail." => "Ez erabili SSL konexioetan, huts egingo du.", "Case insensitve LDAP server (Windows)" => "Maiuskulak eta minuskulak ezberditzen ez dituen LDAP zerbitzaria (windows)", "Turn off SSL certificate validation." => "Ezgaitu SSL ziurtagirien egiaztapena.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Konexioa aukera hau ezinbestekoa badu, inportatu LDAP zerbitzariaren SSL ziurtagiria zure ownCloud zerbitzarian.", diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index 4f8fd3f2d17..1c2a92f844a 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ilman paikanvaraustermiƤ, ts. \"objectClass=posixGroup\".", "Port" => "Portti", "Use TLS" => "KƤytƤ TLS:ƤƤ", -"Do not use it for SSL connections, it will fail." => "ƄlƤ kƤytƤ SSL-yhteyttƤ varten, se epƤonnistuu. ", "Case insensitve LDAP server (Windows)" => "Kirjainkoosta piittamaton LDAP-palvelin (Windows)", "Turn off SSL certificate validation." => "Poista kƤytƶstƤ SSL-varmenteen vahvistus", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jos yhteys toimii vain tƤllƤ valinnalla, siirrƤ LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi.", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 9bb350ea23c..5c30a20b683 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -43,7 +43,6 @@ "Disable Main Server" => "DĆ©sactiver le serveur principal", "When switched on, ownCloud will only connect to the replica server." => "Lorsqu'activĆ©, ownCloud ne se connectera qu'au serveur rĆ©pliquĆ©.", "Use TLS" => "Utiliser TLS", -"Do not use it for SSL connections, it will fail." => "Ne pas utiliser pour les connexions SSL, car cela Ć©chouera.", "Case insensitve LDAP server (Windows)" => "Serveur LDAP insensible Ć  la casse (Windows)", "Turn off SSL certificate validation." => "DĆ©sactiver la validation du certificat SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud.", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index a2531a40a83..36c1f7af114 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sen ningunha marca de posición, como p.ex Ā«objectClass=grupoPosixĀ».", "Port" => "Porto", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "Non empregalo para conexións SSL: fallarĆ”.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP que non distingue entre maiĆŗsculas e minĆŗsculas (Windows)", "Turn off SSL certificate validation." => "Desactiva a validación do certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no seu servidor ownCloud.", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 64de16fa65f..48a0823a583 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "itt ne hasznĆ”ljunk vĆ”ltozót, pl. \"objectClass=posixGroup\".", "Port" => "Port", "Use TLS" => "HasznĆ”ljunk TLS-t", -"Do not use it for SSL connections, it will fail." => "Ne hasznĆ”ljuk SSL-kapcsolat esetĆ©n, mert nem fog műkƶdni!", "Case insensitve LDAP server (Windows)" => "Az LDAP-kiszolgĆ”ló nem tesz külƶnbsĆ©get a kis- Ć©s nagybetűk kƶzƶtt (Windows)", "Turn off SSL certificate validation." => "Ne ellenőrizzük az SSL-tanĆŗsĆ­tvĆ”ny Ć©rvĆ©nyessĆ©gĆ©t", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Ha a kapcsolat csak ezzel a beĆ”llĆ­tĆ”ssal műkƶdik, akkor importĆ”lja az LDAP-kiszolgĆ”ló SSL tanĆŗsĆ­tvĆ”nyĆ”t az ownCloud kiszolgĆ”lóra!", diff --git a/apps/user_ldap/l10n/id.php b/apps/user_ldap/l10n/id.php index 33e8cc70e93..c07892386d6 100644 --- a/apps/user_ldap/l10n/id.php +++ b/apps/user_ldap/l10n/id.php @@ -6,7 +6,6 @@ "Group Filter" => "saringan grup", "Port" => "port", "Use TLS" => "gunakan TLS", -"Do not use it for SSL connections, it will fail." => "jangan gunakan untuk koneksi SSL, itu akan gagal.", "Turn off SSL certificate validation." => "matikan validasi sertivikat SSL", "Not recommended, use for testing only." => "tidak disarankan, gunakan hanya untuk pengujian.", "in seconds. A change empties the cache." => "dalam detik. perubahan mengosongkan cache", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 0220aa958ce..5746f119bc3 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -43,7 +43,6 @@ "Disable Main Server" => "Disabilita server principale", "When switched on, ownCloud will only connect to the replica server." => "Se abilitata, ownCloud si collegherĆ  solo al server di replica.", "Use TLS" => "Usa TLS", -"Do not use it for SSL connections, it will fail." => "Non utilizzare per le connessioni SSL, fallirĆ .", "Case insensitve LDAP server (Windows)" => "Case insensitve LDAP server (Windows)", "Turn off SSL certificate validation." => "Disattiva il controllo del certificato SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se la connessione funziona esclusivamente con questa opzione, importa il certificato SSL del server LDAP nel tuo server ownCloud.", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 7706357cbf3..7697fc5b4fd 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -43,7 +43,6 @@ "Disable Main Server" => "ćƒ”ć‚¤ćƒ³ć‚µćƒ¼ćƒć‚’ē„”åŠ¹ć«ć™ć‚‹", "When switched on, ownCloud will only connect to the replica server." => "ęœ‰åŠ¹ć«ć™ć‚‹ćØć€ownCloudćÆćƒ¬ćƒ—ćƒŖć‚«ć‚µćƒ¼ćƒć«ć®ćæęŽ„ē¶šć—ć¾ć™ć€‚", "Use TLS" => "TLSć‚’åˆ©ē”Ø", -"Do not use it for SSL connections, it will fail." => "SSLęŽ„ē¶šć«åˆ©ē”Øć—ćŖć„ć§ćć ć•ć„ć€å¤±ę•—ć—ć¾ć™ć€‚", "Case insensitve LDAP server (Windows)" => "å¤§ę–‡å­—ļ¼å°ę–‡å­—ć‚’åŒŗåˆ„ć—ćŖć„LDAPć‚µćƒ¼ćƒļ¼ˆWindows)", "Turn off SSL certificate validation." => "SSLčØ¼ę˜Žę›øć®ē¢ŗčŖć‚’ē„”åŠ¹ć«ć™ć‚‹ć€‚", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "ęŽ„ē¶šćŒć“ć®ć‚Ŗćƒ—ć‚·ćƒ§ćƒ³ć§ć®ćæå‹•ä½œć™ć‚‹å “åˆćÆć€LDAPć‚µćƒ¼ćƒć®SSLčØ¼ę˜Žę›øć‚’ownCloudć‚µćƒ¼ćƒć«ć‚¤ćƒ³ćƒćƒ¼ćƒˆć—ć¦ćć ć•ć„ć€‚", diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index 9ff8ff99d08..419e2d0a690 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ģžė¦¬ ė¹„ģ›€ģžė„¼ ģ‚¬ģš©ķ•  수 ģ—†ģŠµė‹ˆė‹¤. 예제: \"objectClass=posixGroup\"", "Port" => "ķ¬ķŠø", "Use TLS" => "TLS ģ‚¬ģš©", -"Do not use it for SSL connections, it will fail." => "SSL ģ—°ź²° ģ‹œ ģ‚¬ģš©ķ•˜ėŠ” 경우 ģ—°ź²°ė˜ģ§€ ģ•ŠģŠµė‹ˆė‹¤.", "Case insensitve LDAP server (Windows)" => "ģ„œė²„ģ—ģ„œ ėŒ€ģ†Œė¬øģžė„¼ źµ¬ė¶„ķ•˜ģ§€ ģ•ŠģŒ (Windows)", "Turn off SSL certificate validation." => "SSL ģøģ¦ģ„œ ģœ ķšØģ„± 검사넼 ķ•“ģ œķ•©ė‹ˆė‹¤.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "ģ“ ģ˜µģ…˜ģ„ ģ‚¬ģš©ķ•“ģ•¼ ģ—°ź²°ķ•  수 ģžˆėŠ” ź²½ģš°ģ—ėŠ” LDAP ģ„œė²„ģ˜ SSL ģøģ¦ģ„œė„¼ ownCloud딜 ź°€ģ øģ˜¬ 수 ģžˆģŠµė‹ˆė‹¤.", diff --git a/apps/user_ldap/l10n/lv.php b/apps/user_ldap/l10n/lv.php index 48cee737c74..532fc1023d4 100644 --- a/apps/user_ldap/l10n/lv.php +++ b/apps/user_ldap/l10n/lv.php @@ -43,7 +43,6 @@ "Disable Main Server" => "Deaktivēt galveno serveri", "When switched on, ownCloud will only connect to the replica server." => "Kad ieslēgts, ownCloud savienosies tikai ar kopijas serveri.", "Use TLS" => "Lietot TLS", -"Do not use it for SSL connections, it will fail." => "Neizmanto to SSL savienojumiem, tas neizdosies.", "Case insensitve LDAP server (Windows)" => "ReÄ£istrnejutÄ«gs LDAP serveris (Windows)", "Turn off SSL certificate validation." => "Izslēgt SSL sertifikātu validēŔanu.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Ja savienojums darbojas ar Å”o opciju, importē LDAP serveru SSL sertifikātu savā ownCloud serverÄ«.", diff --git a/apps/user_ldap/l10n/nb_NO.php b/apps/user_ldap/l10n/nb_NO.php index 295166b0a50..8aab71354b0 100644 --- a/apps/user_ldap/l10n/nb_NO.php +++ b/apps/user_ldap/l10n/nb_NO.php @@ -4,7 +4,6 @@ "Group Filter" => "Gruppefilter", "Port" => "Port", "Use TLS" => "Bruk TLS", -"Do not use it for SSL connections, it will fail." => "Ikke bruk for SSL tilkoblinger, dette vil ikke fungere.", "Not recommended, use for testing only." => "Ikke anbefalt, bruk kun for testing", "in seconds. A change empties the cache." => "i sekunder. En endring tĆømmer bufferen.", "in bytes" => "i bytes", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index cc5e85fc30b..6879a4c4b94 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -1,6 +1,7 @@ "Verwijderen serverconfiguratie mislukt", "The configuration is valid and the connection could be established!" => "De configuratie is geldig en de verbinding is geslaagd!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "De configuratie is geldig, maar Bind mislukte. Controleer de serverinstellingen en inloggegevens.", "The configuration is invalid. Please look in the ownCloud log for further details." => "De configuratie is ongeldig. Controleer de ownCloud log voor meer details.", "Deletion failed" => "Verwijderen mislukt", "Take over settings from recent server configuration?" => "Overnemen instellingen van de recente serverconfiguratie?", @@ -32,29 +33,35 @@ "Group Filter" => "Groep Filter", "Defines the filter to apply, when retrieving groups." => "DefiniĆ«erd de toe te passen filter voor het ophalen van groepen.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "zonder een placeholder, bijv. \"objectClass=posixGroup\"", +"Connection Settings" => "Verbindingsinstellingen", "Configuration Active" => "Configuratie actief", +"When unchecked, this configuration will be skipped." => "Als dit niet is ingeschakeld wordt deze configuratie overgeslagen.", "Port" => "Poort", "Backup (Replica) Host" => "Backup (Replica) Host", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Opgeven optionele backup host. Het moet een replica van de hoofd LDAP/AD server.", "Backup (Replica) Port" => "Backup (Replica) Poort", "Disable Main Server" => "Deactiveren hoofdserver", "When switched on, ownCloud will only connect to the replica server." => "Wanneer ingeschakeld, zal ownCloud allen verbinden met de replicaserver.", "Use TLS" => "Gebruik TLS", -"Do not use it for SSL connections, it will fail." => "Gebruik niet voor SSL connecties, deze mislukken.", "Case insensitve LDAP server (Windows)" => "Niet-hoofdlettergevoelige LDAP server (Windows)", "Turn off SSL certificate validation." => "Schakel SSL certificaat validatie uit.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Als de connectie alleen werkt met deze optie, importeer dan het LDAP server SSL certificaat naar je ownCloud server.", "Not recommended, use for testing only." => "Niet aangeraden, gebruik alleen voor test doeleinden.", "in seconds. A change empties the cache." => "in seconden. Een verandering maakt de cache leeg.", +"Directory Settings" => "Mapinstellingen", "User Display Name Field" => "Gebruikers Schermnaam Veld", "The LDAP attribute to use to generate the user`s ownCloud name." => "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de gebruikers.", "Base User Tree" => "Basis Gebruikers Structuur", "One User Base DN per line" => "Een User Base DN per regel", +"User Search Attributes" => "Attributen voor gebruikerszoekopdrachten", "Optional; one attribute per line" => "Optioneel; ƩƩn attribuut per regel", "Group Display Name Field" => "Groep Schermnaam Veld", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de groepen.", "Base Group Tree" => "Basis Groupen Structuur", "One Group Base DN per line" => "Een Group Base DN per regel", +"Group Search Attributes" => "Attributen voor groepszoekopdrachten", "Group-Member association" => "Groepslid associatie", +"Special Attributes" => "Speciale attributen", "in bytes" => "in bytes", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Laat leeg voor de gebruikersnaam (standaard). Of, specificeer een LDAP/AD attribuut.", "Help" => "Help" diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 83a8d1615ae..ef3f9140ef7 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "bez żadnych symboli zastępczych np. \"objectClass=posixGroup\".", "Port" => "Port", "Use TLS" => "Użyj TLS", -"Do not use it for SSL connections, it will fail." => "Nie używaj SSL dla połączeń, jeśli się nie powiedzie.", "Case insensitve LDAP server (Windows)" => "Wielkość liter serwera LDAP (Windows)", "Turn off SSL certificate validation." => "Wyłączyć sprawdzanie poprawności certyfikatu SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jeśli połączenie działa tylko z tą opcją, zaimportuj certyfikat SSL serwera LDAP w serwerze ownCloud.", diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 79e56eeb652..514ceb7027e 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "sem nenhum espaƧo reservado, ex. \"objectClass=posixGroup\"", "Port" => "Porta", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "NĆ£o use-o para conexƵes SSL, pois falharĆ”.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP sensĆ­vel Ć  caixa alta (Windows)", "Turn off SSL certificate validation." => "Desligar validação de certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a conexĆ£o só funciona com essa opção, importe o certificado SSL do servidor LDAP no seu servidor ownCloud.", diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 21735b497c6..058e7ba2532 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -33,6 +33,7 @@ "Group Filter" => "Filtrar por grupo", "Defines the filter to apply, when retrieving groups." => "Defina o filtro a aplicar, ao recuperar grupos.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Sem nenhuma variĆ”vel. Exemplo: \"objectClass=posixGroup\".", +"Connection Settings" => "DefiniƧƵes de ligação", "Configuration Active" => "Configuração activa", "When unchecked, this configuration will be skipped." => "Se nĆ£o estiver marcada, esta definição nĆ£o serĆ” tida em conta.", "Port" => "Porto", @@ -42,12 +43,12 @@ "Disable Main Server" => "Desactivar servidor principal", "When switched on, ownCloud will only connect to the replica server." => "Se estiver ligado, o ownCloud vai somente ligar-se a este servidor de rĆ©plicas.", "Use TLS" => "Usar TLS", -"Do not use it for SSL connections, it will fail." => "NĆ£o use para ligaƧƵes SSL, irĆ” falhar.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP (Windows) nĆ£o sensĆ­vel a maiĆŗsculas.", "Turn off SSL certificate validation." => "Desligar a validação de certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se a ligação apenas funcionar com estĆ” opção, importe o certificado SSL do servidor LDAP para o seu servidor do ownCloud.", "Not recommended, use for testing only." => "NĆ£o recomendado, utilizado apenas para testes!", "in seconds. A change empties the cache." => "em segundos. Uma alteração esvazia a cache.", +"Directory Settings" => "DefiniƧƵes de directorias", "User Display Name Field" => "Mostrador do nome de utilizador.", "The LDAP attribute to use to generate the user`s ownCloud name." => "Atributo LDAP para gerar o nome de utilizador do ownCloud.", "Base User Tree" => "Base da Ć”rvore de utilizadores.", @@ -60,6 +61,7 @@ "One Group Base DN per line" => "Uma base de grupo DN por linha", "Group Search Attributes" => "Atributos de pesquisa de grupo", "Group-Member association" => "Associar utilizador ao grupo.", +"Special Attributes" => "Atributos especiais", "in bytes" => "em bytes", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrĆ£o). De outro modo, especifique um atributo LDAP/AD.", "Help" => "Ajuda" diff --git a/apps/user_ldap/l10n/ro.php b/apps/user_ldap/l10n/ro.php index 3e7e7500429..8f55a35b491 100644 --- a/apps/user_ldap/l10n/ro.php +++ b/apps/user_ldap/l10n/ro.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "fără substituenți, d.e. \"objectClass=posixGroup\"", "Port" => "Portul", "Use TLS" => "Utilizează TLS", -"Do not use it for SSL connections, it will fail." => "A nu se utiliza pentru conexiuni SSL, va eșua.", "Case insensitve LDAP server (Windows)" => "Server LDAP insensibil la majuscule (Windows)", "Turn off SSL certificate validation." => "Oprește validarea certificatelor SSL ", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Dacă conexiunea lucrează doar cu această opțiune, importează certificatul SSL al serverului LDAP Ć®n serverul ownCloud.", diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index 45f6c171bf3..4c4b9708667 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -1,6 +1,18 @@ "ŠŠµ уГалось ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃŽ сервера", +"The configuration is valid and the connection could be established!" => "ŠšŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃ ŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š°Ń Šø ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠµ может Š±Ń‹Ń‚ŃŒ ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½Š¾!", +"The configuration is invalid. Please look in the ownCloud log for further details." => "ŠšŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃ не верна. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, посмотрите в Š¶ŃƒŃ€Š½Š°Š»Šµ ownCloud Гетали.", "Deletion failed" => "УГаление не уГалось", +"Take over settings from recent server configuration?" => "ŠŸŃ€ŠøŠ½ŃŃ‚ŃŒ настройки ŠøŠ· послеГней ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŠø сервера?", +"Keep settings?" => "Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ настройки?", +"Cannot add server configuration" => "ŠŠµ ŠæŠ¾Š»ŃƒŃ‡ŠøŠ»Š¾ŃŃŒ Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃŽ сервера", +"Connection test succeeded" => "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ уГалась", +"Connection test failed" => "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ не уГалась", +"Do you really want to delete the current Server Configuration?" => "Š’Ń‹ Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ хотите ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŃŽŃ‰ŃƒŃŽ ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃŽ сервера?", +"Confirm Deletion" => "ŠŸŠ¾Š“Ń‚Š²ŠµŃ€Š¶Š“ŠµŠ½ŠøŠµ ŃƒŠ“Š°Š»ŠµŠ½ŠøŃ", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Внимание:ŠŸŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŃ user_ldap Šø user_webdavauth несовместимы. Š’Ń‹ можете ŃŃ‚Š¾Š»ŠŗŠ½ŃƒŃ‚ŃŒŃŃ с неожиГанным повеГением. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, Š¾Š±Ń€Š°Ń‚ŠøŃ‚ŠµŃŃŒ Šŗ ŃŠøŃŃ‚ŠµŠ¼Š½Š¾Š¼Ńƒ Š°Š“Š¼ŠøŠ½ŠøŃŃ‚Ń€Š°Ń‚Š¾Ń€Ńƒ, чтобы Š¾Ń‚ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ оГно ŠøŠ· них.", +"Server configuration" => "ŠšŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃ сервера", +"Add Server Configuration" => "Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃŽ сервера", "Host" => "Дервер", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можно Š¾ŠæŃƒŃŃ‚ŠøŃ‚ŃŒ протокол, за ŠøŃŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠµŠ¼ того, когГа вам Ń‚Ń€ŠµŠ±ŃƒŠµŃ‚ŃŃ SSL. ТогГа начните с ldaps :/ /", "Base DN" => "Базовый DN", @@ -18,21 +30,27 @@ "Group Filter" => "Š¤ŠøŠ»ŃŒŃ‚Ń€ Š³Ń€ŃƒŠæŠæŃ‹", "Defines the filter to apply, when retrieving groups." => "ŠžŠæŃ€ŠµŠ“ŠµŠ»ŃŠµŃ‚ Ń„ŠøŠ»ŃŒŃ‚Ń€ Š“Š»Ń ŠæŃ€ŠøŠ¼ŠµŠ½ŠµŠ½ŠøŃ при ŠæŠ¾Š»ŃƒŃ‡ŠµŠ½ŠøŠø Š³Ń€ŃƒŠæŠæŃ‹.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "без Š·Š°ŠæŠ¾Š»Š½ŠµŠ½ŠøŃ, например \"objectClass=posixGroup\".", +"Connection Settings" => "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŃ", +"Configuration Active" => "ŠšŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃ активна", "Port" => "ŠŸŠ¾Ń€Ń‚", +"Disable Main Server" => "ŠžŃ‚ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠµ главного сервера", "Use TLS" => "Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ TLS", -"Do not use it for SSL connections, it will fail." => "ŠŠµ ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ Š“Š»Ń соеГинений SSL", "Case insensitve LDAP server (Windows)" => "ŠŠµŃ‡ŃƒŠ²ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Šŗ Ń€ŠµŠ³ŠøŃŃ‚Ń€Ńƒ сервер LDAP (Windows)", "Turn off SSL certificate validation." => "ŠžŃ‚ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ ŠæŃ€Š¾Š²ŠµŃ€ŠŗŃƒ сертификата SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Если соеГинение работает Ń‚Š¾Š»ŃŒŠŗŠ¾ с ŃŃ‚Š¾Š¹ опцией, ŠøŠ¼ŠæŠ¾Ń€Ń‚ŠøŃ€ŃƒŠ¹Ń‚Šµ на ваш сервер ownCloud сертификат SSL сервера LDAP.", "Not recommended, use for testing only." => "ŠŠµ Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŠµŃ‚ŃŃ, ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ Ń‚Š¾Š»ŃŒŠŗŠ¾ Š“Š»Ń Ń‚ŠµŃŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ.", "in seconds. A change empties the cache." => "в ŃŠµŠŗŃƒŠ½Š“Š°Ń…. Изменение очистит ŠŗŃŃˆ.", +"Directory Settings" => "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø каталога", "User Display Name Field" => "Поле отображаемого имени ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń", "The LDAP attribute to use to generate the user`s ownCloud name." => "ŠŃ‚Ń€ŠøŠ±ŃƒŃ‚ LDAP Š“Š»Ń генерации имени ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń ownCloud.", "Base User Tree" => "База ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ Герева", +"User Search Attributes" => "ŠŸŠ¾ŠøŃŠŗŠ¾Š²Ń‹Šµ Š°Ń‚Ń€ŠøŠ±ŃƒŃ‚Ń‹ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń", +"Optional; one attribute per line" => "ŠžŠæŃ†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾; оГин Š°Ń‚Ń€ŠøŠ±ŃƒŃ‚ на Š»ŠøŠ½ŠøŃŽ", "Group Display Name Field" => "Поле отображаемого имени Š³Ń€ŃƒŠæŠæŃ‹", "The LDAP attribute to use to generate the groups`s ownCloud name." => "ŠŃ‚Ń€ŠøŠ±ŃƒŃ‚ LDAP Š“Š»Ń генерации имени Š³Ń€ŃƒŠæŠæŃ‹ ownCloud.", "Base Group Tree" => "База Š³Ń€ŃƒŠæŠæŠ¾Š²Š¾Š³Š¾ Герева", "Group-Member association" => "ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ Š“Ń€ŃƒŠæŠæŠ°-Участник", +"Special Attributes" => "Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Ń‹Šµ Š°Ń‚Ń€ŠøŠ±ŃƒŃ‚Ń‹", "in bytes" => "в байтах", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ŠžŃŃ‚Š°Š²ŃŒŃ‚Šµ ŠøŠ¼Ń ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń ŠæŃƒŃŃ‚Ń‹Š¼ (по ŃƒŠ¼Š¾Š»Ń‡Š°Š½ŠøŃŽ). Š˜Š½Š°Ń‡Šµ ŃƒŠŗŠ°Š¶ŠøŃ‚Šµ Š°Ń‚Ń€ŠøŠ±ŃƒŃ‚ LDAP/AD.", "Help" => "ŠŸŠ¾Š¼Š¾Ń‰ŃŒ" diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php index f62d2cd4eaf..a4ed503b1d1 100644 --- a/apps/user_ldap/l10n/ru_RU.php +++ b/apps/user_ldap/l10n/ru_RU.php @@ -22,7 +22,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "без каких-либо заполнителей, например, \"objectClass=posixGroup\".", "Port" => "ŠŸŠ¾Ń€Ń‚", "Use TLS" => "Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ TLS", -"Do not use it for SSL connections, it will fail." => "ŠŠµ ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ ŃŃ‚Š¾ SSL-соеГинений, ŃŃ‚Š¾ не Š±ŃƒŠ“ет выполнено.", "Case insensitve LDAP server (Windows)" => "ŠŠµŃ‡ŃƒŠ²ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Šŗ Ń€ŠµŠ³ŠøŃŃ‚Ń€Ńƒ LDAP-сервер (Windows)", "Turn off SSL certificate validation." => "Š’Ń‹ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ ŠæŃ€Š¾Š²ŠµŃ€ŠŗŃƒ сертификата SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Если соеГинение работает Ń‚Š¾Š»ŃŒŠŗŠ¾ с ŃŃ‚Š¾Š¹ опцией, ŠøŠ¼ŠæŠ¾Ń€Ń‚ŠøŃ€ŃƒŠ¹Ń‚Šµ SSL-сертификат LDAP сервера в ваш ownCloud сервер.", diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index 77cb039c7ed..af8ff0307a7 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -43,7 +43,6 @@ "Disable Main Server" => "ZakĆ”zaÅ„ hlavný server", "When switched on, ownCloud will only connect to the replica server." => "Pri zapnutĆ­ sa ownCloud pripojĆ­ len k zĆ”ložnĆ©mu serveru.", "Use TLS" => "Použi TLS", -"Do not use it for SSL connections, it will fail." => "Nepoužívajte pre pripojenie SSL, pripojenie zlyhĆ”.", "Case insensitve LDAP server (Windows)" => "LDAP server nerozliÅ”uje veľkosÅ„ znakov (Windows)", "Turn off SSL certificate validation." => "VypnĆŗÅ„ overovanie SSL certifikĆ”tu.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Ak pripojenie pracuje len s touto možnosÅ„ou, tak importujte SSL certifikĆ”t LDAP serveru do vÔŔho servera ownCloud.", diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index 133d7ee9119..e1734a90780 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "Brez katerekoli vsebnika, npr. \"objectClass=posixGroup\".", "Port" => "Vrata", "Use TLS" => "Uporabi TLS", -"Do not use it for SSL connections, it will fail." => "Uporaba SSL za povezave bo spodletela.", "Case insensitve LDAP server (Windows)" => "Strežnik LDAP ne upoÅ”teva velikosti črk (Windows)", "Turn off SSL certificate validation." => "Onemogoči potrditev veljavnosti potrdila SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "V primeru, da povezava deluje le s to možnostjo, uvozite potrdilo SSL iz strežnika LDAP na vaÅ” strežnik ownCloud.", diff --git a/apps/user_ldap/l10n/sr.php b/apps/user_ldap/l10n/sr.php index 418d94afca5..52569a08ef8 100644 --- a/apps/user_ldap/l10n/sr.php +++ b/apps/user_ldap/l10n/sr.php @@ -18,7 +18,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "без икаквог Ń‡ŃƒŠ²Š°Ń€Š° места, нпр. ā€žobjectClass=posixGroupā€œ.", "Port" => "ŠŸŠ¾Ń€Ń‚", "Use TLS" => "ŠšŠ¾Ń€ŠøŃŃ‚Šø TLS", -"Do not use it for SSL connections, it will fail." => "ŠŠµ користите за SSL везе Ń˜ŠµŃ€ неће раГити.", "Case insensitve LDAP server (Windows)" => "LDAP сервер осетљив на велика Šø мала слова (Windows)", "Turn off SSL certificate validation." => "Š˜ŃŠŗŃ™ŃƒŃ‡ŠøŃ‚Šµ ŠæŠ¾Ń‚Š²Ń€Š“Ńƒ SSL сертификата.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Увезите SSL сертификат LDAP сервера у свој ownCloud ако веза раГи само са овом Š¾ŠæŃ†ŠøŃ˜Š¾Š¼.", diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 509906934cb..c100fc94afe 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -43,7 +43,6 @@ "Disable Main Server" => "Inaktivera huvudserver", "When switched on, ownCloud will only connect to the replica server." => "NƤr denna Ƥr pĆ„kopplad kommer ownCloud att koppla upp till replika-servern, endast.", "Use TLS" => "AnvƤnd TLS", -"Do not use it for SSL connections, it will fail." => "AnvƤnd inte fƶr SSL-anslutningar, det kommer inte att fungera.", "Case insensitve LDAP server (Windows)" => "LDAP-servern Ƥr okƤnslig fƶr gemener och versaler (Windows)", "Turn off SSL certificate validation." => "StƤng av verifiering av SSL-certifikat.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Om anslutningen bara fungerar med det hƤr alternativet, importera LDAP-serverns SSL-certifikat i din ownCloud-server.", diff --git a/apps/user_ldap/l10n/ta_LK.php b/apps/user_ldap/l10n/ta_LK.php index d617f49700f..f6beb3c4863 100644 --- a/apps/user_ldap/l10n/ta_LK.php +++ b/apps/user_ldap/l10n/ta_LK.php @@ -9,7 +9,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ą®Žą®ØąÆą®¤ ą®’ą®¤ąÆą®•ąÆą®•ąÆ€ą®ŸąÆą®®ąÆ ą®‡ą®²ąÆą®²ą®¾ą®®ą®²ąÆ, ą®‰ą®¤ą®¾ą®°ą®£ą®®ąÆ. \"objectClass=posixGroup\".", "Port" => "துறை ", "Use TLS" => "TLS ஐ ą®Ŗą®Æą®©ąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ą®µąÆą®®ąÆ", -"Do not use it for SSL connections, it will fail." => "SSL ą®‡ą®£ąÆˆą®ŖąÆą®Ŗą®æą®±ąÆą®•ąÆ ą®Ŗą®Æą®©ąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ą®µąÆ‡ą®£ąÆą®Ÿą®¾ą®®ąÆ, அது ą®¤ąÆ‹ą®²ąÆą®µą®æą®Æą®ŸąÆˆą®ÆąÆą®®ąÆ.", "Case insensitve LDAP server (Windows)" => "ą®‰ą®£ą®°ąÆą®šąÆą®šą®æą®Æą®¾ą®© LDAP ą®šąÆ‡ą®µąÆˆą®Æą®•ą®®ąÆ (ą®šą®¾ą®³ą®°ą®™ąÆą®•ą®³ąÆ)", "Turn off SSL certificate validation." => "SSL ą®šą®¾ą®©ąÆą®±ą®æą®¤ą®“ą®æą®©ąÆ ą®šąÆ†ą®²ąÆą®²ąÆą®Ŗą®Ÿą®æą®ÆąÆˆ ą®Øą®æą®±ąÆą®¤ąÆą®¤ą®æą®µą®æą®Ÿą®µąÆą®®ąÆ", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "ą®‡ą®ØąÆą®¤ ą®¤ąÆ†ą®°ą®æą®µąÆą®•ą®³ą®æą®²ąÆ ą®®ą®ŸąÆą®ŸąÆą®®ąÆ ą®‡ą®£ąÆˆą®ŖąÆą®ŖąÆ ą®µąÆ‡ą®²ąÆˆą®šąÆ†ą®ÆąÆą®¤ą®¾ą®²ąÆ, ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ owncloud ą®šąÆ‡ą®µąÆˆą®Æą®•ą®¤ąÆą®¤ą®æą®²ą®æą®°ąÆą®ØąÆą®¤ąÆ LDAP ą®šąÆ‡ą®µąÆˆą®Æą®•ą®¤ąÆą®¤ą®æą®©ąÆ SSL ą®šą®¾ą®©ąÆą®±ą®æą®¤ą®“ąÆˆ ą®‡ą®±ą®•ąÆą®•ąÆą®®ą®¤ą®æ ą®šąÆ†ą®ÆąÆą®Æą®µąÆą®®ąÆ", diff --git a/apps/user_ldap/l10n/th_TH.php b/apps/user_ldap/l10n/th_TH.php index 07dbc835b31..802badb2f03 100644 --- a/apps/user_ldap/l10n/th_TH.php +++ b/apps/user_ldap/l10n/th_TH.php @@ -36,7 +36,6 @@ "Port" => "ąøžąø­ąø£ą¹Œąø•", "Disable Main Server" => "ąø›ąø“ąø”ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ą¹€ąø‹ąø“ąø£ą¹ŒąøŸą¹€ąø§ąø­ąø£ą¹Œąø«ąø„ąø±ąø", "Use TLS" => "ą¹ƒąøŠą¹‰ TLS", -"Do not use it for SSL connections, it will fail." => "ąøąø£ąøøąø“ąø²ąø­ąø¢ą¹ˆąø²ą¹ƒąøŠą¹‰ąøąø²ąø£ą¹€ąøŠąø·ą¹ˆąø­ąø”ąø•ą¹ˆąø­ą¹ąøšąøš SSL ąøąø²ąø£ą¹€ąøŠąø·ą¹ˆąø­ąø”ąø•ą¹ˆąø­ąøˆąø°ą¹€ąøąø“ąø”ąøąø²ąø£ąø„ą¹‰ąø”ą¹€ąø«ąø„ąø§", "Case insensitve LDAP server (Windows)" => "ą¹€ąø‹ąø“ąø£ą¹ŒąøŸą¹€ąø§ąø­ąø£ą¹Œ LDAP ประเภท Case insensitive (ąø§ąø“ąø™ą¹‚ąø”ąø§ąøŖą¹Œ)", "Turn off SSL certificate validation." => "ąø›ąø“ąø”ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ąøąø²ąø£ąø•ąø£ąø§ąøˆąøŖąø­ąøšąø„ąø§ąø²ąø”ąø–ąø¹ąøąø•ą¹‰ąø­ąø‡ąø‚ąø­ąø‡ą¹ƒąøšąø£ąø±ąøšąø£ąø­ąø‡ąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢ SSL", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "ąø«ąø²ąøąøąø²ąø£ą¹€ąøŠąø·ą¹ˆąø­ąø”ąø•ą¹ˆąø­ąøŖąø²ąø”ąø²ąø£ąø–ąø—ąø³ąø‡ąø²ąø™ą¹„ąø”ą¹‰ą¹€ąø‰ąøžąø²ąø°ąøąø±ąøšąø•ąø±ąø§ą¹€ąø„ąø·ąø­ąøąø™ąøµą¹‰ą¹€ąø—ą¹ˆąø²ąø™ąø±ą¹‰ąø™, ą¹ƒąø«ą¹‰ąø™ąø³ą¹€ąø‚ą¹‰ąø²ąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹ƒąøšąø£ąø±ąøšąø£ąø­ąø‡ąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢ą¹ąøšąøš SSL ąø‚ąø­ąø‡ą¹€ąø‹ąø“ąø£ą¹ŒąøŸą¹€ąø§ąø­ąø£ą¹Œ LDAP ąø”ąø±ąø‡ąøąø„ą¹ˆąø²ąø§ą¹€ąø‚ą¹‰ąø²ą¹„ąø›ą¹„ąø§ą¹‰ą¹ƒąø™ą¹€ąø‹ąø“ąø£ą¹ŒąøŸą¹€ąø§ąø­ąø£ą¹Œ ownCloud", diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index 8ded27a2952..1bed9e246c9 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -12,7 +12,6 @@ "Group Filter" => "Grup Süzgeci", "Port" => "Port", "Use TLS" => "TLS kullan", -"Do not use it for SSL connections, it will fail." => "SSL bağlantıları ile kullanmayın, başarısız olacaktır.", "Turn off SSL certificate validation." => "SSL sertifika doğrulamasını kapat.", "Not recommended, use for testing only." => "Ɩnerilmez, sadece test iƧin kullanın.", "in seconds. A change empties the cache." => "saniye cinsinden. Bir değişiklik ƶnbelleği temizleyecektir.", diff --git a/apps/user_ldap/l10n/uk.php b/apps/user_ldap/l10n/uk.php index 4dd1256ee33..643a7495890 100644 --- a/apps/user_ldap/l10n/uk.php +++ b/apps/user_ldap/l10n/uk.php @@ -1,9 +1,24 @@ "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ виГалити ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–ŃŽ сервера", +"The configuration is valid and the connection could be established!" => "ŠšŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń вірна і зв'ŃŠ·Š¾Šŗ може Š±ŃƒŃ‚Šø встановлений ​​!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "ŠšŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń вірна, але встановити зв'ŃŠ·Š¾Šŗ не Š²Š“Š°Š»Š¾ŃŃ. Š‘ŃƒŠ“ŃŒ ласка, перевірте Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń сервера і облікові Гані.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "ŠšŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń невірна. ŠŸŠ¾Š“Ń€Š¾Š±ŠøŃ†Ń– ŠæŠ¾Š“ŠøŠ²Ń–Ń‚ŃŒŃŃ, буГь ласка, в Š¶ŃƒŃ€Š½Š°Š»Ń– ownCloud.", "Deletion failed" => "Š’ŠøŠ“Š°Š»ŠµŠ½Š½Ń не було виконано", +"Take over settings from recent server configuration?" => "Š—Š°ŃŃ‚Š¾ŃŃƒŠ²Š°Ń‚Šø Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Š· Š¾ŃŃ‚Š°Š½Š½ŃŒŠ¾Ń— ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń— сервера ?", +"Keep settings?" => "Зберегти Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń ?", +"Cannot add server configuration" => "ŠŠµŠ¼Š¾Š¶Š»ŠøŠ²Š¾ ГоГати ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–ŃŽ сервера", +"Connection test succeeded" => "ŠŸŠµŃ€ŠµŠ²Ń–Ń€ŠŗŠ° Š·'Ń”Š“Š½Š°Š½Š½Ń ŠæŃ€Š¾Š¹ŃˆŠ»Š° ŃƒŃŠæŃ–ŃˆŠ½Š¾", +"Connection test failed" => "ŠŸŠµŃ€ŠµŠ²Ń–Ń€ŠŗŠ° Š·'Ń”Š“Š½Š°Š½Š½Ń Š·Š°Š²ŠµŃ€ŃˆŠøŠ»Š°ŃŃŒ Š½ŠµŃƒŃŠæŃ–ŃˆŠ½Š¾", +"Do you really want to delete the current Server Configuration?" => "Š’Šø Гійсно бажаєте виГалити ŠæŠ¾Ń‚Š¾Ń‡Š½Ńƒ ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–ŃŽ сервера ?", +"Confirm Deletion" => "ŠŸŃ–Š“Ń‚Š²ŠµŃ€Š“Ń–Ń‚ŃŒ Š’ŠøŠ“Š°Š»ŠµŠ½Š½Ń", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Увага: Š—Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŠø user_ldap та user_webdavauth не ŃŃƒŠ¼Ń–ŃŠ½Ń–. Š’Šø можете Š·Ń–Ń‚ŠŗŠ½ŃƒŃ‚ŠøŃŃ Š· Š½ŠµŃŠæŠ¾Š“Ń–Š²Š°Š½Š¾ŃŽ ŠæŠ¾Š²ŠµŠ“Ń–Š½ŠŗŠ¾ŃŽ. Š‘ŃƒŠ“ŃŒ ласка, Š·Š²ŠµŃ€Š½Ń–Ń‚ŃŒŃŃ Го системного аГміністратора, щоб Š²Ń–Š“ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šø оГну Š· них.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Увага: ŠŸŠ¾Ń‚Ń€Ń–Š±Š½ŠøŠ¹ моГуль PHP LDAP не встановлено, базова програма ŠæŃ€Š°Ń†ŃŽŠ²Š°Ń‚Šø не буГе. Š‘ŃƒŠ“ŃŒ ласка, Š·Š²ŠµŃ€Š½Ń–Ń‚ŃŒŃŃ Го системного аГміністратора, щоб встановити його.", +"Server configuration" => "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Дервера", +"Add Server Configuration" => "ДоГати Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Дервера", "Host" => "Єост", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можна не Š²ŠŗŠ°Š·ŃƒŠ²Š°Ń‚Šø протокол, ŃŠŗŃ‰Š¾ вам не потрібен SSL. ТоГі ŠæŠ¾Ń‡Š½Ń–Ń‚ŃŒ Š· ldaps://", "Base DN" => "Базовий DN", +"One Base DN per line" => "ŠžŠ“ŠøŠ½ Base 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 і ŠŸŠ°Ń€Š¾Š»ŃŒ порожніми.", @@ -18,9 +33,10 @@ "Group Filter" => "Š¤Ń–Š»ŃŒŃ‚Ń€ Š“Ń€ŃƒŠæ", "Defines the filter to apply, when retrieving groups." => "Визначає Ń„Ń–Š»ŃŒŃ‚Ń€, ŃŠŗŠøŠ¹ Š·Š°ŃŃ‚Š¾ŃŠ¾Š²ŃƒŃ”Ń‚ŃŒŃŃ при отриманні Š³Ń€ŃƒŠæ.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "без буГь-ŃŠŗŠ¾Š³Š¾ Š·Š°ŠæŠ¾Š²Š½ŃŽŠ²Š°Ń‡Š°, наприклаГ: \"objectClass=posixGroup\".", +"Configuration Active" => "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Активне", +"When unchecked, this configuration will be skipped." => "Якщо \"галочка\" Š·Š½ŃŃ‚Š°, ця ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń буГе ŠæŃ€Š¾ŠæŃƒŃ‰ŠµŠ½Š°.", "Port" => "ŠŸŠ¾Ń€Ń‚", "Use TLS" => "Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŠ¹Ń‚Šµ TLS", -"Do not use it for SSL connections, it will fail." => "ŠŠµ Š²ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŠ¹Ń‚Šµ його Š“Š»Ń SSL Š·'Ń”Š“Š½Š°Š½ŃŒ, це не буГе виконано.", "Case insensitve LDAP server (Windows)" => "ŠŠµŃ‡ŃƒŃ‚Š»ŠøŠ²ŠøŠ¹ Го Ń€ŠµŠ³Ń–ŃŃ‚Ń€Ńƒ LDAP сервер (Windows)", "Turn off SSL certificate validation." => "Š’ŠøŠ¼ŠŗŠ½ŃƒŃ‚Šø ŠæŠµŃ€ŠµŠ²Ń–Ń€ŠŗŃƒ SSL сертифіката.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Якщо Š·'Ń”Š“Š½Š°Š½Š½Ń ŠæŃ€Š°Ń†ŃŽŃ” лише Š· цією Š¾ŠæŃ†Ń–Ń”ŃŽ, Ń–Š¼ŠæŠ¾Ń€Ń‚ŃƒŠ¹Ń‚Šµ SSL сертифікат LDAP сервера у ваший ownCloud сервер.", @@ -29,9 +45,11 @@ "User Display Name Field" => "Поле, ŃŠŗŠµ віГображає Ім'я ŠšŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š°", "The LDAP attribute to use to generate the user`s ownCloud name." => "ŠŃ‚Ń€ŠøŠ±ŃƒŃ‚ LDAP, ŃŠŗŠøŠ¹ Š²ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŃ”Ń‚ŃŒŃŃ Š“Š»Ń генерації імен ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń–Š² ownCloud.", "Base User Tree" => "ŠžŃŠ½Š¾Š²Š½Šµ Дерево ŠšŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń–Š²", +"One User Base DN per line" => "ŠžŠ“ŠøŠ½ ŠšŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡ Base DN на оГній строчці", "Group Display Name Field" => "Поле, ŃŠŗŠµ віГображає Ім'я Š“Ń€ŃƒŠæŠø", "The LDAP attribute to use to generate the groups`s ownCloud name." => "ŠŃ‚Ń€ŠøŠ±ŃƒŃ‚ LDAP, ŃŠŗŠøŠ¹ Š²ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŃ”Ń‚ŃŒŃŃ Š“Š»Ń генерації імен Š³Ń€ŃƒŠæ ownCloud.", "Base Group Tree" => "ŠžŃŠ½Š¾Š²Š½Šµ Дерево Š“Ń€ŃƒŠæ", +"One Group Base DN per line" => "ŠžŠ“Š½Š° Š“Ń€ŃƒŠæŠ° Base DN на оГній строчці", "Group-Member association" => "ŠŃŠ¾Ń†Ń–Š°Ń†Ń–Ń Š“Ń€ŃƒŠæŠ°-Член", "in bytes" => "в байтах", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Š—Š°Š»ŠøŃˆŃ‚Šµ порожнім Š“Š»Ń імені ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š° (за Š·Š°Š¼Š¾Š²Ń‡Š°Š½Š½ŃŠ¼). Š†Š½Š°ŠŗŃˆŠµ, Š²ŠŗŠ°Š¶Ń–Ń‚ŃŒ Š°Ń‚Ń€ŠøŠ±ŃƒŃ‚ LDAP/AD.", diff --git a/apps/user_ldap/l10n/vi.php b/apps/user_ldap/l10n/vi.php index 76ff6fe33a4..46054e4a4e2 100644 --- a/apps/user_ldap/l10n/vi.php +++ b/apps/user_ldap/l10n/vi.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "mĆ  khĆ“ng giữ chį»— nĆ o, vĆ­ dỄ nhʰ \"objectClass = osixGroup\".", "Port" => "Cổng", "Use TLS" => "Sį»­ dỄng TLS", -"Do not use it for SSL connections, it will fail." => "Kįŗæt nối SSL bị lį»—i. ", "Case insensitve LDAP server (Windows)" => "TrĘ°į»ng hợp insensitve LDAP mĆ”y chį»§ (Windows)", "Turn off SSL certificate validation." => "TįŗÆt xĆ”c thį»±c chứng nhįŗ­n SSL", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Nįŗæu kįŗæt nối chỉ hoįŗ”t động vį»›i tùy chį»n nĆ y, vui lòng import LDAP certificate SSL trong mĆ”y chį»§ ownCloud cį»§a bįŗ”n.", diff --git a/apps/user_ldap/l10n/zh_CN.GB2312.php b/apps/user_ldap/l10n/zh_CN.GB2312.php index 91b059afd0b..f5bc41fd46b 100644 --- a/apps/user_ldap/l10n/zh_CN.GB2312.php +++ b/apps/user_ldap/l10n/zh_CN.GB2312.php @@ -19,7 +19,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "äøčƒ½ä½æē”Øå ä½ē¬¦ļ¼Œä¾‹å¦‚ \"objectClass=posixGroup\"怂", "Port" => "ē«Æå£", "Use TLS" => "使用 TLS", -"Do not use it for SSL connections, it will fail." => "äøč¦ä½æē”Øå®ƒčæ›č”Œ SSL čæžęŽ„ļ¼Œä¼šå¤±č“„ēš„ć€‚", "Case insensitve LDAP server (Windows)" => "å¤§å°å†™äøę•ę„Ÿēš„ LDAP ęœåŠ”å™Ø (Windows)", "Turn off SSL certificate validation." => "关闭 SSL čÆä¹¦ę ”éŖŒć€‚", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "å¦‚ęžœåŖęœ‰ä½æē”Øę­¤é€‰é”¹ę‰čƒ½čæžęŽ„ļ¼ŒčÆ·åÆ¼å…„ LDAP ęœåŠ”å™Øēš„ SSL čÆä¹¦åˆ°ę‚Øēš„ ownCloud ęœåŠ”å™Øć€‚", diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index d0c32e94e08..d494945e2e4 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -20,7 +20,6 @@ "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ę— éœ€å ä½ē¬¦ļ¼Œä¾‹å¦‚\"objectClass=posixGroup\"", "Port" => "ē«Æå£", "Use TLS" => "使用TLS", -"Do not use it for SSL connections, it will fail." => "äøč¦åœØSSLé“¾ęŽ„äø­ä½æē”Øę­¤é€‰é”¹ļ¼Œä¼šåÆ¼č‡“å¤±č“„ć€‚", "Case insensitve LDAP server (Windows)" => "å¤§å°å†™ę•ę„ŸLDAPęœåŠ”å™Ø(Windows)", "Turn off SSL certificate validation." => "关闭SSL证书验证", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "å¦‚ęžœé“¾ęŽ„ä»…åœØę­¤é€‰é”¹ę—¶åÆē”Øļ¼ŒåœØę‚Øēš„ownCloudęœåŠ”å™Øäø­åÆ¼å…„LDAPęœåŠ”å™Øēš„SSL证书。", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 218eeed0722..67514723e75 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,6 +1,5 @@ "ألا توجد فئة Ł„Ł„Ų„Ų¶Ų§ŁŲ©ŲŸ", -"This category already exists: " => "هذه الفئة Ł…ŁˆŲ¬ŁˆŲÆŲ© مسبقاً", "No categories selected for deletion." => "لم ŁŠŲŖŁ… اختيار فئة للحذف", "Sunday" => "الاحد", "Monday" => "Ų§Ł„Ų£Ų«Ł†ŁŠŁ†", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index deac6afa359..426b4856707 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s নামের ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦°ą¦•ą¦¾ą¦°ą§€ \"%s\" ą¦«ą§‹ą¦²ą§ą¦”ą¦¾ą¦°ą¦Ÿą¦æ আপনার সা঄ে ভাগাভাগি ą¦•ą¦°ą§‡ą¦›ą§‡ą¦Øą„¤ ą¦ą¦Ÿą¦æ ą¦ą¦–ą¦Ø ą¦ą¦–ą¦¾ą¦Øą§‡ ঔাউনলোঔ করার ą¦œą¦Øą§ą¦Æ সুলভঃ %s", "Category type not provided." => "ą¦•ą§ą¦Æą¦¾ą¦Ÿą§‡ą¦—ą¦°ą¦æą¦° ধরণটি ą¦Ŗą§ą¦°ą¦¦ą¦¾ą¦Ø করা হয় ą¦Øą¦æą„¤", "No category to add?" => "যোগ করার মত কোন ą¦•ą§ą¦Æą¦¾ą¦Ÿą§‡ą¦—ą¦°ą¦æ নেই ?", -"This category already exists: " => "ą¦ą¦‡ ą¦•ą§ą¦Æą¦¾ą¦Ÿą§‡ą¦—ą¦°ą¦æą¦Ÿą¦æ ą¦Ŗą§‚ą¦°ą§ą¦¬ ঄েকেই ą¦¬ą¦æą¦¦ą§ą¦Æą¦®ą¦¾ą¦Øą¦ƒ", "Object type not provided." => "ą¦…ą¦¬ą¦œą§‡ą¦•ą§ą¦Ÿą§‡ą¦° ধরণটি ą¦Ŗą§ą¦°ą¦¦ą¦¾ą¦Ø করা হয় ą¦Øą¦æą„¤", "%s ID not provided." => "%s ID ą¦Ŗą§ą¦°ą¦¦ą¦¾ą¦Ø করা হয় ą¦Øą¦æą„¤", "Error adding %s to favorites." => "ą¦Ŗą§ą¦°ą¦æą§Ÿą¦¤ą§‡ %s যোগ করতে ą¦øą¦®ą¦øą§ą¦Æą¦¾ দেখা ą¦¦ą¦æą§Ÿą§‡ą¦›ą§‡ą„¤", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 780366aaf0e..3a7edb21104 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit la carpeta \"%s\" amb vós. EstĆ  disponible per a la descĆ rrega a: %s", "Category type not provided." => "No s'ha especificat el tipus de categoria.", "No category to add?" => "No voleu afegir cap categoria?", -"This category already exists: " => "Aquesta categoria ja existeix:", "Object type not provided." => "No s'ha proporcionat el tipus d'objecte.", "%s ID not provided." => "No s'ha proporcionat la ID %s.", "Error adding %s to favorites." => "Error en afegir %s als preferits.", @@ -129,6 +128,7 @@ "Lost your password?" => "Heu perdut la contrasenya?", "remember" => "recorda'm", "Log in" => "Inici de sessió", +"Alternative Logins" => "Acreditacions alternatives", "prev" => "anterior", "next" => "següent", "Updating ownCloud to version %s, this may take a while." => "S'estĆ  actualitzant ownCloud a la versió %s, pot trigar una estona." diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index a8fa035711c..ea8ac8947ec 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vĆ”mi sdĆ­lĆ­ složku \"%s\". Můžete ji stĆ”hnout zde: %s", "Category type not provided." => "NezadĆ”n typ kategorie.", "No category to add?" => "ŽÔdnĆ” kategorie k přidĆ”nĆ­?", -"This category already exists: " => "Tato kategorie již existuje: ", "Object type not provided." => "NezadĆ”n typ objektu.", "%s ID not provided." => "NezadĆ”no ID %s.", "Error adding %s to favorites." => "Chyba při přidĆ”vĆ”nĆ­ %s k oblĆ­beným.", @@ -129,6 +128,7 @@ "Lost your password?" => "Ztratili jste svĆ© heslo?", "remember" => "zapamatovat si", "Log in" => "PřihlĆ”sit", +"Alternative Logins" => "AlternativnĆ­ přihlÔŔenĆ­", "prev" => "předchozĆ­", "next" => "nĆ”sledujĆ­cĆ­", "Updating ownCloud to version %s, this may take a while." => "Aktualizuji ownCloud na verzi %s, bude to chvĆ­li trvat." diff --git a/core/l10n/da.php b/core/l10n/da.php index ca23b622289..4ade1e53363 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s", "Category type not provided." => "Kategori typen ikke er fastsat.", "No category to add?" => "Ingen kategori at tilfĆøje?", -"This category already exists: " => "Denne kategori eksisterer allerede: ", "Object type not provided." => "Object type ikke er fastsat.", "%s ID not provided." => "%s ID ikke oplyst.", "Error adding %s to favorites." => "Fejl ved tilfĆøjelse af %s til favoritter.", diff --git a/core/l10n/de.php b/core/l10n/de.php index bc7a7dada1d..1e437dafa1e 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Dich freigegeben. Es ist zum Download hier ferfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", -"This category already exists: " => "Kategorie existiert bereits:", "Object type not provided." => "Objekttyp nicht angegeben.", "%s ID not provided." => "%s ID nicht angegeben.", "Error adding %s to favorites." => "Fehler beim Hinzufügen von %s zu den Favoriten.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index ca5b843a832..afb51b52916 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Sie freigegeben. Es ist zum Download hier ferfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", -"This category already exists: " => "Kategorie existiert bereits:", "Object type not provided." => "Objekttyp nicht angegeben.", "%s ID not provided." => "%s ID nicht angegeben.", "Error adding %s to favorites." => "Fehler beim Hinzufügen von %s zu den Favoriten.", @@ -129,6 +128,7 @@ "Lost your password?" => "Passwort vergessen?", "remember" => "merken", "Log in" => "Einloggen", +"Alternative Logins" => "Alternative Logins", "prev" => "Zurück", "next" => "Weiter", "Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies kƶnnte eine Weile dauern." diff --git a/core/l10n/el.php b/core/l10n/el.php index 74ec378b9df..95e9cf6be70 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Ο Ļ‡ĻĪ®ĻƒĻ„Ī·Ļ‚ %s Ī“Ī¹Ī±Ī¼ĪæĪ¹ĻĪ¬ĻƒĻ„Ī·ĪŗĪµ τον φάκελο \"%s\" μαζί ĻƒĪ±Ļ‚. Είναι Ī“Ī¹Ī±ĪøĪ­ĻƒĪ¹Ī¼ĪæĻ‚ για λήψη ĪµĪ“ĻŽ: %s", "Category type not provided." => "Δεν Ī“ĻŽĪøĪ·ĪŗĪµ Ļ„ĻĻ€ĪæĻ‚ κατηγορίας.", "No category to add?" => "Δεν έχετε κατηγορία να Ļ€ĻĪæĻƒĪøĪ­ĻƒĪµĻ„Īµ;", -"This category already exists: " => "Αυτή Ī· κατηγορία υπάρχει ήΓη:", "Object type not provided." => "Δεν Ī“ĻŽĪøĪ·ĪŗĪµ Ļ„ĻĻ€ĪæĻ‚ αντικειμένου.", "%s ID not provided." => "Δεν Ī“ĻŽĪøĪ·ĪŗĪµ Ī· ID για %s.", "Error adding %s to favorites." => "Σφάλμα Ļ€ĻĪæĻƒĪøĪ®ĪŗĪ·Ļ‚ %s ĻƒĻ„Ī± αγαπημένα.", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 7c0e65f4e03..f2297bd3d97 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "La uzanto %s kunhavigis la dosierujon ā€œ%sā€ kun vi. Ĝi elŝuteblas el tie ĉi: %s", "Category type not provided." => "Ne proviziĝis tipon de kategorio.", "No category to add?" => "Ĉu neniu kategorio estas aldonota?", -"This category already exists: " => "Ĉi tiu kategorio jam ekzistas: ", "Object type not provided." => "Ne proviziĝis tipon de objekto.", "%s ID not provided." => "Ne proviziĝis ID-on de %s.", "Error adding %s to favorites." => "Eraro dum aldono de %s al favoratoj.", diff --git a/core/l10n/es.php b/core/l10n/es.php index e046e3bf7a0..b56fd13c1b2 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquĆ­: %s", "Category type not provided." => "Tipo de categoria no proporcionado.", "No category to add?" => "ĀæNinguna categorĆ­a para aƱadir?", -"This category already exists: " => "Esta categorĆ­a ya existe: ", "Object type not provided." => "ipo de objeto no proporcionado.", "%s ID not provided." => "%s ID no proporcionado.", "Error adding %s to favorites." => "Error aƱadiendo %s a los favoritos.", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 1ce26416f6e..0764077a1c1 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s compartió el archivo \"%s\" con vos. EstĆ” disponible para su descarga aquĆ­: %s", "Category type not provided." => "Tipo de categorĆ­a no provisto. ", "No category to add?" => "ĀæNinguna categorĆ­a para aƱadir?", -"This category already exists: " => "Esta categorĆ­a ya existe: ", "Object type not provided." => "Tipo de objeto no provisto. ", "%s ID not provided." => "%s ID no provista. ", "Error adding %s to favorites." => "Error al agregar %s a favoritos. ", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index f4328de9901..b0fc75736a0 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,6 +1,5 @@ "Pole kategooriat, mida lisada?", -"This category already exists: " => "See kategooria on juba olemas: ", "No categories selected for deletion." => "Kustutamiseks pole kategooriat valitud.", "Sunday" => "PühapƤev", "Monday" => "EsmaspƤev", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index ed919d64d9d..a810e7fd492 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s erabiltzaileak \"%s\" karpeta zurekin partekatu du. Hemen duzu eskuragarri: %s", "Category type not provided." => "Kategoria mota ez da zehaztu.", "No category to add?" => "Ez dago gehitzeko kategoriarik?", -"This category already exists: " => "Kategoria hau dagoeneko existitzen da:", "Object type not provided." => "Objetu mota ez da zehaztu.", "%s ID not provided." => "%s ID mota ez da zehaztu.", "Error adding %s to favorites." => "Errorea gertatu da %s gogokoetara gehitzean.", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 359eddb73ef..10a57962f64 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "کاربر %s Ł¾ŁˆŲ“Ł‡ \"%s\" Ų±Ų§ ŲØŲ§ Ų“Ł…Ų§ به Ų§Ų“ŲŖŲ±Ų§Ś© گذاؓته Ų§Ų³ŲŖ. Ł¾Ų±ŁˆŁ†ŲÆŁ‡ برای ŲÆŲ§Ł†Ł„ŁˆŲÆ Ų§ŪŒŁ†Ų¬Ų§Ų³ŲŖ : %s", "Category type not provided." => "Ł†ŁˆŲ¹ دسته ŲØŁ†ŲÆŪŒ ارائه نؓده Ų§Ų³ŲŖ.", "No category to add?" => "آیا ŚÆŲ±ŁˆŁ‡ دیگری برای Ų§ŁŲ²ŁˆŲÆŁ† Ł†ŲÆŲ§Ų±ŪŒŲÆ", -"This category already exists: " => "Ų§ŪŒŁ† ŚÆŲ±ŁˆŁ‡ Ų§Ų² قبل اضافه ؓده", "Object type not provided." => "Ł†ŁˆŲ¹ ؓی ارائه نؓده Ų§Ų³ŲŖ.", "%s ID not provided." => "ؓناسه %s ارائه نؓده Ų§Ų³ŲŖ.", "Error adding %s to favorites." => "خطای اضافه کردن %s به علاقه Ł…Ł†ŲÆŪŒ ها.", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 1f2568f9513..4d0a96996ea 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -4,7 +4,6 @@ "User %s shared the file \"%s\" with you. It is available for download here: %s" => "KƤyttƤjƤ %s jakoi tiedoston \"%s\" kanssasi. Se on ladattavissa tƤƤltƤ: %s", "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.", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index e3b70836521..7014cb82911 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagĆ© le dossier \"%s\" avec vous. Il est disponible au tĆ©lĆ©chargement ici : %s", "Category type not provided." => "Type de catĆ©gorie non spĆ©cifiĆ©.", "No category to add?" => "Pas de catĆ©gorie Ć  ajouter ?", -"This category already exists: " => "Cette catĆ©gorie existe dĆ©jĆ  : ", "Object type not provided." => "Type d'objet non spĆ©cifiĆ©.", "%s ID not provided." => "L'identifiant de %s n'est pas spĆ©cifiĆ©.", "Error adding %s to favorites." => "Erreur lors de l'ajout de %s aux favoris.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index e96d6962c90..382cd09f009 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuario %s compartiu o cartafol Ā«%sĀ» con vostede. Teno dispoƱƭbel en: %s", "Category type not provided." => "Non se indicou o tipo de categorĆ­a", "No category to add?" => "Sen categorĆ­a que engadir?", -"This category already exists: " => "Esta categorĆ­a xa existe: ", "Object type not provided." => "Non se forneceu o tipo de obxecto.", "%s ID not provided." => "Non se forneceu o ID %s.", "Error adding %s to favorites." => "Produciuse un erro ao engadir %s aos favoritos.", diff --git a/core/l10n/he.php b/core/l10n/he.php index b7292c6edee..09da86bf5ee 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "×”×ž×©×Ŗ×ž×© %s שיתף אתך את ×”×Ŗ×™×§×™×™×” ā€ž%sā€œ. × ×™×Ŗ×Ÿ ×œ×”×•×Ø×™×“ את ×”×Ŗ×™×§×™×™×” מכאן: %s", "Category type not provided." => "הוג ×”×§×˜×’×•×Ø×™×” לא הופק.", "No category to add?" => "אין ×§×˜×’×•×Ø×™×” להוהפה?", -"This category already exists: " => "×§×˜×’×•×Ø×™×” זאת כבר ×§×™×™×ž×Ŗ: ", "Object type not provided." => "הוג ×”×¤×Ø×™×˜ לא הופק.", "%s ID not provided." => "מזהה %s לא הופק.", "Error adding %s to favorites." => "אירעה שגיאה בעת הוהפת %s למועדפים.", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 78b767305a3..86136329d8f 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -1,6 +1,5 @@ "Nemate kategorija koje možete dodati?", -"This category already exists: " => "Ova kategorija već postoji: ", "No categories selected for deletion." => "Nema odabranih kategorija za brisanje.", "Sunday" => "nedelja", "Monday" => "ponedeljak", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 30ddc7b8677..8cbc81efe84 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s felhasznĆ”ló megosztotta ezt a mappĆ”t Ɩnnel: %s. A mappa innen tƶlthető le: %s", "Category type not provided." => "Nincs megadva a kategória tĆ­pusa.", "No category to add?" => "Nincs hozzĆ”adandó kategória?", -"This category already exists: " => "Ez a kategória mĆ”r lĆ©tezik: ", "Object type not provided." => "Az objektum tĆ­pusa nincs megadva.", "%s ID not provided." => "%s ID nincs megadva.", "Error adding %s to favorites." => "Nem sikerült a kedvencekhez adni ezt: %s", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 7f2eac17367..8adc38f0bba 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -1,5 +1,4 @@ "Iste categoria jam existe:", "Sunday" => "Dominica", "Monday" => "Lunedi", "Tuesday" => "Martedi", diff --git a/core/l10n/id.php b/core/l10n/id.php index 896d444e833..697195e7514 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,6 +1,5 @@ "Tidak ada kategori yang akan ditambahkan?", -"This category already exists: " => "Kategori ini sudah ada:", "No categories selected for deletion." => "Tidak ada kategori terpilih untuk penghapusan.", "Sunday" => "minggu", "Monday" => "senin", diff --git a/core/l10n/is.php b/core/l10n/is.php index 98766efc2c9..d542db5777b 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Notandinn %s deildi mƶppunni \"%s\" meư þér. HƦgt er aư hlaưa henni niưur hĆ©r: %s", "Category type not provided." => "Flokkur ekki gefin", "No category to add?" => "Enginn flokkur til aư bƦta viư?", -"This category already exists: " => "ƞessi flokkur er þegar til:", "Object type not provided." => "Tegund ekki Ć­ boưi.", "%s ID not provided." => "%s ID ekki Ć­ boưi.", "Error adding %s to favorites." => "Villa viư aư bƦta %s viư eftirlƦti.", diff --git a/core/l10n/it.php b/core/l10n/it.php index ec094f643a4..a9febc8ea96 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso la cartella \"%s\" con te. ƈ disponibile per lo scaricamento qui: %s", "Category type not provided." => "Tipo di categoria non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", -"This category already exists: " => "Questa categoria esiste giĆ : ", "Object type not provided." => "Tipo di oggetto non fornito.", "%s ID not provided." => "ID %s non fornito.", "Error adding %s to favorites." => "Errore durante l'aggiunta di %s ai preferiti.", @@ -129,6 +128,7 @@ "Lost your password?" => "Hai perso la password?", "remember" => "ricorda", "Log in" => "Accedi", +"Alternative Logins" => "Accessi alternativi", "prev" => "precedente", "next" => "successivo", "Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo." diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 155c201d9b7..c569c63355b 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ćƒ¦ćƒ¼ć‚¶ %s ćÆć‚ćŖćŸćØćƒ•ć‚©ćƒ«ćƒ€ \"%s\" ć‚’å…±ęœ‰ć—ć¦ć„ć¾ć™ć€‚ć“ć”ć‚‰ć‹ć‚‰ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ć§ćć¾ć™: %s", "Category type not provided." => "ć‚«ćƒ†ć‚“ćƒŖć‚æć‚¤ćƒ—ćÆęä¾›ć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚", "No category to add?" => "čæ½åŠ ć™ć‚‹ć‚«ćƒ†ć‚“ćƒŖćÆć‚ć‚Šć¾ć›ć‚“ć‹ļ¼Ÿ", -"This category already exists: " => "ć“ć®ć‚«ćƒ†ć‚“ćƒŖćÆć™ć§ć«å­˜åœØć—ć¾ć™: ", "Object type not provided." => "ć‚Ŗćƒ–ć‚øć‚§ć‚Æćƒˆć‚æć‚¤ćƒ—ćÆęä¾›ć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚", "%s ID not provided." => "%s ID ćÆęä¾›ć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚", "Error adding %s to favorites." => "ćŠę°—ć«å…„ć‚Šć« %s ć‚’čæ½åŠ ć‚Øćƒ©ćƒ¼", @@ -129,6 +128,7 @@ "Lost your password?" => "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’åæ˜ć‚Œć¾ć—ćŸć‹ļ¼Ÿ", "remember" => "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’čØ˜ę†¶ć™ć‚‹", "Log in" => "ćƒ­ć‚°ć‚¤ćƒ³", +"Alternative Logins" => "ä»£ę›æćƒ­ć‚°ć‚¤ćƒ³", "prev" => "前", "next" => "ꬔ", "Updating ownCloud to version %s, this may take a while." => "ownCloud ć‚’ćƒćƒ¼ć‚øćƒ§ćƒ³ %s ć«ę›“ę–°ć—ć¦ć„ć¾ć™ć€ć—ć°ć‚‰ććŠå¾…ć”äø‹ć•ć„ć€‚" diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index ab4045601f9..731a3534558 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -1,6 +1,5 @@ "არ არიე įƒ™įƒįƒ¢įƒ”įƒ’įƒįƒ įƒ˜įƒ įƒ“įƒįƒ”įƒįƒ›įƒįƒ¢įƒ”įƒ‘įƒšįƒįƒ“?", -"This category already exists: " => "įƒ™įƒįƒ¢įƒ”įƒ’įƒįƒ įƒ˜įƒ įƒ£įƒ™įƒ•įƒ” įƒįƒ įƒ”įƒ”įƒ‘įƒįƒ‘įƒ”", "No categories selected for deletion." => "įƒ”įƒįƒ įƒ”įƒ“įƒįƒ„įƒ¢įƒ˜įƒ įƒ”įƒ‘įƒ”įƒšįƒ˜ įƒ™įƒįƒ¢įƒ”įƒ’įƒįƒ įƒ˜įƒ არ არიე įƒįƒ įƒ©įƒ”įƒ£įƒšįƒ˜ ", "Sunday" => "įƒ™įƒ•įƒ˜įƒ įƒ", "Monday" => "įƒįƒ įƒØįƒįƒ‘įƒįƒ—įƒ˜", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 91c00c4a570..6133703b97a 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s ė‹˜ģ“ ķ“ė” \"%s\"ģ„(넼) ź³µģœ ķ•˜ģ˜€ģŠµė‹ˆė‹¤. ģ—¬źø°ģ—ģ„œ ė‹¤ģš“ė”œė“œķ•  수 ģžˆģŠµė‹ˆė‹¤: %s", "Category type not provided." => "ė¶„ė„˜ ķ˜•ģ‹ģ“ ģ œź³µė˜ģ§€ ģ•Šģ•˜ģŠµė‹ˆė‹¤.", "No category to add?" => "추가할 ė¶„ė„˜ź°€ ģ—†ģŠµė‹ˆź¹Œ?", -"This category already exists: " => "ģ“ ė¶„ė„˜ėŠ” ģ“ėÆø ģ”“ģž¬ķ•©ė‹ˆė‹¤:", "Object type not provided." => "ź°ģ²“ ķ˜•ģ‹ģ“ ģ œź³µė˜ģ§€ ģ•Šģ•˜ģŠµė‹ˆė‹¤.", "%s ID not provided." => "%s IDź°€ ģ œź³µė˜ģ§€ ģ•Šģ•˜ģŠµė‹ˆė‹¤.", "Error adding %s to favorites." => "ģ±…ź°ˆķ”¼ģ— %sģ„(넼) 추가할 수 ģ—†ģ—ˆģŠµė‹ˆė‹¤.", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 4069a778365..11137f27aa2 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -1,6 +1,5 @@ "Keng Kategorie fir bƤizesetzen?", -"This category already exists: " => "Des Kategorie existĆ©iert schonn:", "No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze lƤschen.", "Sunday" => "Sonndes", "Monday" => "MĆ©indes", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index c2dc47c826c..f25afe18686 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -1,6 +1,5 @@ "Nepridėsite jokios kategorijos?", -"This category already exists: " => "Tokia kategorija jau yra:", "No categories selected for deletion." => "Trynimui nepasirinkta jokia kategorija.", "Sunday" => "Sekmadienis", "Monday" => "Pirmadienis", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index a145c50464f..14f9a3fdf1a 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Lietotājs %s ar jums dalÄ«jās ar mapi ā€œ%sā€. To var lejupielādēt Å”eit — %s", "Category type not provided." => "Kategorijas tips nav norādÄ«ts.", "No category to add?" => "Nav kategoriju, ko pievienot?", -"This category already exists: " => "Šāda kategorija jau eksistē:", "Object type not provided." => "Objekta tips nav norādÄ«ts.", "%s ID not provided." => "%s ID nav norādÄ«ts.", "Error adding %s to favorites." => "Kļūda, pievienojot %s izlasei.", @@ -129,6 +128,7 @@ "Lost your password?" => "Aizmirsāt paroli?", "remember" => "atcerēties", "Log in" => "IerakstÄ«ties", +"Alternative Logins" => "AlternatÄ«vās pieteikÅ”anās", "prev" => "iepriekŔējā", "next" => "nākamā", "Updating ownCloud to version %s, this may take a while." => "Atjaunina ownCloud uz versiju %s. Tas var aizņemt kādu laiciņu." diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 0b202fa6667..49befd912c2 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ŠšŠ¾Ń€ŠøŃŠ½ŠøŠŗŠ¾Ń‚ %s ја споГели папката ā€ž%sā€œ со Вас. Достапна е за ŠæŃ€ŠµŠ·ŠµŠ¼Š°ŃšŠµ Ń‚ŃƒŠŗŠ°: %s", "Category type not provided." => "ŠŠµ беше Гоставен тип на ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Š°.", "No category to add?" => "ŠŠµŠ¼Š° ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Š° Га се ГоГаГе?", -"This category already exists: " => "ŠžŠ²Š°Š° ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Š° веќе постои:", "Object type not provided." => "ŠŠµ беше Гоставен тип на Š¾Š±Ń˜ŠµŠŗŃ‚.", "%s ID not provided." => "%s ID не беше Гоставено.", "Error adding %s to favorites." => "Š“Ń€ŠµŃˆŠŗŠ° при ГоГавање %s во омилени.", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 477e82ea9f1..af51079b570 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -1,6 +1,5 @@ "Tiada kategori untuk di tambah?", -"This category already exists: " => "Kategori ini telah wujud", "No categories selected for deletion." => "tiada kategori dipilih untuk penghapusan", "Sunday" => "Ahad", "Monday" => "Isnin", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 65d6ea00cce..340625449ee 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -1,6 +1,5 @@ "Ingen kategorier Ć„ legge til?", -"This category already exists: " => "Denne kategorien finnes allerede:", "No categories selected for deletion." => "Ingen kategorier merket for sletting.", "Sunday" => "SĆøndag", "Monday" => "Mandag", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index aca9b11cd12..f2e411a262f 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s", "Category type not provided." => "Categorie type niet opgegeven.", "No category to add?" => "Geen categorie toevoegen?", -"This category already exists: " => "Deze categorie bestaat al.", "Object type not provided." => "Object type niet opgegeven.", "%s ID not provided." => "%s ID niet opgegeven.", "Error adding %s to favorites." => "Toevoegen van %s aan favorieten is mislukt.", @@ -129,6 +128,7 @@ "Lost your password?" => "Uw wachtwoord vergeten?", "remember" => "onthoud gegevens", "Log in" => "Meld je aan", +"Alternative Logins" => "Alternatieve inlogs", "prev" => "vorige", "next" => "volgende", "Updating ownCloud to version %s, this may take a while." => "Updaten ownCloud naar versie %s, dit kan even duren." diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 5b399dd8264..abd5f5736af 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -1,6 +1,5 @@ "Pas de categoria d'ajustar ?", -"This category already exists: " => "La categoria exista ja :", "No categories selected for deletion." => "Pas de categorias seleccionadas per escafar.", "Sunday" => "Dimenge", "Monday" => "Diluns", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 1376fa1359d..19f0a7c29c6 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uzytkownik %s wspóldzieli folder \"%s\" z toba. Jest dostepny tutaj: %s", "Category type not provided." => "Typ kategorii nie podany.", "No category to add?" => "Brak kategorii", -"This category already exists: " => "Ta kategoria już istnieje", "Object type not provided." => "Typ obiektu nie podany.", "%s ID not provided." => "%s ID nie podany.", "Error adding %s to favorites." => "Błąd dodania %s do ulubionych.", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 929f298c4c3..7ca42b43c16 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O usuĆ”rio %s compartilhou com vocĆŖ a pasta \"%s\", que estĆ” disponĆ­vel para download em: %s", "Category type not provided." => "Tipo de categoria nĆ£o fornecido.", "No category to add?" => "Nenhuma categoria adicionada?", -"This category already exists: " => "Essa categoria jĆ” existe", "Object type not provided." => "tipo de objeto nĆ£o fornecido.", "%s ID not provided." => "%s ID nĆ£o fornecido(s).", "Error adding %s to favorites." => "Erro ao adicionar %s aos favoritos.", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 2189a7e811c..21cb8b51b3d 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "O utilizador %s partilhou a pasta \"%s\" consigo. EstĆ” disponĆ­vel para download aqui: %s", "Category type not provided." => "Tipo de categoria nĆ£o fornecido", "No category to add?" => "Nenhuma categoria para adicionar?", -"This category already exists: " => "Esta categoria jĆ” existe:", "Object type not provided." => "Tipo de objecto nĆ£o fornecido", "%s ID not provided." => "ID %s nĆ£o fornecido", "Error adding %s to favorites." => "Erro a adicionar %s aos favoritos", @@ -129,6 +128,7 @@ "Lost your password?" => "Esqueceu-se da sua password?", "remember" => "lembrar", "Log in" => "Entrar", +"Alternative Logins" => "Contas de acesso alternativas", "prev" => "anterior", "next" => "seguinte", "Updating ownCloud to version %s, this may take a while." => "A actualizar o ownCloud para a versĆ£o %s, esta operação pode demorar." diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 83587fa4a76..5558f2bb9ce 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Utilizatorul %s a partajat dosarul \"%s\" cu tine. Ǝl poți descărca de aici: %s ", "Category type not provided." => "Tipul de categorie nu este prevazut", "No category to add?" => "Nici o categorie de adăugat?", -"This category already exists: " => "Această categorie deja există:", "Object type not provided." => "Tipul obiectului nu este prevazut", "%s ID not provided." => "ID-ul %s nu a fost introdus", "Error adding %s to favorites." => "Eroare la adăugarea %s la favorite", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 2aebf734981..c119c68c404 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ŠŸŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒ %s открыл вам Š“Š¾ŃŃ‚ŃƒŠæ Šŗ папке \"%s\". ŠžŠ½Š° Š“Š¾ŃŃ‚ŃƒŠæŠ½Š° Š“Š»Ń Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø зГесь: %s", "Category type not provided." => "Тип категории не преГоставлен", "No category to add?" => "ŠŠµŃ‚ категорий Š“Š»Ń Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ?", -"This category already exists: " => "Эта ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚: ", "Object type not provided." => "Тип Š¾Š±ŃŠŠµŠŗŃ‚а не преГоставлен", "%s ID not provided." => "ID %s не преГоставлен", "Error adding %s to favorites." => "ŠžŃˆŠøŠ±ŠŗŠ° Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ %s в избранное", @@ -129,6 +128,7 @@ "Lost your password?" => "Забыли ŠæŠ°Ń€Š¾Š»ŃŒ?", "remember" => "Š·Š°ŠæŠ¾Š¼Š½ŠøŃ‚ŃŒ", "Log in" => "Войти", +"Alternative Logins" => "ŠŠ»ŃŒŃ‚ŠµŃ€Š½Š°Ń‚ŠøŠ²Š½Ń‹Šµ имена ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń", "prev" => "преГ", "next" => "слеГ", "Updating ownCloud to version %s, this may take a while." => "ŠŸŃ€Š¾ŠøŠ·Š²Š¾Š“ŠøŃ‚ŃŃ обновление ownCloud Го версии %s. Это может Š·Š°Š½ŃŃ‚ŃŒ некоторое Š²Ń€ŠµŠ¼Ń." diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 53a3b9b0d59..96a0e506e7a 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ŠŸŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒ %s открыл Вам Š“Š¾ŃŃ‚ŃƒŠæ Šŗ папке \"%s\". ŠžŠ½Š° Š“Š¾ŃŃ‚ŃƒŠæŠµŠ½Š° Š“Š»Ń Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø зГесь: %s", "Category type not provided." => "Тип категории не преГоставлен.", "No category to add?" => "ŠŠµŃ‚ категории Š“Š»Ń Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ?", -"This category already exists: " => "Эта ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚:", "Object type not provided." => "Тип Š¾Š±ŃŠŠµŠŗŃ‚а не преГоставлен.", "%s ID not provided." => "%s ID не преГоставлен.", "Error adding %s to favorites." => "ŠžŃˆŠøŠ±ŠŗŠ° Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ %s в избранное.", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index ad5ae0ea371..ee1555eb5d9 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -5,7 +5,6 @@ "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:", "Object type not provided." => "Neposkytnutý typ objektu.", "%s ID not provided." => "%s ID neposkytnutĆ©.", "Error adding %s to favorites." => "Chyba pri pridĆ”vanĆ­ %s do obľúbených položiek.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 54cf817a7a0..73539190042 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uporanik %s je dal mapo \"%s\" v souporabo z vami. Prenesete je lahko tukaj: %s", "Category type not provided." => "Vrsta kategorije ni podana.", "No category to add?" => "Ni kategorije za dodajanje?", -"This category already exists: " => "Ta kategorija že obstaja:", "Object type not provided." => "Vrsta predmeta ni podana.", "%s ID not provided." => "%s ID ni podan.", "Error adding %s to favorites." => "Napaka pri dodajanju %s med priljubljene.", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index ecd316b7cfb..61c2316764a 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -3,7 +3,6 @@ "User %s shared a folder with you" => "ŠšŠ¾Ń€ŠøŃŠ½ŠøŠŗ %s Гели са вама Š“ŠøŃ€ŠµŠŗŃ‚Š¾Ń€ŠøŃ˜ŃƒŠ¼", "Category type not provided." => "Врста ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Šµ није ŃƒŠ½ŠµŃ‚.", "No category to add?" => "ДоГати још неку ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Ńƒ?", -"This category already exists: " => "ŠšŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Š° већ ŠæŠ¾ŃŃ‚Š¾Ń˜Šø:", "Object type not provided." => "Врста Š¾Š±Ń˜ŠµŠŗŃ‚а није ŃƒŠ½ŠµŃ‚Š°.", "%s ID not provided." => "%s Š˜Š” нису ŃƒŠ½ŠµŃ‚Šø.", "Error adding %s to favorites." => "Š“Ń€ŠµŃˆŠŗŠ° приликом ГоГавања %s у омиљене.", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a0dde652693..2e129038ff0 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "AnvƤndare %s delade mappen \"%s\" med dig. Den finns att ladda ner hƤr: %s", "Category type not provided." => "Kategorityp inte angiven.", "No category to add?" => "Ingen kategori att lƤgga till?", -"This category already exists: " => "Denna kategori finns redan:", "Object type not provided." => "Objekttyp inte angiven.", "%s ID not provided." => "%s ID inte angiven.", "Error adding %s to favorites." => "Fel vid tillƤgg av %s till favoriter.", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 2b8829c717f..64d0abad6c1 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -1,7 +1,6 @@ "பிரிவு ą®µą®•ąÆˆą®•ą®³ąÆ ą®µą®“ą®™ąÆą®•ą®ŖąÆą®Ŗą®Ÿą®µą®æą®²ąÆą®²ąÆˆ", "No category to add?" => "ą®šąÆ‡ą®°ąÆą®ŖąÆą®Ŗą®¤ą®±ąÆą®•ą®¾ą®© ą®µą®•ąÆˆą®•ą®³ąÆ ą®‡ą®²ąÆą®²ąÆˆą®Æą®¾?", -"This category already exists: " => "ą®‡ą®ØąÆą®¤ ą®µą®•ąÆˆ ą®ą®±ąÆą®•ą®©ą®µąÆ‡ ą®‰ą®³ąÆą®³ą®¤ąÆ:", "Object type not provided." => "ą®ŖąÆŠą®°ąÆą®³ąÆ ą®µą®•ąÆˆ ą®µą®“ą®™ąÆą®•ą®ŖąÆą®Ŗą®Ÿą®µą®æą®²ąÆą®²ąÆˆ", "%s ID not provided." => "%s ID ą®µą®“ą®™ąÆą®•ą®ŖąÆą®Ŗą®Ÿą®µą®æą®²ąÆą®²ąÆˆ", "Error adding %s to favorites." => "ą®µą®æą®°ąÆą®ŖąÆą®Ŗą®™ąÆą®•ą®³ąÆą®•ąÆą®•ąÆ %s ஐ ą®šąÆ‡ą®°ąÆą®ŖąÆą®Ŗą®¤ą®æą®²ąÆ வஓு", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index ffab0bb9564..2c697b1b85d 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ąøœąø¹ą¹‰ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ %s ą¹„ąø”ą¹‰ą¹ąøŠąø£ą¹Œą¹‚ąøŸąø„ą¹€ąø”ąø­ąø£ą¹Œ \"%s\" ą¹ƒąø«ą¹‰ąøąø±ąøšąø„ąøøąø“ ą¹ąø„ąø°ąø„ąøøąø“ąøŖąø²ąø”ąø²ąø£ąø–ąø”ąø²ąø§ąø™ą¹Œą¹‚ąø«ąø„ąø”ą¹‚ąøŸąø„ą¹€ąø”ąø­ąø£ą¹Œąø”ąø±ąø‡ąøąø„ą¹ˆąø²ąø§ą¹„ąø”ą¹‰ąøˆąø²ąøąø—ąøµą¹ˆąø™ąøµą¹ˆ: %s", "Category type not provided." => "ąø¢ąø±ąø‡ą¹„ąø”ą¹ˆą¹„ąø”ą¹‰ąø£ąø°ąøšąøøąøŠąø™ąø“ąø”ąø‚ąø­ąø‡ąø«ąø”ąø§ąø”ąø«ąø”ąø¹ą¹ˆ", "No category to add?" => "ą¹„ąø”ą¹ˆąø”ąøµąø«ąø”ąø§ąø”ąø«ąø”ąø¹ą¹ˆąø—ąøµą¹ˆąø•ą¹‰ąø­ąø‡ąøąø²ąø£ą¹€ąøžąø“ą¹ˆąø”?", -"This category already exists: " => "ąø«ąø”ąø§ąø”ąø«ąø”ąø¹ą¹ˆąø™ąøµą¹‰ąø”ąøµąø­ąø¢ąø¹ą¹ˆą¹ąø„ą¹‰ąø§: ", "Object type not provided." => "ąøŠąø™ąø“ąø”ąø‚ąø­ąø‡ąø§ąø±ąø•ąø–ąøøąø¢ąø±ąø‡ą¹„ąø”ą¹ˆą¹„ąø”ą¹‰ąø–ąø¹ąøąø£ąø°ąøšąøø", "%s ID not provided." => "ąø¢ąø±ąø‡ą¹„ąø”ą¹ˆą¹„ąø”ą¹‰ąø£ąø°ąøšąøøąø£ąø«ąø±ąøŖ %s", "Error adding %s to favorites." => "ą¹€ąøąø“ąø”ąø‚ą¹‰ąø­ąøœąø“ąø”ąøžąø„ąø²ąø”ą¹ƒąø™ąøąø²ąø£ą¹€ąøžąø“ą¹ˆąø” %s เข้าไปยังรายการโปรด", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 624887674d1..69dc8ca53d9 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s kullanıcısı \"%s\" dizinini sizinle paylaştı. %s adresinden indirilebilir", "Category type not provided." => "Kategori türü desteklenmemektedir.", "No category to add?" => "Eklenecek kategori yok?", -"This category already exists: " => "Bu kategori zaten mevcut: ", "Object type not provided." => "Nesne türü desteklenmemektedir.", "%s ID not provided." => "%s ID belirtilmedi.", "Error adding %s to favorites." => "%s favorilere eklenirken hata oluştu", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index fa8150e7c9d..9a4d1eec0e1 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ŠšŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡ %s ŠæŠ¾Š“Ń–Š»ŠøŠ²ŃŃ Ń‚ŠµŠŗŠ¾ŃŽ \"%s\" Š· вами. Він Š“Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ Š“Š»Ń Š·Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń звіГси: %s", "Category type not provided." => "ŠŠµ вказано тип категорії.", "No category to add?" => "Š’Ń–Š“ŃŃƒŃ‚Š½Ń– категорії Š“Š»Ń Š“Š¾Š“Š°Š²Š°Š½Š½Ń?", -"This category already exists: " => "Š¦Ń ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€Ń–Ń вже Ń–ŃŠ½ŃƒŃ”: ", "Object type not provided." => "ŠŠµ вказано тип об'Ń”ŠŗŃ‚Ńƒ.", "%s ID not provided." => "%s ID не вказано.", "Error adding %s to favorites." => "Помилка при ГоГаванні %s Го обраного.", @@ -54,6 +53,7 @@ "The app name is not specified." => "ŠŠµ визначено ім'я програми.", "The required file {file} is not installed!" => "ŠŠµŠ¾Š±Ń…Ń–Š“Š½ŠøŠ¹ файл {file} не встановлено!", "Share" => "ŠŸŠ¾Š“Ń–Š»ŠøŃ‚ŠøŃŃ", +"Shared" => "ŠžŠæŃƒŠ±Š»Ń–ŠŗŠ¾Š²Š°Š½Š¾", "Error while sharing" => "Помилка піГ час ŠæŃƒŠ±Š»Ń–ŠŗŠ°Ń†Ń–Ń—", "Error while unsharing" => "Помилка піГ час віГміни ŠæŃƒŠ±Š»Ń–кації", "Error while changing permissions" => "Помилка при зміні повноважень", @@ -83,6 +83,8 @@ "Error setting expiration date" => "Помилка при встановленні терміна Гії", "Sending ..." => "ŠŠ°Š“ŃŠøŠ»Š°Š½Š½Ń...", "Email sent" => "Ел. ŠæŠ¾ŃˆŃ‚Š° наГіслана", +"The update was unsuccessful. Please report this issue to the
ownCloud community." => "ŠžŠ½Š¾Š²Š»ŠµŠ½Š½Ń виконалось Š½ŠµŃƒŃŠæŃ–ŃˆŠ½Š¾. Š‘ŃƒŠ“ŃŒ ласка, повіГомте про цю ŠæŃ€Š¾Š±Š»ŠµŠ¼Ńƒ в ŃŠæŃ–Š»ŃŒŠ½Š¾Ń‚Ń– ownCloud.", +"The update was successful. Redirecting you to ownCloud now." => "ŠžŠ½Š¾Š²Š»ŠµŠ½Š½Ń виконалось ŃƒŃŠæŃ–ŃˆŠ½Š¾. ŠŸŠµŃ€ŠµŠ½Š°ŠæŃ€Š°Š²Š»ŃŃ”Š¼Š¾ вас на ownCloud.", "ownCloud password reset" => "ŃŠŗŠøŠ“Š°Š½Š½Ń ŠæŠ°Ń€Š¾Š»Ń ownCloud", "Use the following link to reset your password: {link}" => "Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŠ¹Ń‚Šµ Š½Š°ŃŃ‚ŃƒŠæŠ½Šµ ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń Š“Š»Ń ŃŠŗŠøŠ“Š°Š½Š½Ń ŠæŠ°Ń€Š¾Š»Ń: {link}", "You will receive a link to reset your password via Email." => "Š’Šø отримаєте ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń Š“Š»Ń ŃŠŗŠøŠ“Š°Š½Š½Ń вашого ŠæŠ°Ń€Š¾Š»ŃŽ на Ел. ŠæŠ¾ŃˆŃ‚Ńƒ.", @@ -126,6 +128,7 @@ "Lost your password?" => "Š—Š°Š±ŃƒŠ»Šø ŠæŠ°Ń€Š¾Š»ŃŒ?", "remember" => "запам'ŃŃ‚Š°Ń‚Šø", "Log in" => "Š’Ń…Ń–Š“", +"Alternative Logins" => "ŠŠ»ŃŒŃ‚ŠµŃ€Š½Š°Ń‚ŠøŠ²Š½Ń– Логіни", "prev" => "попереГній", "next" => "Š½Š°ŃŃ‚ŃƒŠæŠ½ŠøŠ¹", "Updating ownCloud to version %s, this may take a while." => "ŠžŠ½Š¾Š²Š»ŠµŠ½Š½Ń ownCloud Го версії %s, це може Š·Š°Š¹Š½ŃŃ‚Šø Š“ŠµŃŠŗŠøŠ¹ час." diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 078cfa8dd8c..055baecadac 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "NgĘ°į»i dùng %s chia sįŗ» thʰ mỄc \"%s\" cho bįŗ”n .Bįŗ”n có thể tįŗ£i tįŗ”i đây : %s", "Category type not provided." => "Kiểu hįŗ”ng mỄc khĆ“ng được cung cįŗ„p.", "No category to add?" => "KhĆ“ng có danh mỄc được thĆŖm?", -"This category already exists: " => "Danh mỄc nĆ y đã được tįŗ”o :", "Object type not provided." => "Loįŗ”i đối tượng khĆ“ng được cung cįŗ„p.", "%s ID not provided." => "%s ID khĆ“ng được cung cįŗ„p.", "Error adding %s to favorites." => "Lį»—i thĆŖm %s vĆ o mỄc yĆŖu thĆ­ch.", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 9617d7260dc..354bc4bb896 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -1,6 +1,5 @@ "ę²”ęœ‰åˆ†ē±»ę·»åŠ äŗ†?", -"This category already exists: " => "čæ™äøŖåˆ†ē±»å·²ē»å­˜åœØäŗ†:", "No categories selected for deletion." => "ę²”ęœ‰é€‰č€…č¦åˆ é™¤ēš„åˆ†ē±».", "Sunday" => "星期天", "Monday" => "ę˜ŸęœŸäø€", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index f18fd6b357d..60dff9a822f 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ē”Øęˆ· %s äøŽę‚Øå…±äŗ«äŗ†ę–‡ä»¶å¤¹\"%s\"ć€‚ę–‡ä»¶å¤¹äø‹č½½åœ°å€ļ¼š%s", "Category type not provided." => "ęœŖęä¾›åˆ†ē±»ē±»åž‹ć€‚", "No category to add?" => "ę²”ęœ‰åÆę·»åŠ åˆ†ē±»ļ¼Ÿ", -"This category already exists: " => "ę­¤åˆ†ē±»å·²å­˜åœØ: ", "Object type not provided." => "ęœŖęä¾›åÆ¹č±”ē±»åž‹ć€‚", "%s ID not provided." => "%s IDęœŖęä¾›ć€‚", "Error adding %s to favorites." => "å‘ę”¶č—å¤¹äø­ę–°å¢ž%s时出错。", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 35183194d2a..54ea772da67 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -5,7 +5,6 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ē”Øęˆ¶ %s čˆ‡ę‚Øåˆ†äŗ«äŗ†č³‡ę–™å¤¾ \"%s\" ļ¼Œę‚ØåÆä»„å¾žé€™č£”äø‹č¼‰å®ƒļ¼š %s", "Category type not provided." => "ęœŖęä¾›åˆ†é”žé”žåž‹ć€‚", "No category to add?" => "ę²’ęœ‰åÆå¢žåŠ ēš„åˆ†é”žļ¼Ÿ", -"This category already exists: " => "ę­¤åˆ†é”žå·²ē¶“å­˜åœØļ¼š", "Object type not provided." => "äøę”Æę“ēš„ē‰©ä»¶é”žåž‹", "%s ID not provided." => "ęœŖęä¾› %s ID 怂", "Error adding %s to favorites." => "加兄 %s åˆ°ęœ€ę„›ę™‚ē™¼ē”ŸéŒÆčŖ¤ć€‚", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index a08c5adb097..f06908f65ac 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -156,59 +157,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Instellings" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -496,52 +497,52 @@ msgstr "" msgid "Create an admin account" msgstr "Skep `n admin-rekening" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Gevorderd" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Stel databasis op" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "sal gebruik word" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasis-gebruiker" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Databasis-wagwoord" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Databasis naam" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Maak opstelling klaar" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webdienste onder jou beheer" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Teken uit" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 0ac05a625a1..6fd4dfb314f 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/af_ZA/files_versions.po b/l10n/af_ZA/files_versions.po index 6cb41d2c080..14eaae14745 100644 --- a/l10n/af_ZA/files_versions.po +++ b/l10n/af_ZA/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,10 +17,45 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index dd30840b779..e8faea36b86 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 16:31+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 201273ebb96..20a687fdb6d 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "ألا توجد فئة Ł„Ł„Ų„Ų¶Ų§ŁŲ©ŲŸ" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "هذه الفئة Ł…ŁˆŲ¬ŁˆŲÆŲ© مسبقاً" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "ŲŖŲ“Ų±ŁŠŁ† Ų§Ł„Ų«Ų§Ł†ŁŠ" msgid "December" msgstr "ŁƒŲ§Ł†ŁˆŁ† Ų§Ł„Ų§ŁˆŁ„" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ŲŖŲ¹ŲÆŁŠŁ„Ų§ŲŖ" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "منذ Ų«ŁˆŲ§Ł†ŁŠ" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "منذ ŲÆŁ‚ŁŠŁ‚Ų©" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Ų§Ł„ŁŠŁˆŁ…" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -497,52 +498,52 @@ msgstr "" msgid "Create an admin account" msgstr "أضف Ł…Ų³ŲŖŲ®ŲÆŁ… رئيسي " -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "خيارات متقدمة" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "مجلد Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Ų£Ų³Ų³ قاعدة Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "Ų³ŁŠŲŖŁ… استخدمه" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Ł…Ų³ŲŖŲ®ŲÆŁ… قاعدة Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ŁƒŁ„Ł…Ų© Ų³Ų± Ł…Ų³ŲŖŲ®ŲÆŁ… قاعدة Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "؄سم قاعدة Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Ł…Ų³Ų§Ų­Ų© Ų¬ŲÆŁˆŁ„ قاعدة Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Ų®Ų§ŲÆŁ… قاعدة Ų§Ł„ŲØŁŠŲ§Ł†Ų§ŲŖ" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "انهاؔ Ų§Ł„ŲŖŲ¹ŲÆŁŠŁ„Ų§ŲŖ" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Ų®ŲÆŁ…Ų§ŲŖ Ų§Ł„ŁˆŲØ ŲŖŲ­ŲŖ تصرفك" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Ų§Ł„Ų®Ų±ŁˆŲ¬" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 6b11eb74a10..70c6ea95dde 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ 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" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index 8224c627626..b915753cedc 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ 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" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "السجل Ų§Ł„Ų²Ł…Ł†ŁŠ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Ų£ŲµŲÆŲ±Ų© الملفات" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index d723f7f7d7d..059e10baefd 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 7a92f335d3f..bd1810d0e37 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -159,59 +160,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "преГи секунГи" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "преГи 1 Š¼ŠøŠ½ŃƒŃ‚Š°" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "преГи 1 час" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Гнес" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "вчера" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ŠæŠ¾ŃŠ»ŠµŠ“Š½ŠøŃŃ‚ месец" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "послеГната гоГина" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "послеГните гоГини" @@ -499,52 +500,52 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "уеб услуги поГ Š’Š°Ńˆ контрол" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index f759ccb5bde..cf5275530e1 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index be466434b93..c79f0e63842 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Š˜ŃŃ‚Š¾Ń€ŠøŃ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 932ba233880..fd4876ac72a 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 96288711389..1e12f9a3e00 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "যোগ করার মত কোন ą¦•ą§ą¦Æą¦¾ą¦Ÿą§‡ą¦—ą¦°ą¦æ নেই ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ą¦ą¦‡ ą¦•ą§ą¦Æą¦¾ą¦Ÿą§‡ą¦—ą¦°ą¦æą¦Ÿą¦æ ą¦Ŗą§‚ą¦°ą§ą¦¬ ঄েকেই ą¦¬ą¦æą¦¦ą§ą¦Æą¦®ą¦¾ą¦Øą¦ƒ" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "ą¦Øą¦­ą§‡ą¦®ą§ą¦¬ą¦°" msgid "December" msgstr "ą¦”ą¦æą¦øą§‡ą¦®ą§ą¦¬ą¦°" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ą¦Øą¦æą§Ÿą¦¾ą¦®ą¦•ą¦øą¦®ą§‚ą¦¹" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "ą¦øą§‡ą¦•ą§‡ą¦Øą§ą¦” ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 মিনিট ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ą¦˜ą¦Øą§ą¦Ÿą¦¾ ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ą¦˜ą¦Øą§ą¦Ÿą¦¾ ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "ą¦†ą¦œ" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} দিন ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "গতমাস" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} মাস ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "মাস ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "গত বছর" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "বছর ą¦Ŗą§‚ą¦°ą§ą¦¬ą§‡" @@ -497,52 +498,52 @@ msgstr "" msgid "Create an admin account" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦øą¦• ą¦ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿ ą¦¤ą§ˆą¦°ą§€ করুন" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "সুচারু" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ঔাটা ą¦«ą§‹ą¦²ą§ą¦”ą¦¾ą¦° " -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ą¦”ą¦¾ą¦Ÿą¦¾ą¦¬ą§‡ą¦š কনফিগার করুন" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ą¦¬ą§ą¦Æą¦¬ą¦¹ą§ƒą¦¤ হবে" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ą¦”ą¦¾ą¦Ÿą¦¾ą¦¬ą§‡ą¦œ ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦°ą¦•ą¦¾ą¦°ą§€" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ą¦”ą¦¾ą¦Ÿą¦¾ą¦¬ą§‡ą¦œ ą¦•ą§‚ą¦Ÿą¦¶ą¦¬ą§ą¦¦" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ą¦”ą¦¾ą¦Ÿą¦¾ą¦¬ą§‡ą¦œą§‡ą¦° নাম" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ą¦”ą¦¾ą¦Ÿą¦¾ą¦¬ą§‡ą¦œ ą¦Ÿą§‡ą¦¬ą¦²ą¦øą§ą¦Ŗą§‡ą¦ø" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ą¦”ą¦¾ą¦Ÿą¦¾ą¦¬ą§‡ą¦œ ą¦¹ą§‹ą¦øą§ą¦Ÿ" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ą¦øą§‡ą¦Ÿą¦†ą¦Ŗ ą¦øą§ą¦øą¦®ą§ą¦Ŗą¦Øą§ą¦Ø কর" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ą¦“ą§Ÿą§‡ą¦¬ ą¦øą¦¾ą¦°ą§ą¦­ą¦æą¦øą§‡ą¦° ą¦Øą¦æą§Ÿą¦Øą§ą¦¤ą§ą¦°ą¦£ আপনার হাতের ą¦®ą§ą¦ ą§‹ą§Ÿ" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ą¦Ŗą§ą¦°ą¦øą§ą¦„ą¦¾ą¦Ø" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index e3052a641a0..ff75311f2f1 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 2af1e4efdd9..3c072f78160 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ইতিহাস" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ফাইল ą¦­ą¦¾ą¦°ą§ą¦øą¦Ø করা" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 2f79910e815..b39dcc30cbc 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -213,8 +213,8 @@ msgid "Use TLS" msgstr "TLS ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦° কর" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSL সংযোগের ą¦œą¦Øą§ą¦Æ ą¦ą¦Ÿą¦æ ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦° করবেন না, তাহলে ą¦¬ą§ą¦Æą¦°ą§ą¦„ ą¦¹ą¦¬ą§‡ą¦Øą¦‡ą„¤" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 8f10fe8239a..ce35d13efba 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "No voleu afegir cap categoria?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Aquesta categoria ja existeix:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Arranjament" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "avui" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ahir" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "el mes passat" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "l'any passat" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "anys enrere" @@ -498,52 +499,52 @@ msgstr "La carpeta de dades i els fitxers provablement són accessibles des d'in msgid "Create an admin account" msgstr "Crea un compte d'administrador" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "AvanƧat" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "s'usarĆ " -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Acaba la configuració" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "controleu els vostres serveis web" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Surt" @@ -575,7 +576,7 @@ msgstr "Inici de sessió" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Acreditacions alternatives" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 78422f41e60..71b002f55d2 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 15:20+0000\n" +"Last-Translator: rogerc \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" @@ -77,7 +77,7 @@ msgstr "Deixa de compartir" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Esborra permanentment" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 2563d256cc7..9fb8bcf4409 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,23 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "executa l'operació de restauració" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "esborra el fitxer permanentment" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 0db50601e4c..90fe65e06c4 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historial" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fitxers de Versions" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 4f2bbf05a06..3234dabdadf 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 15:20+0000\n" +"Last-Translator: rogerc \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" @@ -34,7 +34,7 @@ msgstr "Error d'autenticació" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "No s'ha pogut canviar el nom a mostrar" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -233,15 +233,15 @@ msgstr "Nom a mostrar" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "El vostre nom a mostrar ha canviat" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "No s'ha pogut canviar el vostre nom a mostrar" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "Canvia el nom a mostrar" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 09de26a1cc2..fbf1fdd00c4 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 08:50+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Usa TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "No ho useu en connexions SSL, fallarĆ ." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 91324803c16..e936afbb2fa 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "ŽÔdnĆ” kategorie k přidĆ”nĆ­?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Tato kategorie již existuje: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "NastavenĆ­" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "před pĆ”r vteřinami" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "dnes" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "včera" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "minulý mesĆ­c" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "před {months} měsĆ­ci" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "před měsĆ­ci" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "minulý rok" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "před lety" @@ -499,52 +500,52 @@ msgstr "VÔŔ adresÔř dat a vÅ”echny VaÅ”e soubory jsou pravděpodobně přís msgid "Create an admin account" msgstr "Vytvořit ĆŗÄet sprĆ”vce" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "PokročilĆ©" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Nastavit databĆ”zi" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Uživatel databĆ”ze" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Heslo databĆ”ze" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "NĆ”zev databĆ”ze" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tabulkový prostor databĆ”ze" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Hostitel databĆ”ze" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Dokončit nastavenĆ­" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webovĆ© služby pod VaŔí kontrolou" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "OdhlĆ”sit se" @@ -576,7 +577,7 @@ msgstr "PřihlĆ”sit" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "AlternativnĆ­ přihlÔŔenĆ­" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 09eccd46440..d0a29731322 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 12:41+0000\n" +"Last-Translator: TomÔŔ ChvĆ”tal \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" @@ -73,7 +73,7 @@ msgstr "ZruÅ”it sdĆ­lenĆ­" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Trvale odstranit" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 11b7352f658..a162bbe6ac1 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,23 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "provĆ©st obnovu" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "trvale odstranit soubor" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 3e62a18ee40..73211bbd9af 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historie" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "VerzovĆ”nĆ­ souborÅÆ" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 88caa49b136..edfcef8add0 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 12:41+0000\n" +"Last-Translator: TomÔŔ ChvĆ”tal \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" @@ -34,7 +34,7 @@ msgstr "Chyba ověřenĆ­" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "Nelze změnit zobrazovanĆ© jmĆ©no" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -233,15 +233,15 @@ msgstr "ZobrazovanĆ© jmĆ©no" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "VaÅ”e zobrazovanĆ© jmĆ©no bylo změněno" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "Nelze změnit vaÅ”e zobrazovanĆ© jmĆ©no" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "Změnit zobrazovanĆ© jmĆ©no" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 9ef32071e27..00ba0ee1922 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 07:40+0000\n" -"Last-Translator: TomÔŔ ChvĆ”tal \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \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" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Použít TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Nepoužívejte pro připojenĆ­ pomocĆ­ SSL, připojenĆ­ selže." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/da/core.po b/l10n/da/core.po index 1b44a2e8cdf..68651f221f7 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -59,8 +59,9 @@ msgid "No category to add?" msgstr "Ingen kategori at tilfĆøje?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Denne kategori eksisterer allerede: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -164,59 +165,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "i dag" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "i gĆ„r" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "sidste mĆ„ned" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} mĆ„neder siden" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mĆ„neder siden" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "sidste Ć„r" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "Ć„r siden" @@ -504,52 +505,52 @@ msgstr "Din data mappe og dine filer er muligvis tilgƦngelige fra internettet. msgid "Create an admin account" msgstr "Opret en administratorkonto" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanceret" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Navn pĆ„ database" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Afslut opsƦtning" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Webtjenester under din kontrol" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Log ud" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 6f1c6e6b463..107b90ea909 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 847d3bda8aa..6ae8e6b45e6 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historik" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionering af filer" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 63c885ecaa7..31ec98eaba9 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -218,8 +218,8 @@ msgid "Use TLS" msgstr "Brug TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Brug ikke til SSL forbindelser, da den vil fejle." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/de/core.po b/l10n/de/core.po index f8626030e17..3125994390b 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -66,8 +66,9 @@ msgid "No category to add?" msgstr "Keine Kategorie hinzuzufügen?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategorie existiert bereits:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -171,59 +172,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Heute" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "Gestern" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "Vor Jahren" @@ -511,52 +512,52 @@ msgstr "Dein Datenverzeichnis und deine Datein sind vielleicht vom Internet aus msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Abmelden" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 6950494d029..b9692802ff3 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,16 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Wiederherstellung ausführen" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index a3e251c142c..e969e096065 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -12,8 +12,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -22,10 +22,45 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historie" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dateiversionierung" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index ff8dbae3048..e247c006708 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -222,8 +222,8 @@ msgid "Use TLS" msgstr "Nutze TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Verwende dies nicht für SSL-Verbindungen, es wird fehlschlagen." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 5f59dc9aaf3..6aa78f8aea8 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,14 +18,15 @@ # , 2012. # Phi Lieb <>, 2012. # , 2013. +# Susi <>, 2013. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -67,8 +68,9 @@ msgid "No category to add?" msgstr "Keine Kategorie hinzuzufügen?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategorie existiert bereits:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -172,59 +174,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Heute" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "Gestern" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "Vor Jahren" @@ -512,52 +514,52 @@ msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Inte msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Abmelden" @@ -589,7 +591,7 @@ msgstr "Einloggen" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Alternative Logins" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 20ad6643182..a05b6ff6770 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -22,6 +22,7 @@ # Phi Lieb <>, 2012. # Phillip Schichtel , 2013. # , 2013. +# Susi <>, 2013. # , 2012. # Thomas Müller <>, 2012. # , 2012. @@ -29,9 +30,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 08:10+0000\n" +"Last-Translator: Susi <>\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" @@ -92,7 +93,7 @@ msgstr "Nicht mehr freigeben" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Entgültig lƶschen" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 8d49245d9f5..af3fe444bfe 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -8,13 +8,14 @@ # , 2012. # Marc-Andre Husyk , 2013. # Marcel Kühlhorn , 2013. +# Susi <>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 08:20+0000\n" +"Last-Translator: Susi <>\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" @@ -50,15 +51,15 @@ msgstr "Verschlüsselung" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Datei-Verschlüsselung ist aktiviert" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Die folgenden Datei-Typen werden nicht verschlüsselt:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Die folgenden Datei-Typen von der Verschlüsselung ausnehmen:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 46d04db9deb..755e0968dbd 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -5,12 +5,13 @@ # Translators: # I Robot , 2013. # Phillip Schichtel , 2013. +# Susi <>, 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -19,13 +20,23 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Führe die Wiederherstellung aus" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "Datei entgültig lƶschen" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index bef0ee6b762..98bc417e1a5 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -12,8 +12,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -22,10 +22,45 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historie" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dateiversionierung" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 980889f5928..e198138298e 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -20,6 +20,7 @@ # Phillip Schichtel , 2013. # , 2012. # , 2013. +# Susi <>, 2013. # , 2012. # , 2012. # , 2012. @@ -28,9 +29,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 08:10+0000\n" +"Last-Translator: Susi <>\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" @@ -49,7 +50,7 @@ msgstr "Fehler bei der Anmeldung" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "Das Ƅndern des Anzeigenamens ist nicht mƶglich" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -248,15 +249,15 @@ msgstr "Anzeigename" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "Dein Anzeigename wurde geƤndert" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "Das Ƅndern deines Anzeigenamens ist nicht mƶglich" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "Anzeigenamen Ƥndern" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 663cfdb1af7..0633de147c9 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 13:50+0000\n" -"Last-Translator: Susi <>\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \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" @@ -224,8 +224,8 @@ msgid "Use TLS" msgstr "Nutze TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Verwenden Sie dies nicht für SSL-Verbindungen, es wird fehlschlagen." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/el/core.po b/l10n/el/core.po index ed6c06853fd..7ddddd94e99 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "No category to add?" msgstr "Δεν έχετε κατηγορία να Ļ€ĻĪæĻƒĪøĪ­ĻƒĪµĻ„Īµ;" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Αυτή Ī· κατηγορία υπάρχει ήΓη:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -163,59 +164,59 @@ msgstr "ĪĪæĪ­Ī¼Ī²ĻĪ¹ĪæĻ‚" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ī”Ļ…ĪøĪ¼ĪÆĻƒĪµĪ¹Ļ‚" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "Ī“ĪµĻ…Ļ„ĪµĻĻŒĪ»ĪµĻ€Ļ„Ī± πριν" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 Ī»ĪµĻ€Ļ„ĻŒ πριν" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ĻŽĻĪ± πριν" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ĻŽĻĪµĻ‚ πριν" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "σήμερα" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "χτες" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "τελευταίο Ļ‡ĻĻŒĪ½Īæ" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "Ļ‡ĻĻŒĪ½Ī¹Ī± πριν" @@ -503,52 +504,52 @@ msgstr "Ο κατάλογος data και τα αρχεία ĻƒĪ±Ļ‚ Ļ€Ī¹ĪøĪ±Ī½ĻŒ msgid "Create an admin account" msgstr "Ī”Ī·Ī¼Ī¹ĪæĻ…ĻĪ³Ī®ĻƒĻ„Īµ έναν λογαριασμό Ī“Ī¹Ī±Ļ‡ĪµĪ¹ĻĪ¹ĻƒĻ„Ī®" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Για προχωρημένους" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Φάκελος ΓεΓομένων" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Ī”ĻĪøĪ¼Ī¹ĻƒĪ· της Ī²Ī¬ĻƒĪ·Ļ‚ ΓεΓομένων" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "θα Ļ‡ĻĪ·ĻƒĪ¹Ī¼ĪæĻ€ĪæĪ¹Ī·ĪøĪæĻĪ½" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Ī§ĻĪ®ĻƒĻ„Ī·Ļ‚ της Ī²Ī¬ĻƒĪ·Ļ‚ ΓεΓομένων" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Ī£Ļ…Ī½ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŒ Ī²Ī¬ĻƒĪ·Ļ‚ ΓεΓομένων" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Όνομα Ī²Ī¬ĻƒĪ·Ļ‚ ΓεΓομένων" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Κενά Πινάκων Ī’Ī¬ĻƒĪ·Ļ‚ ΔεΓομένων" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Ī”Ī¹Ī±ĪŗĪæĪ¼Ī¹ĻƒĻ„Ī®Ļ‚ Ī²Ī¬ĻƒĪ·Ļ‚ ΓεΓομένων" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ĪŸĪ»ĪæĪŗĪ»Ī®ĻĻ‰ĻƒĪ· ĪµĪ³ĪŗĪ±Ļ„Ī¬ĻƒĻ„Ī±ĻƒĪ·Ļ‚" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Ī„Ļ€Ī·ĻĪµĻƒĪÆĪµĻ‚ web Ļ…Ļ€ĻŒ τον Ī­Ī»ĪµĪ³Ļ‡ĻŒ ĻƒĪ±Ļ‚" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Ī‘Ļ€ĪæĻƒĻĪ½Ī“ĪµĻƒĪ·" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 21fb46b9862..27cd5e21b4c 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index 3812c4bda0d..7f82eaf81c7 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -10,8 +10,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -20,10 +20,45 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Ī™ĻƒĻ„ĪæĻĪ¹ĪŗĻŒ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Ī•ĪŗĪ“ĻŒĻƒĪµĪ¹Ļ‚ Αρχείων" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 0bc933973ea..972b0601dfa 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -218,8 +218,8 @@ msgid "Use TLS" msgstr "Χρήση TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Μην Ļ‡ĻĪ·ĻƒĪ¹Ī¼ĪæĻ€ĪæĪ¹ĪµĪÆĻ„Īµ για ĻƒĻ…Ī½Ī“Ī­ĻƒĪµĪ¹Ļ‚ SSL, θα Ī±Ļ€ĪæĻ„ĻĻ‡ĪµĪ¹." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 49f2fac8a7f..e872fc1f558 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "Ĉu neniu kategorio estas aldonota?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ĉi tiu kategorio jam ekzistas: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Agordo" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekundoj antaÅ­e" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "antaÅ­ 1 minuto" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "antaÅ­ {minutes} minutoj" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "antaÅ­ 1 horo" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "antaÅ­ {hours} horoj" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "hodiaÅ­" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "hieraÅ­" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "antaÅ­ {days} tagoj" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "lastamonate" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "antaÅ­ {months} monatoj" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "monatoj antaÅ­e" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "lastajare" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "jaroj antaÅ­e" @@ -498,52 +499,52 @@ msgstr "" msgid "Create an admin account" msgstr "Krei administran konton" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Progresinta" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datuma dosierujo" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Agordi la datumbazon" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "estos uzata" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Fini la instalon" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "TTT-servoj sub via kontrolo" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Elsaluti" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 6a61ee22d0e..407ed42d6da 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index 53a59b49120..6e7f83b9ade 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historio" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dosiereldonigo" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 9bdab74d0f3..ac325f3f01d 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Uzi TLS-on" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ne uzu ĝin por SSL-konektoj, ĝi malsukcesos." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/es/core.po b/l10n/es/core.po index e3de803c85c..d0622b11227 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -62,8 +62,9 @@ msgid "No category to add?" msgstr "ĀæNinguna categorĆ­a para aƱadir?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Esta categorĆ­a ya existe: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -167,59 +168,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ajustes" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "hoy" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ayer" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "hace {days} dĆ­as" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "mes pasado" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "hace meses" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "aƱo pasado" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "hace aƱos" @@ -507,52 +508,52 @@ msgstr "Su directorio de datos y sus archivos estĆ”n probablemente accesibles de msgid "Create an admin account" msgstr "Crea una cuenta de administrador" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "se utilizarĆ”n" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ContraseƱa de la base de datos" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servicios web bajo tu control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Salir" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index e0804a6ea50..6e22e62caf5 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,16 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Restaurar" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 41ca2e67dad..924f876de96 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -11,8 +11,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -21,10 +21,45 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historial" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionado de archivos" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 24933229447..6cc532f1a72 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-05 23:10+0000\n" -"Last-Translator: msvladimir \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \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" @@ -221,8 +221,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "No usarlo para SSL, habrĆ” error." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 2fab6ec64a4..22227d965cb 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "ĀæNinguna categorĆ­a para aƱadir?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Esta categorĆ­a ya existe: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ajustes" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "segundos atrĆ”s" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} horas atrĆ”s" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "hoy" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ayer" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "hace {days} dĆ­as" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "el mes pasado" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} meses atrĆ”s" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "meses atrĆ”s" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "el aƱo pasado" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "aƱos atrĆ”s" @@ -498,52 +499,52 @@ msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde msgid "Create an admin account" msgstr "Crear una cuenta de administrador" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "se utilizarĆ”n" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ContraseƱa de la base de datos" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servicios web sobre los que tenĆ©s control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Cerrar la sesión" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 2048ce0e543..c50739188cc 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index 6ab1eed54d3..e19644ccc5b 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionado de archivos" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index a6d3d071a68..b0aad05a15d 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 17:20+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \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" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "No usarlo para SSL, darĆ” error." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 6f5386d3a73..5ce76de1ce0 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "Pole kategooriat, mida lisada?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "See kategooria on juba olemas: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Seaded" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "tƤna" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "eile" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} pƤeva tagasi" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "aastat tagasi" @@ -496,52 +497,52 @@ msgstr "" msgid "Create an admin account" msgstr "Loo admini konto" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Lisavalikud" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "LƵpeta seadistamine" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "veebiteenused sinu kontrolli all" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Logi vƤlja" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 23d134dba98..e4e1d3e4372 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index a0309a22fc6..b35f2b2c7e7 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Ajalugu" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Failide versioonihaldus" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index fe16678ea5e..83400a76258 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "Kasutaja TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ƅra kasuta seda SSL ühenduse jaoks, see ei toimi." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 0a89c92c980..808edf25d74 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "Ez dago gehitzeko kategoriarik?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategoria hau dagoeneko existitzen da:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "segundu" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "gaur" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "atzo" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "hilabete" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "joan den urtean" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "urte" @@ -499,52 +500,52 @@ msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri msgid "Create an admin account" msgstr "Sortu kudeatzaile kontu bat" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Aurreratua" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Bukatu konfigurazioa" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Saioa bukatu" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 0eecd4d06ce..70120e4257a 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 64844cd7adf..fdece04b8c3 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fitxategien Bertsioak" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index f55cb063518..5e0f44fe88b 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Erabili TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ez erabili SSL konexioetan, huts egingo du." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index a03e7a44d67..be4d4fdbad4 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "آیا ŚÆŲ±ŁˆŁ‡ دیگری برای Ų§ŁŲ²ŁˆŲÆŁ† Ł†ŲÆŲ§Ų±ŪŒŲÆ" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ų§ŪŒŁ† ŚÆŲ±ŁˆŁ‡ Ų§Ų² قبل اضافه ؓده" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "Ł†ŁˆŲ§Ł…ŲØŲ±" msgid "December" msgstr "ŲÆŲ³Ų§Ł…ŲØŲ±" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ŲŖŁ†ŲøŪŒŁ…Ų§ŲŖ" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "Ų«Ų§Ł†ŪŒŁ‡ā€ŒŁ‡Ų§ پیؓ" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 ŲÆŁ‚ŪŒŁ‚Ł‡ پیؓ" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{ŲÆŁ‚ŪŒŁ‚Ł‡ ها} ŲÆŁ‚ŪŒŁ‚Ł‡ Ł‡Ų§ŪŒ پیؓ" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 Ų³Ų§Ų¹ŲŖ پیؓ" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{Ų³Ų§Ų¹ŲŖ ها} Ų³Ų§Ų¹ŲŖ ها پیؓ" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Ų§Ł…Ų±ŁˆŲ²" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "دیروز" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{Ų±ŁˆŲ²Ł‡Ų§} Ų±ŁˆŲ²Ł‡Ų§ŪŒ پیؓ" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ماه قبل" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیؓ" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "Ł…Ų§Ł‡ā€ŒŁ‡Ų§ŪŒ قبل" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "Ų³Ų§Ł„ قبل" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "Ų³Ų§Ł„ā€ŒŁ‡Ų§ŪŒ قبل" @@ -497,52 +498,52 @@ msgstr "" msgid "Create an admin account" msgstr "لطفا یک ؓناسه برای Ł…ŲÆŪŒŲ± بسازید" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "حرفه ای" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Ł¾ŁˆŲ“Ł‡ Ų§Ų·Ł„Ų§Ų¹Ų§ŲŖŪŒ" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Ł¾Ų§ŪŒŚÆŲ§Ł‡ داده برنامه ریزی ؓدند" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "استفاده Ų®ŁˆŲ§Ł‡ŲÆ Ų“ŲÆ" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ؓناسه Ł¾Ų§ŪŒŚÆŲ§Ł‡ داده" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "پسورد Ł¾Ų§ŪŒŚÆŲ§Ł‡ داده" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "نام Ł¾Ų§ŪŒŚÆŲ§Ł‡ داده" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Ų¬ŲÆŁˆŁ„ Ł¾Ų§ŪŒŚÆŲ§Ł‡ داده" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "هاست Ł¾Ų§ŪŒŚÆŲ§Ł‡ داده" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Ų§ŲŖŁ…Ų§Ł… نصب" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "سرویس وب ŲŖŲ­ŲŖ کنترل Ų“Ł…Ų§" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "خروج" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 3610dde6bec..a9bffbf81b1 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 276a3e16135..a2a96bc6ec1 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 11:40+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,10 +19,45 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ŲŖŲ§Ų±ŪŒŲ®Ś†Ł‡" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 2ec49d42b23..4297459853f 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 05:40+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -215,7 +215,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 734dc893ad9..08b79b16f65 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -57,8 +57,9 @@ msgid "No category to add?" msgstr "Ei lisƤttƤvƤƤ luokkaa?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "TƤmƤ luokka on jo olemassa: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -162,59 +163,59 @@ msgstr "Marraskuu" msgid "December" msgstr "Joulukuu" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Asetukset" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "tƤnƤƤn" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "eilen" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} pƤivƤƤ sitten" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "viime kuussa" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "viime vuonna" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "vuotta sitten" @@ -502,52 +503,52 @@ msgstr "Data-kansio ja tiedostot ovat ehkƤ saavutettavissa InternetistƤ. .htac msgid "Create an admin account" msgstr "Luo yllƤpitƤjƤn tunnus" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "LisƤasetukset" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datakansio" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Muokkaa tietokantaa" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "kƤytetƤƤn" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Tietokannan kƤyttƤjƤ" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Viimeistele asennus" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Kirjaudu ulos" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 862e93f1b77..27afca0a85b 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,16 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "suorita palautustoiminto" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index 4a04a540a90..f8ce72e1e07 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Tiedostojen versiointi" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index e0a1ecc049e..14247957dd3 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "KƤytƤ TLS:ƤƤ" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "ƄlƤ kƤytƤ SSL-yhteyttƤ varten, se epƤonnistuu. " +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 31f4f80f353..5a5e237f4a8 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -63,8 +63,9 @@ msgid "No category to add?" msgstr "Pas de catĆ©gorie Ć  ajouter ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Cette catĆ©gorie existe dĆ©jĆ  : " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -168,59 +169,59 @@ msgstr "novembre" msgid "December" msgstr "dĆ©cembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ParamĆØtres" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "aujourd'hui" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "hier" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "le mois dernier" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "l'annĆ©e derniĆØre" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "il y a plusieurs annĆ©es" @@ -508,52 +509,52 @@ msgstr "Votre dossier data et vos fichiers sont probablement accessibles depuis msgid "Create an admin account" msgstr "CrĆ©er un compte administrateur" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "AvancĆ©" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "RĆ©pertoire des donnĆ©es" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurer la base de donnĆ©es" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "sera utilisĆ©" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Utilisateur pour la base de donnĆ©es" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Mot de passe de la base de donnĆ©es" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nom de la base de donnĆ©es" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tablespaces de la base de donnĆ©es" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Serveur de la base de donnĆ©es" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Terminer l'installation" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "services web sous votre contrĆ“le" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Se dĆ©connecter" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index a0b95c58b5c..ba001ae7f61 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,16 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "effectuer l'opĆ©ration de restauration" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index 1fb4fdb1de2..fa2b60d6103 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historique" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionnage des fichiers" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index acc3b57fd72..9e9ac647ef9 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 20:10+0000\n" -"Last-Translator: jiminybillybob \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \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" @@ -220,8 +220,8 @@ msgid "Use TLS" msgstr "Utiliser TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ne pas utiliser pour les connexions SSL, car cela Ć©chouera." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index c2a5a1d2f09..7e634b2c657 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "Sen categorĆ­a que engadir?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Esta categorĆ­a xa existe: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Configuracións" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "segundos atrĆ”s" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "hai 1 hora" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "hoxe" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "onte" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "hai {days} dĆ­as" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "Ćŗltimo mes" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "meses atrĆ”s" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "Ćŗltimo ano" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "anos atrĆ”s" @@ -498,52 +499,52 @@ msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesĆ­b msgid "Create an admin account" msgstr "Crear unha contra de administrador" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vai ser utilizado" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "TĆ”boa de espazos da base de datos" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Rematar a configuración" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servizos web baixo o seu control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Desconectar" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 8f00ed2b31d..9e9dd72adb0 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index c0ac98462b7..7bfd504e633 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -10,8 +10,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -20,10 +20,45 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historial" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Sistema de versión de ficheiros" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index fe74411b941..72ec0caf49a 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Non empregalo para conexións SSL: fallarĆ”." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/he/core.po b/l10n/he/core.po index 2c90c77e73c..b1cb9b61472 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "אין ×§×˜×’×•×Ø×™×” להוהפה?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "×§×˜×’×•×Ø×™×” זאת כבר ×§×™×™×ž×Ŗ: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "× ×•×‘×ž×‘×Ø" msgid "December" msgstr "×“×¦×ž×‘×Ø" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "הגדרות" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "שניות" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "היום" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "××Ŗ×ž×•×œ" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "חודשים" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "שנים" @@ -500,52 +501,52 @@ msgstr "×™×Ŗ×›×Ÿ שתיקיית ×”× ×Ŗ×•× ×™× והקבצים שלך נגישי msgid "Create an admin account" msgstr "יצירת חשבון מנהל" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "×ž×Ŗ×§×“×" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "×Ŗ×™×§×™×™×Ŗ × ×Ŗ×•× ×™×" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "הגדרת מהד ×”× ×Ŗ×•× ×™×" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ינוצלו" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "שם ×ž×©×Ŗ×ž×© במהד ×”× ×Ŗ×•× ×™×" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "×”×”×ž×Ŗ מהד ×”× ×Ŗ×•× ×™×" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "שם מהד ×”× ×Ŗ×•× ×™×" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "×ž×Ø×—×‘ הכתובות של מהד ×”× ×Ŗ×•× ×™×" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "שרת בהיה × ×Ŗ×•× ×™×" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "היום ×”×Ŗ×§× ×”" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "שירותי רשת ×‘×©×œ×™×˜×Ŗ×š" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "התנתקות" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index cd565092350..4291039ce16 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index 15bb3e971b3..4d1caaf1149 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "×”×™×”×˜×•×Ø×™×”" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "×©×ž×™×Ø×Ŗ הבדלי גרהאות של קבצים" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 54ede62468b..cd67250d867 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/hi/core.po b/l10n/hi/core.po index d41343f3c04..753a4d126d2 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -157,59 +158,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -497,52 +498,52 @@ msgstr "" msgid "Create an admin account" msgstr "ą¤µą„ą¤Æą¤µą¤øą„ą¤„ą¤¾ą¤Ŗą¤• खाता ą¤¬ą¤Øą¤¾ą¤ą¤" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ą¤‰ą¤Øą„ą¤Øą¤¤" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ą¤”ą„‡ą¤Ÿą¤¾ą¤¬ą„‡ą¤ø ą¤•ą„‰ą¤Øą„ą¤«ą¤¼ą¤æą¤—ą¤° ą¤•ą¤°ą„‡ą¤‚ " -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ą¤”ą„‡ą¤Ÿą¤¾ą¤¬ą„‡ą¤ø ą¤‰ą¤Ŗą¤Æą„‹ą¤—ą¤•ą¤°ą„ą¤¤ą¤¾" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ą¤”ą„‡ą¤Ÿą¤¾ą¤¬ą„‡ą¤ø ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤”" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ą¤øą„‡ą¤Ÿą¤…ą¤Ŗ ą¤øą¤®ą¤¾ą¤Ŗą„ą¤¤ ą¤•ą¤°ą„‡" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index fad204d0739..a0b6e4cede0 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index 293e4b558a7..65790b4d6ba 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 7eb23a9a108..b37e24b8292 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/hr/core.po b/l10n/hr/core.po index c61e19fa2b0..30b6a0efcae 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "Nemate kategorija koje možete dodati?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ova kategorija već postoji: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Postavke" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "danas" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "jučer" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "proÅ”li mjesec" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mjeseci" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "proÅ”lu godinu" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "godina" @@ -499,52 +500,52 @@ msgstr "" msgid "Create an admin account" msgstr "Stvori administratorski račun" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Dodatno" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ZavrÅ”i postavljanje" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web usluge pod vaÅ”om kontrolom" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Odjava" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 6a7bfdabab6..a5e90a28bb2 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 0425c2dc568..a1fb9209e3b 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index f1c4515d4d2..eb75fed54a8 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 792943a1d72..7ddb4feefa1 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "Nincs hozzĆ”adandó kategória?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ez a kategória mĆ”r lĆ©tezik: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "BeĆ”llĆ­tĆ”sok" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "pĆ”r mĆ”sodperce" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 órĆ”ja" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} órĆ”ja" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "ma" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "tegnap" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "mĆŗlt hónapban" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "tƶbb hónapja" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "tavaly" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "tƶbb Ć©ve" @@ -500,52 +501,52 @@ msgstr "Az adatkƶnytĆ”ra Ć©s az itt levő fĆ”jlok valószĆ­nűleg elĆ©rhetők a msgid "Create an admin account" msgstr "Rendszergazdai belĆ©pĆ©s lĆ©trehozĆ”sa" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Haladó" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "AdatkƶnyvtĆ”r" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "AdatbĆ”zis konfigurĆ”lĆ”sa" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "adatbĆ”zist fogunk hasznĆ”lni" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "AdatbĆ”zis felhasznĆ”lónĆ©v" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "AdatbĆ”zis jelszó" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Az adatbĆ”zis neve" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Az adatbĆ”zis tĆ”blĆ”zattĆ©r (tablespace)" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "AdatbĆ”zis szerver" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "A beĆ”llĆ­tĆ”sok befejezĆ©se" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webszolgĆ”ltatĆ”sok sajĆ”t kĆ©zben" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "KilĆ©pĆ©s" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index ed96fa7cee5..0f7239c2cdc 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index d5db4ac6033..f2b3829c7aa 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "KorĆ”bbi vĆ”ltozatok" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Az Ć”llomĆ”nyok verzionĆ”lĆ”sa" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 83d3b7c227e..1b2cd9d4f82 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "HasznĆ”ljunk TLS-t" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ne hasznĆ”ljuk SSL-kapcsolat esetĆ©n, mert nem fog műkƶdni!" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index dff261f33d5..eb65ae9f02e 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Iste categoria jam existe:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Configurationes" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -496,52 +497,52 @@ msgstr "" msgid "Create an admin account" msgstr "Crear un conto de administration" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avantiate" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Clauder le session" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 9256a728ff8..a6fdefcf405 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 7b2dbb7efe9..f3b805ad932 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 82ab2dd2acb..4c35ec08299 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/id/core.po b/l10n/id/core.po index 018cb02da78..43fbed71681 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "Tidak ada kategori yang akan ditambahkan?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategori ini sudah ada:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "Nopember" msgid "December" msgstr "Desember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Setelan" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 menit lalu" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "hari ini" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "kemarin" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "beberapa tahun lalu" @@ -499,52 +500,52 @@ msgstr "" msgid "Create an admin account" msgstr "Buat sebuah akun admin" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Tingkat Lanjut" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurasi database" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Pengguna database" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Password database" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nama database" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "tablespace basis data" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Host database" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web service dibawah kontrol anda" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Keluar" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 074b7145fc5..70eaf1fc216 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 7b9d5d18745..490e0fc8163 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "riwayat" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "pembuatan versi file" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index ed63af8cccb..c105afaa81b 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "gunakan TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "jangan gunakan untuk koneksi SSL, itu akan gagal." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/is/core.po b/l10n/is/core.po index 5ab11b122de..1b2f9827d2c 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "Enginn flokkur til aư bƦta viư?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ƞessi flokkur er þegar til:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Stillingar" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sek sƭưan" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 min sƭưan" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} min sƭưan" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Ć­ dag" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "Ć­ gƦr" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dagar sƭưan" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "sƭưasta mĆ”nuưi" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "fyrir {months} mĆ”nuưum" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mĆ”nuưir sƭưan" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "sƭưasta Ć”ri" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "Ć”rum sƭưan" @@ -497,52 +498,52 @@ msgstr "Gagnamappan þín er aư ƶllum lĆ­kindum aưgengileg frĆ” internetinu. msgid "Create an admin account" msgstr "ÚtbĆŗa vefstjóra aưgang" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ƍtarlegt" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Gagnamappa" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Stilla gagnagrunn" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "verưur notaư" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Gagnagrunns lykilorư" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "TƶflusvƦưi gagnagrunns" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Virkja uppsetningu" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ÚtskrĆ”" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index a738a0a24a4..808dfe5a4c3 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index 1a0acfa5b88..5ee90ab20db 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Saga" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ÚtgĆ”fur af skrĆ”m" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 7cfe3d0a425..7bc782a7b3c 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/it/core.po b/l10n/it/core.po index c6392780233..81a401adfbb 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -56,8 +56,9 @@ msgid "No category to add?" msgstr "Nessuna categoria da aggiungere?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Questa categoria esiste giĆ : " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -161,59 +162,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "oggi" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ieri" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "mese scorso" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mesi fa" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "anno scorso" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "anni fa" @@ -501,52 +502,52 @@ msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Int msgid "Create an admin account" msgstr "Crea un account amministratore" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avanzate" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Cartella dati" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configura il database" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "sarĆ  utilizzato" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Termina la configurazione" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servizi web nelle tue mani" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Esci" @@ -578,7 +579,7 @@ msgstr "Accedi" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Accessi alternativi" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/it/files.po b/l10n/it/files.po index e419f624cca..bad60c43657 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-06 23:21+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,7 +74,7 @@ msgstr "Rimuovi condivisione" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Elimina definitivamente" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 8e3a6451a8e..da11db7db7a 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,23 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "esegui operazione di ripristino" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "elimina il file definitivamente" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 5bb90cec909..94b7925d68f 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Cronologia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Controllo di versione dei file" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 6b729305e42..769e953dd01 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-06 23:21+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,7 @@ msgstr "Errore di autenticazione" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "Impossibile cambiare il nome visualizzato" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -234,15 +234,15 @@ msgstr "Nome visualizzato" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "Il tuo nome visualizzato ĆØ stato cambiato" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "Impossibile cambiare il tuo nome visualizzato" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "Cambia il nome visualizzato" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 4f07adf6ee3..b9b33863c2d 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-02 23:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Usa TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Non utilizzare per le connessioni SSL, fallirĆ ." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 0668a44ddc3..ac2db016735 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "čæ½åŠ ć™ć‚‹ć‚«ćƒ†ć‚“ćƒŖćÆć‚ć‚Šć¾ć›ć‚“ć‹ļ¼Ÿ" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ć“ć®ć‚«ćƒ†ć‚“ćƒŖćÆć™ć§ć«å­˜åœØć—ć¾ć™: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "設定" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "ē§’å‰" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ę™‚é–“å‰" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ę™‚é–“å‰" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "今ꗄ" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ę˜Øę—„" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} ę—„å‰" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "äø€ęœˆå‰" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} ęœˆå‰" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "ęœˆå‰" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "äø€å¹“å‰" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "幓前" @@ -498,52 +499,52 @@ msgstr "ćƒ‡ćƒ¼ć‚æćƒ‡ć‚£ćƒ¬ć‚ÆćƒˆćƒŖćØćƒ•ć‚”ć‚¤ćƒ«ćŒęć‚‰ćć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒ msgid "Create an admin account" msgstr "ē®”ē†č€…ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä½œęˆć—ć¦ćć ć•ć„" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "詳瓰設定" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ćƒ‡ćƒ¼ć‚æćƒ•ć‚©ćƒ«ćƒ€" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹ć‚’čØ­å®šć—ć¦ćć ć•ć„" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ćŒä½æē”Øć•ć‚Œć¾ć™" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹ć®ćƒ¦ćƒ¼ć‚¶å" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹ć®ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹å" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹ć®č”Øé ˜åŸŸ" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹ć®ćƒ›ć‚¹ćƒˆå" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ć‚»ćƒƒćƒˆć‚¢ćƒƒćƒ—ć‚’å®Œäŗ†ć—ć¾ć™" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ē®”ē†äø‹ć«ć‚ć‚‹ć‚¦ć‚§ćƒ–ć‚µćƒ¼ćƒ“ć‚¹" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ćƒ­ć‚°ć‚¢ć‚¦ćƒˆ" @@ -575,7 +576,7 @@ msgstr "ćƒ­ć‚°ć‚¤ćƒ³" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "ä»£ę›æćƒ­ć‚°ć‚¤ćƒ³" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index cd42db946c4..e4e75ce4943 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 02:20+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,7 +75,7 @@ msgstr "å…±ęœ‰ć—ćŖć„" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "å®Œå…Øć«å‰Šé™¤ć™ć‚‹" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 95a52309047..1f13d0117c7 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 02:20+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,15 +47,15 @@ msgstr "ęš—å·åŒ–" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "ćƒ•ć‚”ć‚¤ćƒ«ć®ęš—å·åŒ–ćÆęœ‰åŠ¹ć§ć™ć€‚" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "ę¬”ć®ćƒ•ć‚”ć‚¤ćƒ«ć‚æć‚¤ćƒ—ćÆęš—å·åŒ–ć•ć‚Œć¾ć›ć‚“:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "ę¬”ć®ćƒ•ć‚”ć‚¤ćƒ«ć‚æć‚¤ćƒ—ć‚’ęš—å·åŒ–ć‹ć‚‰é™¤å¤–:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index f5fcfbe9a02..3abda02fac8 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,23 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "å¾©å…ƒę“ä½œć‚’å®Ÿč”Œć™ć‚‹" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "ćƒ•ć‚”ć‚¤ćƒ«ć‚’å®Œå…Øć«å‰Šé™¤ć™ć‚‹" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 5ebe43b4854..dbe6ef869cf 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "屄歓" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ćƒ•ć‚”ć‚¤ćƒ«ć®ćƒćƒ¼ć‚øćƒ§ćƒ³ē®”ē†" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 1774eebf3f3..d8f0f19d63d 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 02:20+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +33,7 @@ msgstr "čŖčØ¼ć‚Øćƒ©ćƒ¼" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "č”Øē¤ŗåć‚’å¤‰ę›“ć§ćć¾ć›ć‚“" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -232,15 +232,15 @@ msgstr "č”Øē¤ŗå" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "ć‚ćŖćŸć®č”Øē¤ŗåć‚’å¤‰ę›“ć—ć¾ć—ćŸ" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "ć‚ćŖćŸć®č”Øē¤ŗåć‚’å¤‰ę›“ć§ćć¾ć›ć‚“" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "č”Øē¤ŗåć‚’å¤‰ę›“" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index f899f457f15..7f94b3e0f41 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 04:40+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -217,8 +217,8 @@ msgid "Use TLS" msgstr "TLSć‚’åˆ©ē”Ø" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSLęŽ„ē¶šć«åˆ©ē”Øć—ćŖć„ć§ćć ć•ć„ć€å¤±ę•—ć—ć¾ć™ć€‚" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 74de8601d7d..4ba8e43f950 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "არ არიე įƒ™įƒįƒ¢įƒ”įƒ’įƒįƒ įƒ˜įƒ įƒ“įƒįƒ”įƒįƒ›įƒįƒ¢įƒ”įƒ‘įƒšįƒįƒ“?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "įƒ™įƒįƒ¢įƒ”įƒ’įƒįƒ įƒ˜įƒ įƒ£įƒ™įƒ•įƒ” įƒįƒ įƒ”įƒ”įƒ‘įƒįƒ‘įƒ”" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "įƒœįƒįƒ”įƒ›įƒ‘įƒ”įƒ įƒ˜" msgid "December" msgstr "įƒ“įƒ”įƒ™įƒ”įƒ›įƒ‘įƒ”įƒ įƒ˜" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "įƒžįƒįƒ įƒįƒ›įƒ”įƒ¢įƒ įƒ”įƒ‘įƒ˜" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "įƒ¬įƒįƒ›įƒ˜įƒ” წინ" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 įƒ¬įƒ£įƒ—įƒ˜įƒ” წინ" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} įƒ¬įƒ£įƒ—įƒ˜įƒ” წინ" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "įƒ“įƒ¦įƒ”įƒ”" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "įƒ’įƒ£įƒØįƒ˜įƒœ" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} įƒ“įƒ¦įƒ˜įƒ” წინ" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "įƒ’įƒįƒ”įƒ£įƒš įƒ—įƒ•įƒ”įƒØįƒ˜" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "įƒ—įƒ•įƒ˜įƒ” წინ" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "įƒ‘įƒįƒšįƒ įƒ¬įƒ”įƒšįƒ”" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "წლიე წინ" @@ -496,52 +497,52 @@ msgstr "" msgid "Create an admin account" msgstr "įƒØįƒ”įƒ„įƒ›įƒ”įƒœįƒ˜ įƒįƒ“įƒ›įƒ˜įƒœ įƒ”įƒ„įƒįƒ£įƒœįƒ¢įƒ˜" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Advanced" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "įƒ›įƒįƒœįƒįƒŖįƒ”įƒ›įƒ—įƒ įƒ”įƒįƒ„įƒįƒ¦įƒįƒšįƒ“įƒ”" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "įƒ‘įƒįƒ–įƒ˜įƒ” įƒ™įƒįƒœįƒ¤įƒ˜įƒ’įƒ£įƒ įƒ˜įƒ įƒ”įƒ‘įƒ" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "įƒ’įƒįƒ›įƒįƒ§įƒ”įƒœįƒ”įƒ‘įƒ£įƒšįƒ˜ įƒ˜įƒ„įƒœįƒ”įƒ‘įƒ" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "įƒ‘įƒįƒ–įƒ˜įƒ” įƒ›įƒįƒ›įƒ®įƒ›įƒįƒ įƒ”įƒ‘įƒ”įƒšįƒ˜" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "įƒ‘įƒįƒ–įƒ˜įƒ” įƒžįƒįƒ įƒįƒšįƒ˜" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "įƒ‘įƒįƒ–įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ˜" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "įƒ‘įƒįƒ–įƒ˜įƒ” ცხრილიე įƒ–įƒįƒ›įƒ" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "įƒ‘įƒįƒ–įƒ˜įƒ” įƒ°įƒįƒ”įƒ¢įƒ˜" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "įƒ™įƒįƒœįƒ¤įƒ˜įƒ’įƒ£įƒ įƒįƒŖįƒ˜įƒ˜įƒ” įƒ“įƒįƒ”įƒ įƒ£įƒšįƒ”įƒ‘įƒ" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "įƒ—įƒ„įƒ•įƒ”įƒœįƒ˜ įƒ™įƒįƒœįƒ¢įƒ įƒįƒšįƒ˜įƒ” įƒ„įƒ•įƒ”įƒØ įƒ›įƒ§įƒįƒ¤įƒ˜ įƒ•įƒ”įƒ‘ įƒ”įƒ”įƒ įƒ•įƒ˜įƒ”įƒ”įƒ‘įƒ˜" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "įƒ’įƒįƒ›įƒįƒ”įƒ•įƒšįƒ" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index b79b1af3d2b..0b9d8c59f9c 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index aafddd05a3c..56f77fc8527 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index a84ba3cd3c8..2e2cd16393e 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 5f7bca9c09b..ac8214697de 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "추가할 ė¶„ė„˜ź°€ ģ—†ģŠµė‹ˆź¹Œ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ģ“ ė¶„ė„˜ėŠ” ģ“ėÆø ģ”“ģž¬ķ•©ė‹ˆė‹¤:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "11ģ›”" msgid "December" msgstr "12ģ›”" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "설정" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "쓈 ģ „" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1ė¶„ ģ „" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes}ė¶„ ģ „" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1ģ‹œź°„ ģ „" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours}ģ‹œź°„ ģ „" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "오늘" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ģ–“ģ œ" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days}ģ¼ ģ „" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ģ§€ė‚œ 달" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months}ź°œģ›” ģ „" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "ź°œģ›” ģ „" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "ģž‘ė…„" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "ė…„ ģ „" @@ -500,52 +501,52 @@ msgstr "ė°ģ“ķ„° 디렉터리와 ķŒŒģ¼ģ„ ģøķ„°ė„·ģ—ģ„œ 접근할 수 ģžˆėŠ” msgid "Create an admin account" msgstr "ź“€ė¦¬ģž 계정 ė§Œė“¤źø°" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ź³ źø‰" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ė°ģ“ķ„° ķ“ė”" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ė°ģ“ķ„°ė² ģ“ģŠ¤ 설정" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ģ‚¬ģš©ė  ģ˜ˆģ •" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ė°ģ“ķ„°ė² ģ“ģŠ¤ ģ‚¬ģš©ģž" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ė°ģ“ķ„°ė² ģ“ģŠ¤ ģ•”ķ˜ø" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ė°ģ“ķ„°ė² ģ“ģŠ¤ ģ“ė¦„" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ė°ģ“ķ„°ė² ģ“ģŠ¤ ķ…Œģ“ėø” 공간" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ė°ģ“ķ„°ė² ģ“ģŠ¤ 호스트" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ģ„¤ģ¹˜ ģ™„ė£Œ" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ė‚“ź°€ ź“€ė¦¬ķ•˜ėŠ” 웹 ģ„œė¹„ģŠ¤" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ė”œź·øģ•„ģ›ƒ" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index ad7567a0058..85904a36e17 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index 0fe524b7701..9e99e48e771 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "역사" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ķŒŒģ¼ 버전 ꓀리" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 93e6a601aa0..1402718d755 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "TLS ģ‚¬ģš©" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSL ģ—°ź²° ģ‹œ ģ‚¬ģš©ķ•˜ėŠ” 경우 ģ—°ź²°ė˜ģ§€ ģ•ŠģŠµė‹ˆė‹¤." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 98119404733..02ece737b99 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -156,59 +157,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ŲÆŁ‡ā€ŒŲ³ŲŖŁƒŲ§Ų±ŪŒ" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -496,52 +497,52 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Ł‡Ł‡ā€ŒŚµŲØŚ˜Ų§Ų±ŲÆŁ†ŪŒ Ł¾ŪŒŲ“ŁƒŁ‡ā€ŒŁˆŲŖŁˆŁˆ" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Ų²Ų§Ł†ŪŒŲ§Ų±ŪŒ ŁŪ†ŚµŲÆŁ‡ā€ŒŲ±" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ŲØŁ‡ā€ŒŁƒŲ§Ų±Ł‡ŪŽŁ†Ł‡ā€ŒŲ±ŪŒ ŲÆŲ§ŲŖŲ§ŲØŁ‡ā€ŒŪŒŲ³" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ŁˆŲ“Ł‡ā€ŒŪŒ Ł†Ł‡ŪŽŁ†ŪŒ ŲÆŲ§ŲŖŲ§ ŲØŁ‡ā€ŒŪŒŲ³" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ł†Ų§ŁˆŪŒ ŲÆŲ§ŲŖŲ§ŲØŁ‡ā€ŒŪŒŲ³" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Ł‡Ū†Ų³ŲŖŪŒ ŲÆŲ§ŲŖŲ§ŲØŁ‡ā€ŒŪŒŲ³" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ŁƒŪ†ŲŖŲ§ŪŒŪŒ هات ŲÆŁ‡ā€ŒŲ³ŲŖŁƒŲ§Ų±ŪŒŁ‡ā€ŒŁƒŲ§Ł†" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Ś•Ų§Ś˜Ł‡ā€ŒŪŒ ŁˆŪŽŲØ Ł„Ł‡ā€ŒŚ˜ŪŽŲ± Ś†Ų§ŁˆŲÆŪŽŲ±ŪŒŲŖ ŲÆŲ§ŪŒŁ‡" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Ś†ŁˆŁˆŁ†Ū•ŲÆŪ•Ų±Ū•ŁˆŪ•" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 5a867010735..37690656b8b 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index b3fa1af6357..d241d5d28b9 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Ł…ŪŽŚ˜ŁˆŁˆ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ŁˆŁ‡ā€ŒŲ“Ų§Ł†ŪŒ Ł¾Ł‡ā€ŒŚ•ŚÆŁ‡" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 33cf75e5ea1..88137f8ee47 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 1bbbfe7cdcf..64bc4df0cf1 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "Keng Kategorie fir bƤizesetzen?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Des Kategorie existĆ©iert schonn:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Astellungen" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "LƤschte Mount" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "vru {months} MĆ©int" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "MĆ©int hier" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "LƤscht Joer" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "Joren hier" @@ -497,52 +498,52 @@ msgstr "" msgid "Create an admin account" msgstr "En Admin Account uleeĆ«n" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "AvancĆ©iert" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Daten Dossier" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Datebank konfigurĆ©ieren" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "wƤrt benotzt ginn" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datebank Tabelle-GrĆ©isst" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Installatioun ofschlĆ©issen" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Web Servicer Ć«nnert denger Kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Ausloggen" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index ae9caf692e0..2d2039da8de 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index 3eeeda4f063..1b9a2bc1c06 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -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-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 12:27+0000\n" -"Last-Translator: sim0n \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,45 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historique" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fichier's VersionĆ©ierung " diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index a7cdcba6fe6..dae69e9634d 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index c1773e3cf78..0dc75a0c9c8 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "Nepridėsite jokios kategorijos?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Tokia kategorija jau yra:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "prieÅ” sekundę" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "PrieÅ” 1 minutę" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "PrieÅ” {count} minutes" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Å”iandien" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "vakar" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "PrieÅ” {days} dienas" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "praeitą mėnesÄÆ" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "prieÅ” mėnesÄÆ" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "praeitais metais" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "prieÅ” metus" @@ -497,52 +498,52 @@ msgstr "JÅ«sų duomenų aplankalas ir JÅ«sų failai turbÅ«t yra pasiekiami per i msgid "Create an admin account" msgstr "Sukurti administratoriaus paskyrą" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "IÅ”plėstiniai" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Baigti diegimą" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "jÅ«sų valdomos web paslaugos" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Atsijungti" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 674308b81be..b5e0d72e3f3 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index b3cf7ff9e97..42087e7e323 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Istorija" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Failų versijos" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 360405cc4d1..a0eca3ff0fc 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "Naudoti TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/lv/core.po b/l10n/lv/core.po index dc5ca491cfd..9ef17685365 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "Nav kategoriju, ko pievienot?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Šāda kategorija jau eksistē:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "IestatÄ«jumi" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "pirms 1 minÅ«tes" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minÅ«tēm" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Å”odien" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "vakar" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "pagājuÅ”ajā mēnesÄ«" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "pirms {months} mēneÅ”iem" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mēneÅ”us atpakaļ" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "gājuÅ”ajā gadā" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "gadus atpakaļ" @@ -497,52 +498,52 @@ msgstr "JÅ«su datu direktorija un datnes visdrÄ«zāk ir pieejamas no interneta. msgid "Create an admin account" msgstr "Izveidot administratora kontu" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "PaplaÅ”ināti" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurēt datubāzi" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Pabeigt iestatīŔanu" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "jÅ«su vadÄ«bā esoÅ”ie tÄ«mekļa servisi" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "IzrakstÄ«ties" @@ -574,7 +575,7 @@ msgstr "IerakstÄ«ties" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "AlternatÄ«vās pieteikÅ”anās" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index a003b4fdf1a..4eec0dad65b 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 04:20+0000\n" +"Last-Translator: RÅ«dolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,7 +73,7 @@ msgstr "Pārtraukt dalīŔanos" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Dzēst pavisam" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 0cd0f39d487..952a7488cdd 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,23 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "veikt atjaunoÅ”anu" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "dzēst datni pavisam" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index fa500081cc3..2bad08ded60 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 10:50+0000\n" -"Last-Translator: RÅ«dolfs Mazurs \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,45 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Vēsture" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Datņu versiju izskoÅ”ana" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index daca3930d1a..2cd29ffc5a4 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 04:30+0000\n" +"Last-Translator: RÅ«dolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,7 @@ msgstr "Autentifikācijas kļūda" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "Nevarēja mainÄ«t redzamo vārdu" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -230,15 +230,15 @@ msgstr "Redzamais vārds" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "JÅ«su redzamais vārds tika mainÄ«ts" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "Nevarēja mainÄ«t jÅ«su redzamo vārdu" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "MainÄ«t redzamo vārdu" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index ac6a97fa0f2..a2d0e2a14e2 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 14:21+0000\n" -"Last-Translator: RÅ«dolfs Mazurs \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "Lietot TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Neizmanto to SSL savienojumiem, tas neizdosies." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 907d9476d36..9c03b08032c 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "ŠŠµŠ¼Š° ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Š° Га се ГоГаГе?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ŠžŠ²Š°Š° ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Š° веќе постои:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "ŠŠ¾ŠµŠ¼Š²Ń€Šø" msgid "December" msgstr "Декември" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ŠŸŠ¾ŃŃ‚Š°Š²ŠŗŠø" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "преГ секунГи" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "преГ 1 Š¼ŠøŠ½ŃƒŃ‚Š°" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "преГ {minutes} Š¼ŠøŠ½ŃƒŃ‚Šø" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "преГ 1 час" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "преГ {hours} часови" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Генеска" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "вчера" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "преГ {days} Генови" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "минатиот месец" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "преГ {months} месеци" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "преГ месеци" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "минатата гоГина" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "преГ гоГини" @@ -498,52 +499,52 @@ msgstr "Š’Š°ŃˆŠ°Ń‚Š° папка со поГатоци Šø Гатотеките е msgid "Create an admin account" msgstr "ŠŠ°ŠæŃ€Š°Š²ŠµŃ‚Šµ аГминистраторска сметка" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ŠŠ°ŠæŃ€ŠµŠ“Š½Š¾" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ФолГер со поГатоци" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ŠšŠ¾Š½Ń„ŠøŠ³ŃƒŃ€ŠøŃ€Š°Ń˜ ја базата" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ќе биГе користено" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ŠšŠ¾Ń€ŠøŃŠ½ŠøŠŗ на база" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Табела во базата на поГатоци" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Дервер со база" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Š—Š°Š²Ń€ŃˆŠø го ŠæŠ¾Š“ŠµŃŃƒŠ²Š°ŃšŠµŃ‚Š¾" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "веб сервиси поГ Š’Š°ŃˆŠ° контрола" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ŠžŠ“Ń˜Š°Š²Š°" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 99097d14e08..6fe48847d75 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index 3f4e68131e3..3ea9e4d20c3 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Š˜ŃŃ‚Š¾Ń€ŠøŃ˜Š°" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Верзии на Гатотеки" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 7380a12ef33..78d3ca3305f 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 239b6a5dd60..88586eccd11 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "Tiada kategori untuk di tambah?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Kategori ini telah wujud" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Tetapan" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -498,52 +499,52 @@ msgstr "" msgid "Create an admin account" msgstr "buat akaun admin" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Setup selesai" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Log keluar" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 7ae2747a242..047d892067f 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index 389afec231e..c6fa87619d2 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 7728f96e12c..5d5fac28738 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index d5c9ee553ae..aeb978b5231 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -57,8 +57,9 @@ msgid "No category to add?" msgstr "Ingen kategorier Ć„ legge til?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Denne kategorien finnes allerede:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -162,59 +163,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "i dag" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "i gĆ„r" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "forrige mĆ„ned" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} mĆ„neder siden" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mĆ„neder siden" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "forrige Ć„r" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "Ć„r siden" @@ -502,52 +503,52 @@ msgstr "" msgid "Create an admin account" msgstr "opprett en administrator-konto" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Database tabellomrĆ„de" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "FullfĆør oppsetting" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "nettjenester under din kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index c2c66d6ca13..96d6a05b9de 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index 38f8fbe36fe..4441ba7870d 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historie" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Fil versjonering" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 26b645f7673..6b6fa98ff04 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "Bruk TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Ikke bruk for SSL tilkoblinger, dette vil ikke fungere." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 84dd24a0653..0727c27ea0a 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -64,8 +64,9 @@ msgid "No category to add?" msgstr "Geen categorie toevoegen?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Deze categorie bestaat al." +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -169,59 +170,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Instellingen" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "vandaag" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "gisteren" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "vorige maand" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "vorig jaar" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "jaar geleden" @@ -509,52 +510,52 @@ msgstr "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htacces msgid "Create an admin account" msgstr "Maak een beheerdersaccount aan" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Geavanceerd" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configureer de database" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Database server" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Installatie afronden" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Afmelden" @@ -586,7 +587,7 @@ msgstr "Meld je aan" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Alternatieve inlogs" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index f21914fb299..c0912a6c46e 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 14:00+0000\n" +"Last-Translator: AndrĆ© Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +82,7 @@ msgstr "Stop delen" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Verwijder definitief" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index 4aafb1900df..a138d9b3ae5 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# AndrĆ© Koot , 2013. # Lennart Weijl , 2013. # Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 13:50+0000\n" +"Last-Translator: AndrĆ© Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +24,7 @@ msgstr "" msgid "" "Please switch to your ownCloud client and change your encryption password to" " complete the conversion." -msgstr "" +msgstr "Schakel om naar uw eigen ownCloud client en wijzig uw versleutelwachtwoord om de conversie af te ronden." #: js/settings-personal.js:17 msgid "switched to client side encryption" @@ -47,15 +48,15 @@ msgstr "Versleuteling" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Bestandsversleuteling geactiveerd." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "De volgende bestandstypen zullen niet worden versleuteld:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Sluit de volgende bestandstypen uit van versleuteling:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 14b518d6dd9..fa20ea01287 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,23 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "uitvoeren restore operatie" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "verwijder bestanden definitief" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 95169bacce0..106f784b914 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Geschiedenis" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Bestand versies" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 86d93f44aa1..2e6ae9ed37b 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 14:00+0000\n" +"Last-Translator: AndrĆ© Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgstr "Authenticatie fout" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "Kon de weergavenaam niet wijzigen" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -113,7 +113,7 @@ msgstr "Even geduld aub...." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "Bijwerken...." #: js/apps.js:87 msgid "Error while updating app" @@ -238,15 +238,15 @@ msgstr "Weergavenaam" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "Uw weergavenaam is gewijzigd" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "Kon de weergavenaam niet wijzigen" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "Wijzig weergavenaam" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 16374f65707..bd1c87f11f0 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "De configuratie is geldig en de verbinding is geslaagd!" msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "De configuratie is geldig, maar Bind mislukte. Controleer de serverinstellingen en inloggegevens." #: ajax/testConfiguration.php:40 msgid "" @@ -175,7 +175,7 @@ msgstr "zonder een placeholder, bijv. \"objectClass=posixGroup\"" #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "Verbindingsinstellingen" #: templates/settings.php:33 msgid "Configuration Active" @@ -183,7 +183,7 @@ msgstr "Configuratie actief" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Als dit niet is ingeschakeld wordt deze configuratie overgeslagen." #: templates/settings.php:34 msgid "Port" @@ -197,7 +197,7 @@ msgstr "Backup (Replica) Host" msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Opgeven optionele backup host. Het moet een replica van de hoofd LDAP/AD server." #: templates/settings.php:36 msgid "Backup (Replica) Port" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Gebruik TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Gebruik niet voor SSL connecties, deze mislukken." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" @@ -243,7 +243,7 @@ msgstr "in seconden. Een verandering maakt de cache leeg." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "Mapinstellingen" #: templates/settings.php:45 msgid "User Display Name Field" @@ -263,7 +263,7 @@ msgstr "Een User Base DN per regel" #: templates/settings.php:47 msgid "User Search Attributes" -msgstr "" +msgstr "Attributen voor gebruikerszoekopdrachten" #: templates/settings.php:47 templates/settings.php:50 msgid "Optional; one attribute per line" @@ -287,7 +287,7 @@ msgstr "Een Group Base DN per regel" #: templates/settings.php:50 msgid "Group Search Attributes" -msgstr "" +msgstr "Attributen voor groepszoekopdrachten" #: templates/settings.php:51 msgid "Group-Member association" @@ -295,7 +295,7 @@ msgstr "Groepslid associatie" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Speciale attributen" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index f9d7583a1a6..00d289cdaf0 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -157,59 +158,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -497,52 +498,52 @@ msgstr "" msgid "Create an admin account" msgstr "Lag ein admin-konto" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vil bli nytta" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "FullfĆør oppsettet" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Logg ut" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 9047a8f1cef..ba74bb698bb 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index 3d20ded946a..3ed063fcb55 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index a4e1c38181a..d2cf7889567 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/oc/core.po b/l10n/oc/core.po index a239c325316..5d770fb4d5f 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "Pas de categoria d'ajustar ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "La categoria exista ja :" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Configuracion" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "uĆØi" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "iĆØr" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "mes passat" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "meses a" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "an passat" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "ans a" @@ -496,52 +497,52 @@ msgstr "" msgid "Create an admin account" msgstr "Crea un compte admin" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "AvanƧat" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "DorsiĆØr de donadas" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "serĆ  utilizat" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "UsanciĆØr de la basa de donadas" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ƒste de basa de donadas" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Configuracion acabada" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Services web jos ton contraròtle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Sortida" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 7ddc063e1b0..064f9be30a7 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index e8848887184..ed722b60222 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index db410b6652d..56fd18cfc33 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/pl/core.po b/l10n/pl/core.po index be55347d047..1145b52a9fc 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -60,8 +60,9 @@ msgid "No category to add?" msgstr "Brak kategorii" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ta kategoria już istnieje" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -165,59 +166,59 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minute temu" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 godzine temu" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "dziś" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ostani miesiąc" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "ostatni rok" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "lat temu" @@ -505,52 +506,52 @@ msgstr "Katalog danych (data) i pliki są prawdopodobnie dostępnego z Internetu msgid "Create an admin account" msgstr "Tworzenie konta administratora" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Zaawansowane" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Katalog danych" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfiguracja bazy danych" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "zostanie użyte" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Zakończ konfigurowanie" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "usługi internetowe pod kontrolą" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Wylogowuje użytkownika" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 3f8e7a95647..3f85b77dcc2 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index a2020d78f2d..4d5b44af343 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historia" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Wersjonowanie plików" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 1e8b58da0e5..375849b6dc2 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Użyj TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Nie używaj SSL dla połączeń, jeśli się nie powiedzie." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 29f70cf7c98..670cdf6a339 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -50,7 +50,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -155,59 +156,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -495,52 +496,52 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index 2190a524e92..d35b236c8f8 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 38bf131e3e4..4423dd3512d 100644 --- a/l10n/pl_PL/files_versions.po +++ b/l10n/pl_PL/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po index 1b11dc6b24e..6fecd479fb5 100644 --- a/l10n/pl_PL/user_ldap.po +++ b/l10n/pl_PL/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index d3b3d31ad4b..55126f95483 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -61,8 +61,9 @@ msgid "No category to add?" msgstr "Nenhuma categoria adicionada?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Essa categoria jĆ” existe" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -166,59 +167,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ConfiguraƧƵes" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "segundos atrĆ”s" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minuto atrĆ”s" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrĆ”s" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 hora atrĆ”s" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} horas atrĆ”s" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "hoje" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ontem" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dias atrĆ”s" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "Ćŗltimo mĆŖs" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} meses atrĆ”s" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "meses atrĆ”s" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "Ćŗltimo ano" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "anos atrĆ”s" @@ -506,52 +507,52 @@ msgstr "Seu diretório de dados e seus arquivos estĆ£o, provavelmente, acessĆ­ve msgid "Create an admin account" msgstr "Criar uma conta de administrador" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "AvanƧado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "serĆ” usado" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "UsuĆ”rio de banco de dados" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "EspaƧo de tabela do banco de dados" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Banco de dados do host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Concluir configuração" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web services sob seu controle" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Sair" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index ef507ea2447..785b8eddbe5 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,16 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "realizar operação de restauração" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index d6cf483ba38..d47f04d6cfb 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 15:50+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Histórico" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionamento de Arquivos" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 7c537702150..6abc8f57af7 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "NĆ£o use-o para conexƵes SSL, pois falharĆ”." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 59cabef0066..6da6a44263c 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -8,15 +8,15 @@ # , 2013. # Duarte Velez Grilo , 2012. # , 2011, 2012. -# Helder Meneses , 2012. +# Helder Meneses , 2012-2013. # Nelson Rosado , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -58,8 +58,9 @@ msgid "No category to add?" msgstr "Nenhuma categoria para adicionar?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Esta categoria jĆ” existe:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -163,59 +164,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "DefiniƧƵes" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "Minutos atrĆ”s" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "HĆ” 1 minuto" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrĆ”s" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "HĆ” 1 hora" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "HĆ” {hours} horas atrĆ”s" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "hoje" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ontem" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dias atrĆ”s" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ultĆ­mo mĆŖs" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "HĆ” {months} meses atrĆ”s" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "meses atrĆ”s" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "ano passado" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "anos atrĆ”s" @@ -503,52 +504,52 @@ msgstr "A sua pasta com os dados e os seus ficheiros estĆ£o provavelmente acess msgid "Create an admin account" msgstr "Criar uma conta administrativa" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "AvanƧado" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configure a base de dados" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vai ser usada" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "AnfitriĆ£o da base de dados" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Acabar instalação" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "serviƧos web sob o seu controlo" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Sair" @@ -580,7 +581,7 @@ msgstr "Entrar" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Contas de acesso alternativas" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 284e463f1a2..9798bc803a8 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,16 +8,16 @@ # , 2013. # Duarte Velez Grilo , 2012. # , 2012. -# Helder Meneses , 2012. +# Helder Meneses , 2012-2013. # Miguel Sousa , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 18:20+0000\n" +"Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -78,7 +78,7 @@ msgstr "Deixar de partilhar" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Eliminar permanentemente" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 5dca5cbe115..5f79fd32069 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,16 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "Restaurar" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 596deab4396..48cc4e4416c 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Histórico" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionamento de Ficheiros" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 66e002ab89e..643d61ad73a 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -6,14 +6,14 @@ # , 2012-2013. # Daniel Pinto , 2013. # Duarte Velez Grilo , 2012. -# Helder Meneses , 2012. +# Helder Meneses , 2012-2013. # Nelson Rosado , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -177,7 +177,7 @@ msgstr "Sem nenhuma variĆ”vel. Exemplo: \"objectClass=posixGroup\"." #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "DefiniƧƵes de ligação" #: templates/settings.php:33 msgid "Configuration Active" @@ -218,8 +218,8 @@ msgid "Use TLS" msgstr "Usar TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "NĆ£o use para ligaƧƵes SSL, irĆ” falhar." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" @@ -245,7 +245,7 @@ msgstr "em segundos. Uma alteração esvazia a cache." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "DefiniƧƵes de directorias" #: templates/settings.php:45 msgid "User Display Name Field" @@ -297,7 +297,7 @@ msgstr "Associar utilizador ao grupo." #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Atributos especiais" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index b4e708bd8bd..69eac503888 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -56,8 +56,9 @@ msgid "No category to add?" msgstr "Nici o categorie de adăugat?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Această categorie deja există:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -161,59 +162,59 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Configurări" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "secunde Ć®n urmă" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minut Ć®n urmă" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ore Ć®n urmă" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "astăzi" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ieri" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ultima lună" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} luni Ć®n urmă" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "luni Ć®n urmă" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "ultimul an" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "ani Ć®n urmă" @@ -501,52 +502,52 @@ msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile pri msgid "Create an admin account" msgstr "Crează un cont de administrator" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avansat" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Director date" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Configurează baza de date" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "vor fi folosite" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "servicii web controlate de tine" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Ieșire" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index bf376bb048f..252b8a0e7d8 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 28514d6ddd3..46715013ca3 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Istoric" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionare fișiere" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 388d6f13f21..4a97d1b7d6a 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "Utilizează TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "A nu se utiliza pentru conexiuni SSL, va eșua." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index a39f8a36720..2fe0ff544c5 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -14,12 +14,13 @@ # , 2011. # Victor Bravo <>, 2012. # , 2012. +# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -61,8 +62,9 @@ msgid "No category to add?" msgstr "ŠŠµŃ‚ категорий Š“Š»Ń Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Эта ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -166,59 +168,59 @@ msgstr "ŠŠ¾ŃŠ±Ń€ŃŒ" msgid "December" msgstr "Š”ŠµŠŗŠ°Š±Ń€ŃŒ" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "несколько секунГ назаГ" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 Š¼ŠøŠ½ŃƒŃ‚Ńƒ назаГ" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} Š¼ŠøŠ½ŃƒŃ‚ назаГ" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "час назаГ" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} часов назаГ" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "ŃŠµŠ³Š¾Š“Š½Ń" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "вчера" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} Гней назаГ" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "в ŠæŃ€Š¾ŃˆŠ»Š¾Š¼ Š¼ŠµŃŃŃ†Šµ" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} Š¼ŠµŃŃŃ†ŠµŠ² назаГ" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "несколько Š¼ŠµŃŃŃ†ŠµŠ² назаГ" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "в ŠæŃ€Š¾ŃˆŠ»Š¾Š¼ гоГу" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "несколько лет назаГ" @@ -506,52 +508,52 @@ msgstr "Š’Š°ŃˆŠø каталоги Ганных Šø файлы, Š²ŠµŃ€Š¾ŃŃ‚Š½Š¾, msgid "Create an admin account" msgstr "Š”Š¾Š·Š“Š°Ń‚ŃŒ ŃƒŃ‡Ń‘Ń‚Š½ŃƒŃŽ запись аГминистратора" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Š”Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Š”ŠøŃ€ŠµŠŗŃ‚Š¾Ń€ŠøŃ с Ганными" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠ° базы Ганных" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "Š±ŃƒŠ“ŠµŃ‚ использовано" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Š˜Š¼Ń ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń Š“Š»Ń базы Ганных" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ŠŸŠ°Ń€Š¾Š»ŃŒ Š“Š»Ń базы Ганных" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ŠŠ°Š·Š²Š°Š½ŠøŠµ базы Ганных" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Табличое пространство базы Ганных" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Єост базы Ганных" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Š—Š°Š²ŠµŃ€ŃˆŠøŃ‚ŃŒ ŃƒŃŃ‚Š°Š½Š¾Š²ŠŗŃƒ" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "Детевые ŃŠ»ŃƒŠ¶Š±Ń‹ поГ твоим контролем" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Выйти" @@ -583,7 +585,7 @@ msgstr "Войти" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "ŠŠ»ŃŒŃ‚ŠµŃ€Š½Š°Ń‚ŠøŠ²Š½Ń‹Šµ имена ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 60b93531879..5b2b1fe3bc7 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -15,13 +15,14 @@ # , 2011. # Victor Bravo <>, 2012. # , 2012. +# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 07:00+0000\n" +"Last-Translator: Langaru \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,7 +83,7 @@ msgstr "ŠžŃ‚Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŃŽ" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "УГалено навсегГа" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index b9f437eee8c..c3281de1972 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Denis , 2012. +# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 07:50+0000\n" +"Last-Translator: Langaru \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +23,7 @@ msgstr "" msgid "" "Please switch to your ownCloud client and change your encryption password to" " complete the conversion." -msgstr "" +msgstr "ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° ŠæŠµŃ€ŠµŠŗŠ»ŃŽŃ‡ŠøŃ‚ŠµŃŃŒ на Š’Š°Ńˆ клиент ownCloud Šø ŠæŠ¾Š¼ŠµŠ½ŃŠ¹Ń‚Šµ ŠæŠ°Ń€Š¾Š»ŃŒ ŃˆŠøŠ²Ń€Š¾Š²Š°Š½ŠøŃ Š“Š»Ń Š·Š°Š²ŠµŃ€ŃˆŠµŠ½ŠøŃ ŠæŃ€ŠµŠ¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ." #: js/settings-personal.js:17 msgid "switched to client side encryption" @@ -30,15 +31,15 @@ msgstr "" #: js/settings-personal.js:21 msgid "Change encryption password to login password" -msgstr "" +msgstr "Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃ Š“Š»Ń ŠæŠ°Ń€Š¾Š»Ń вхоГа" #: js/settings-personal.js:25 msgid "Please check your passwords and try again." -msgstr "" +msgstr "ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° ŠæŃ€Š¾Š²ŠµŃ€ŃŒŃ‚Šµ пароли Šø ŠæŠ¾ŠæŃ€Š¾Š±ŃƒŠ¹Ń‚Šµ снова." #: js/settings-personal.js:25 msgid "Could not change your file encryption password to your login password" -msgstr "" +msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ Š’Š°Ńˆ ŠæŠ°Ń€Š¾Š»ŃŒ файла ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃ Š“Š»Ń ŠæŠ°Ń€Š¾Š»Ń вхоГа" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" @@ -46,15 +47,15 @@ msgstr "Шифрование" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Шифрование файла Š²ŠŗŠ»ŃŽŃ‡ŠµŠ½Š¾." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Š”Š»ŠµŠ“ŃƒŃŽŃ‰ŠøŠµ типы файлов не Š±ŃƒŠ“ŃƒŃ‚ Š·Š°ŃˆŠøŃ„Ń€Š¾Š²Š°Š½Ń‹:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Š˜ŃŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŠøŠµ типы файлов ŠøŠ· ŃˆŠøŃ„Ń€Š¾Š²Š°Š½Š½Ń‹Ń…:" #: templates/settings.php:12 msgid "None" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 87ecf686fe9..7875cd89640 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -17,13 +18,23 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" -msgstr "" +msgstr "Š²Ń‹ŠæŠ¾Š»Š½ŠøŃ‚ŃŒ Š¾ŠæŠµŃ€Š°Ń†ŠøŃŽ Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ файл навсегГа" #: js/trash.js:125 templates/index.php:17 msgid "Name" @@ -31,7 +42,7 @@ msgstr "Š˜Š¼Ń" #: js/trash.js:126 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "УГалён" #: js/trash.js:135 msgid "1 folder" @@ -51,8 +62,8 @@ msgstr "{count} файлов" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Š—Š“ŠµŃŃŒ ничего нет. Š’Š°ŃˆŠ° корзина ŠæŃƒŃŃ‚а!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "Š’Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index e25aa41375a..5ffb2ea5701 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -10,8 +10,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -20,10 +20,45 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Š˜ŃŃ‚Š¾Ń€ŠøŃ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Версии файлов" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 1d09ca48a2c..b0831ab57ab 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -16,13 +16,14 @@ # , 2011. # Victor Bravo <>, 2012. # , 2012. +# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 07:10+0000\n" +"Last-Translator: Langaru \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +42,7 @@ msgstr "ŠžŃˆŠøŠ±ŠŗŠ° авторизации" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ отображаемое ŠøŠ¼Ń" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -99,7 +100,7 @@ msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š¾Š±Š½Š¾Š²ŠøŃ‚ŃŒ приложение" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "ŠžŠ±Š½Š¾Š²ŠøŃ‚ŃŒ Го {Š²ŠµŃ€ŃŠøŃ ŠæŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŃ}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -119,7 +120,7 @@ msgstr "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½ŠøŠµ..." #: js/apps.js:87 msgid "Error while updating app" -msgstr "" +msgstr "ŠžŃˆŠøŠ±ŠŗŠ° в процессе Š¾Š±Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŠæŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŃ" #: js/apps.js:87 msgid "Error" @@ -240,15 +241,15 @@ msgstr "ŠžŃ‚Š¾Š±Ń€Š°Š¶Š°ŠµŠ¼Š¾Šµ ŠøŠ¼Ń" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "Š’Š°ŃˆŠµ отображаемое ŠøŠ¼Ń было изменено" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ Š’Š°ŃˆŠµ отображаемое ŠøŠ¼Ń" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ отображаемое ŠøŠ¼Ń" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 0d01260dd95..d9c19d16f88 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -6,12 +6,13 @@ # <4671992@gmail.com>, 2012. # Denis , 2012. # , 2012. +# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -22,11 +23,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "ŠŠµ уГалось ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃŽ сервера" #: ajax/testConfiguration.php:35 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "ŠšŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃ ŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Š°Ń Šø ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠµ может Š±Ń‹Ń‚ŃŒ ŃƒŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½Š¾!" #: ajax/testConfiguration.php:37 msgid "" @@ -38,7 +39,7 @@ msgstr "" msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "ŠšŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃ не верна. ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, посмотрите в Š¶ŃƒŃ€Š½Š°Š»Šµ ownCloud Гетали." #: js/settings.js:66 msgid "Deletion failed" @@ -46,31 +47,31 @@ msgstr "УГаление не уГалось" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "ŠŸŃ€ŠøŠ½ŃŃ‚ŃŒ настройки ŠøŠ· послеГней ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŠø сервера?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Š”Š¾Ń…Ń€Š°Š½ŠøŃ‚ŃŒ настройки?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "ŠŠµ ŠæŠ¾Š»ŃƒŃ‡ŠøŠ»Š¾ŃŃŒ Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃŽ сервера" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ уГалась" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "ŠŸŃ€Š¾Š²ŠµŃ€ŠŗŠ° ŃŠ¾ŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ не уГалась" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Š’Ń‹ Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ хотите ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŃŽŃ‰ŃƒŃŽ ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃŽ сервера?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "ŠŸŠ¾Š“Ń‚Š²ŠµŃ€Š¶Š“ŠµŠ½ŠøŠµ ŃƒŠ“Š°Š»ŠµŠ½ŠøŃ" #: templates/settings.php:8 msgid "" @@ -87,11 +88,11 @@ msgstr "" #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "ŠšŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃ сервера" #: templates/settings.php:17 msgid "Add Server Configuration" -msgstr "" +msgstr "Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃŽ сервера" #: templates/settings.php:21 msgid "Host" @@ -175,11 +176,11 @@ msgstr "без Š·Š°ŠæŠ¾Š»Š½ŠµŠ½ŠøŃ, например \"objectClass=posixGroup\" #: templates/settings.php:31 msgid "Connection Settings" -msgstr "" +msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø ŠæŠ¾Š“ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŃ" #: templates/settings.php:33 msgid "Configuration Active" -msgstr "" +msgstr "ŠšŠ¾Š½Ń„ŠøŠ³ŃƒŃ€Š°Ń†ŠøŃ активна" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." @@ -205,7 +206,7 @@ msgstr "" #: templates/settings.php:37 msgid "Disable Main Server" -msgstr "" +msgstr "ŠžŃ‚ŠŗŠ»ŃŽŃ‡ŠµŠ½ŠøŠµ главного сервера" #: templates/settings.php:37 msgid "When switched on, ownCloud will only connect to the replica server." @@ -216,8 +217,8 @@ msgid "Use TLS" msgstr "Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "ŠŠµ ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ Š“Š»Ń соеГинений SSL" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" @@ -243,7 +244,7 @@ msgstr "в ŃŠµŠŗŃƒŠ½Š“Š°Ń…. Изменение очистит ŠŗŃŃˆ." #: templates/settings.php:43 msgid "Directory Settings" -msgstr "" +msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø каталога" #: templates/settings.php:45 msgid "User Display Name Field" @@ -263,11 +264,11 @@ msgstr "" #: templates/settings.php:47 msgid "User Search Attributes" -msgstr "" +msgstr "ŠŸŠ¾ŠøŃŠŗŠ¾Š²Ń‹Šµ Š°Ń‚Ń€ŠøŠ±ŃƒŃ‚Ń‹ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń" #: templates/settings.php:47 templates/settings.php:50 msgid "Optional; one attribute per line" -msgstr "" +msgstr "ŠžŠæŃ†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾; оГин Š°Ń‚Ń€ŠøŠ±ŃƒŃ‚ на Š»ŠøŠ½ŠøŃŽ" #: templates/settings.php:48 msgid "Group Display Name Field" @@ -295,7 +296,7 @@ msgstr "ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ Š“Ń€ŃƒŠæŠæŠ°-Участник" #: templates/settings.php:53 msgid "Special Attributes" -msgstr "" +msgstr "Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Ń‹Šµ Š°Ń‚Ń€ŠøŠ±ŃƒŃ‚Ń‹" #: templates/settings.php:56 msgid "in bytes" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index dbb4e95efde..7c8cb7de7c0 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "ŠŠµŃ‚ категории Š“Š»Ń Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Эта ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "ŠŠ¾ŃŠ±Ń€ŃŒ" msgid "December" msgstr "Š”ŠµŠŗŠ°Š±Ń€ŃŒ" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "секунГ назаГ" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr " 1 Š¼ŠøŠ½ŃƒŃ‚Ńƒ назаГ" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{Š¼ŠøŠ½ŃƒŃ‚Ń‹} Š¼ŠøŠ½ŃƒŃ‚ назаГ" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 час назаГ" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{часы} часов назаГ" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "ŃŠµŠ³Š¾Š“Š½Ń" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "вчера" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{Гни} Гней назаГ" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "в ŠæŃ€Š¾ŃˆŠ»Š¾Š¼ Š¼ŠµŃŃŃ†Šµ" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{Š¼ŠµŃŃŃ†Ń‹} Š¼ŠµŃŃŃ†ŠµŠ² назаГ" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "Š¼ŠµŃŃŃ† назаГ" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "в ŠæŃ€Š¾ŃˆŠ»Š¾Š¼ гоГу" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "лет назаГ" @@ -497,52 +498,52 @@ msgstr "Š’Š°ŃˆŠø каталоги Ганных Šø файлы, Š²ŠµŃ€Š¾ŃŃ‚Š½Š¾, msgid "Create an admin account" msgstr "Š”Š¾Š·Š“Š°Ń‚ŃŒ admin account" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Š Š°ŃŃˆŠøŃ€ŠµŠ½Š½Ń‹Š¹" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Папка Ганных" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ŠŠ°ŃŃ‚Ń€Š¾ŠøŃ‚ŃŒ базу Ганных" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "Š±ŃƒŠ“ŠµŃ‚ ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒŃŃ" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ŠŸŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒ базы Ганных" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ŠŸŠ°Ń€Š¾Š»ŃŒ базы Ганных" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Š˜Š¼Ń базы Ганных" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Š¢Š°Š±Š»ŠøŃ‡Š½Š°Ń Š¾Š±Š»Š°ŃŃ‚ŃŒ базы Ганных" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Дервер базы Ганных" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Š—Š°Š²ŠµŃ€ŃˆŠµŠ½ŠøŠµ настройки" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "веб-сервисы поГ Š’Š°ŃˆŠøŠ¼ контролем" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Выйти" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index 02991a08ba4..7ad98a2f903 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index 440d5bbecb0..1cb13519bbb 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Š˜ŃŃ‚Š¾Ń€ŠøŃ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Файлы ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š²ŠµŃ€ŃŠøŃŠ¼Šø" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 848fc9df8d7..0b6b9ebf1a5 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Š˜ŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŃŒ TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "ŠŠµ ŠøŃŠæŠ¾Š»ŃŒŠ·ŃƒŠ¹Ń‚Šµ ŃŃ‚Š¾ SSL-соеГинений, ŃŃ‚Š¾ не Š±ŃƒŠ“ет выполнено." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index bf09a68a998..f5dcd23183c 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -53,7 +53,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -158,59 +159,59 @@ msgstr "ą¶±ą·œą·€ą·ą¶øą·Šą¶¶ą¶»ą·Š" msgid "December" msgstr "ą¶Æą·™ą·ƒą·ą¶øą·Šą¶¶ą¶»ą·Š" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ą·ƒą·ą¶šą·ƒą·”ą¶øą·Š" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "තත්ඓරයන්ට ඓෙර" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 ą¶øą·’ą¶±ą·’ą¶­ą·Šą¶­ą·”ą·€ą¶šą¶§ ඓෙර" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "ą¶…ą¶Æ" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ඓෙර ą¶øą·ą·ƒą¶ŗą·š" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "ą¶øą·ą·ƒ ą¶šą·“ą¶“ą¶ŗą¶šą¶§ ඓෙර" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "ඓෙර ą¶…ą·€ą·”ą¶»ą·”ą¶Æą·Šą¶Æą·š" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "අවුරුදු ą¶šą·“ą¶“ą¶ŗą¶šą¶§ ඓෙර" @@ -498,52 +499,52 @@ msgstr "ą¶”ą¶¶ą¶œą·š දත්ත ą¶©ą·’ą¶»ą·™ą¶šą·Šą¶§ą¶»ą·’ą¶ŗ ą·„ą· ගො msgid "Create an admin account" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "දියුණු/ą¶‹ą·ƒą·ƒą·Š" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "දත්ත ą·†ą·ą¶½ą·Šą¶©ą¶»ą¶ŗ" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "දත්ත ą·ƒą¶øą·”ą¶Æą·ą¶ŗ ą·„ą·ą¶©ą¶œą·ą·ƒą·“ą¶ø" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ą¶·ą·ą·€ą·’ą¶­ą· වනු ඇත" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ą¶Æą¶­ą·Šą¶­ą¶œą¶¶ą¶©ą· ą¶·ą·ą·€ą·’ą¶­ą·ą¶šą¶»ą·”" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ą¶Æą¶­ą·Šą¶­ą¶œą¶¶ą¶©ą·ą·€ą·š මුරඓදය" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ą¶Æą¶­ą·Šą¶­ą¶œą¶¶ą¶©ą·ą·€ą·š නම" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ą¶Æą¶­ą·Šą¶­ą¶œą¶¶ą¶©ą· ą·ƒą·šą·€ą·ą¶Æą·ą¶ŗą¶šą¶ŗą·" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ą·ƒą·Šą¶®ą·ą¶“ą¶±ą¶ŗ ą¶šą·’ą¶»ą·“ą¶ø ą¶…ą·€ą·ƒą¶±ą·Š කරන්න" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ඔබට ą¶“ą·ą¶½ą¶±ą¶ŗ ą¶šą·… ą·„ą·ą¶šą·’ ą·€ą·™ą¶¶ą·Š ą·ƒą·šą·€ą·ą·€ą¶±ą·Š" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ą¶±ą·’ą¶šą·Šą¶øą·“ą¶ø" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 67a762da980..a1174c1e82c 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index 65443ed184b..a7a9fdc4990 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ą¶‰ą¶­ą·’ą·„ą·ą·ƒą¶ŗ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ą¶œą·œą¶±ą·” ą¶…ą¶±ą·”ą·€ą·ą¶Æą¶ŗą¶±ą·Š" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index cb5a0b25f19..992b171e909 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "TLS ą¶·ą·ą·€ą·’ą¶­ą· කරන්න" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 353a86346f8..07fbe78b931 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -56,8 +56,9 @@ msgid "No category to add?" msgstr "Žiadna kategória pre pridanie?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "TĆ”to kategória už existuje:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -161,59 +162,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "pred minĆŗtou" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "pred {minutes} minĆŗtami" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "Pred 1 hodinou." -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "dnes" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "včera" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "minulý rok" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "pred rokmi" @@ -501,52 +502,52 @@ msgstr "VÔŔ priečinok s dĆ”tami a VaÅ”e sĆŗbory sĆŗ pravdepodobne dostupnĆ© z msgid "Create an admin account" msgstr "VytvoriÅ„ administrĆ”torský ĆŗÄet" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "PokročilĆ©" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Priečinok dĆ”t" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "NastaviÅ„ databĆ”zu" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "bude použitĆ©" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Hostiteľ databĆ”zy" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Heslo databĆ”zy" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Meno databĆ”zy" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Tabuľkový priestor databĆ”zy" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Server databĆ”zy" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "DokončiÅ„ inÅ”talĆ”ciu" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webovĆ© služby pod vaÅ”ou kontrolou" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "OdhlĆ”siÅ„" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index bc6bc046f13..eb5cf3edc6f 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,16 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "vykonaÅ„ obnovu" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 32d3549ff90..a5e084b9110 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "História" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "VytvĆ”ranie verziĆ­ sĆŗborov" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index ab48e3110ab..69f4aa7436b 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 20:00+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Použi TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Nepoužívajte pre pripojenie SSL, pripojenie zlyhĆ”." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index d6247a7bb7f..e48f9984a93 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -54,8 +54,9 @@ msgid "No category to add?" msgstr "Ni kategorije za dodajanje?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Ta kategorija že obstaja:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -159,59 +160,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "pred 1 uro" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "danes" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "včeraj" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "lansko leto" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "let nazaj" @@ -499,52 +500,52 @@ msgstr "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen msgid "Create an admin account" msgstr "Ustvari skrbniÅ”ki račun" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Napredne možnosti" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Mapa s podatki" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Uporabnik zbirke" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Dokončaj namestitev" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "spletne storitve pod vaÅ”im nadzorom" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Odjava" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 7e459a73913..525f304069e 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 1a4d2854d91..dad9f10280e 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Zgodovina" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Sledenje različicam" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index d644dac5e56..c3b92afff38 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Uporabi TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Uporaba SSL za povezave bo spodletela." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index ff68075f6f7..fd7293b1362 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -53,8 +53,9 @@ msgid "No category to add?" msgstr "ДоГати још неку ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Ńƒ?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ŠšŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Š° већ ŠæŠ¾ŃŃ‚Š¾Ń˜Šø:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -158,59 +159,59 @@ msgstr "ŠŠ¾Š²ŠµŠ¼Š±Š°Ń€" msgid "December" msgstr "Децембар" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ПоГешавања" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "пре неколико секунГи" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "пре 1 Š¼ŠøŠ½ŃƒŃ‚" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "пре {minutes} Š¼ŠøŠ½ŃƒŃ‚Š°" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "ŠŸŃ€Šµ јеГног сата" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "ŠŸŃ€Šµ {hours} сата (сати)" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "Ганас" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "Ń˜ŃƒŃ‡Šµ" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "пре {days} Гана" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ŠæŃ€Š¾ŃˆŠ»Š¾Š³ месеца" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "ŠŸŃ€Šµ {months} месеца (месеци)" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "месеци Ń€Š°Š½ŠøŃ˜Šµ" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "ŠæŃ€Š¾ŃˆŠ»Šµ гоГине" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "гоГина Ń€Š°Š½ŠøŃ˜Šµ" @@ -498,52 +499,52 @@ msgstr "Š¢Ń€ŠµŠ½ŃƒŃ‚Š½Š¾ су ваши поГаци Šø Гатотеке Гост msgid "Create an admin account" msgstr "ŠŠ°ŠæŃ€Š°Š²Šø аГминистративни налог" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ŠŠ°ŠæŃ€ŠµŠ“Š½Š¾" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Фацикла поГатака" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ПоГешавање базе" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ће бити ŠŗŠ¾Ń€ŠøŃˆŃ›ŠµŠ½" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ŠšŠ¾Ń€ŠøŃŠ½ŠøŠŗ базе" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "РаГни простор базе поГатака" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Š—Š°Š²Ń€ŃˆŠø поГешавање" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "веб сервиси поГ контролом" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ŠžŠ“Ń˜Š°Š²Š°" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index fb4b9633bcb..58c3430bb90 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,16 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "врати у претхоГно ŃŃ‚Š°ŃšŠµ" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index 84371b65544..74719197c5f 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-02 00:06+0100\n" -"PO-Revision-Date: 2013-02-01 14:10+0000\n" -"Last-Translator: Rancher \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,10 +18,45 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Š˜ŃŃ‚Š¾Ń€ŠøŃ˜Š°" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ŠŸŃ€Š°Š²Ń™ŠµŃšŠµ Š²ŠµŃ€Š·ŠøŃ˜Š° Гатотека" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 138ac0e03ff..28760cfceb4 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 20:40+0000\n" -"Last-Translator: Rancher \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "ŠšŠ¾Ń€ŠøŃŃ‚Šø TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "ŠŠµ користите за SSL везе Ń˜ŠµŃ€ неће раГити." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 57d7af27d17..b972b536fe1 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -156,59 +157,59 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "PodeÅ”avanja" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -496,52 +497,52 @@ msgstr "" msgid "Create an admin account" msgstr "Napravi administrativni nalog" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Facikla podataka" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "PodeÅ”avanje baze" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "će biti koriŔćen" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ZavrÅ”i podeÅ”avanje" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Odjava" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index da3cf064a60..1c241fa05a4 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index a35cd43237b..d049a5e55bd 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 9933827859e..b53dc7e85e9 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 5d9d7db303d..692e4f62669 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:07+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -57,8 +57,9 @@ msgid "No category to add?" msgstr "Ingen kategori att lƤgga till?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Denna kategori finns redan:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -162,59 +163,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "InstƤllningar" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "i dag" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "i gĆ„r" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "fƶrra mĆ„naden" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} mĆ„nader sedan" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "mĆ„nader sedan" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "fƶrra Ć„ret" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "Ć„r sedan" @@ -502,52 +503,52 @@ msgstr "Din datakatalog och dina filer Ƥr fƶrmodligen tillgƤngliga frĆ„n Inte msgid "Create an admin account" msgstr "Skapa ett administratƶrskonto" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Avancerat" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Datamapp" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Konfigurera databasen" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "kommer att anvƤndas" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "DatabasanvƤndare" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Lƶsenord till databasen" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Avsluta installation" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "webbtjƤnster under din kontroll" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Logga ut" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 897bddc00ea..177e741225d 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,16 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "utfƶr Ć„terstƤllning" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index 5f3d273b389..5efefb7d136 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Historik" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Versionshantering av filer" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 955753ff393..4eb8e55278d 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 14:20+0000\n" -"Last-Translator: danielholm \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -216,8 +216,8 @@ msgid "Use TLS" msgstr "AnvƤnd TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "AnvƤnd inte fƶr SSL-anslutningar, det kommer inte att fungera." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po new file mode 100644 index 00000000000..dea56701f93 --- /dev/null +++ b/l10n/sw_KE/core.po @@ -0,0 +1,589 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:85 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:87 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:89 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:91 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:32 +msgid "Monday" +msgstr "" + +#: js/config.php:32 +msgid "Tuesday" +msgstr "" + +#: js/config.php:32 +msgid "Wednesday" +msgstr "" + +#: js/config.php:32 +msgid "Thursday" +msgstr "" + +#: js/config.php:32 +msgid "Friday" +msgstr "" + +#: js/config.php:32 +msgid "Saturday" +msgstr "" + +#: js/config.php:33 +msgid "January" +msgstr "" + +#: js/config.php:33 +msgid "February" +msgstr "" + +#: js/config.php:33 +msgid "March" +msgstr "" + +#: js/config.php:33 +msgid "April" +msgstr "" + +#: js/config.php:33 +msgid "May" +msgstr "" + +#: js/config.php:33 +msgid "June" +msgstr "" + +#: js/config.php:33 +msgid "July" +msgstr "" + +#: js/config.php:33 +msgid "August" +msgstr "" + +#: js/config.php:33 +msgid "September" +msgstr "" + +#: js/config.php:33 +msgid "October" +msgstr "" + +#: js/config.php:33 +msgid "November" +msgstr "" + +#: js/config.php:33 +msgid "December" +msgstr "" + +#: js/js.js:284 +msgid "Settings" +msgstr "" + +#: js/js.js:764 +msgid "seconds ago" +msgstr "" + +#: js/js.js:765 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:766 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:767 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:768 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:769 +msgid "today" +msgstr "" + +#: js/js.js:770 +msgid "yesterday" +msgstr "" + +#: js/js.js:771 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:772 +msgid "last month" +msgstr "" + +#: js/js.js:773 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:774 +msgid "months ago" +msgstr "" + +#: js/js.js:775 +msgid "last year" +msgstr "" + +#: js/js.js:776 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:180 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:571 +#: js/share.js:583 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 +msgid "Share" +msgstr "" + +#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 +msgid "Shared" +msgstr "" + +#: js/share.js:141 js/share.js:611 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:152 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:159 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:168 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:170 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:175 +msgid "Share with" +msgstr "" + +#: js/share.js:180 +msgid "Share with link" +msgstr "" + +#: js/share.js:183 +msgid "Password protect" +msgstr "" + +#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +msgid "Password" +msgstr "" + +#: js/share.js:189 +msgid "Email link to person" +msgstr "" + +#: js/share.js:190 +msgid "Send" +msgstr "" + +#: js/share.js:194 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:195 +msgid "Expiration date" +msgstr "" + +#: js/share.js:227 +msgid "Share via email:" +msgstr "" + +#: js/share.js:229 +msgid "No people found" +msgstr "" + +#: js/share.js:256 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:292 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:313 +msgid "Unshare" +msgstr "" + +#: js/share.js:325 +msgid "can edit" +msgstr "" + +#: js/share.js:327 +msgid "access control" +msgstr "" + +#: js/share.js:330 +msgid "create" +msgstr "" + +#: js/share.js:333 +msgid "update" +msgstr "" + +#: js/share.js:336 +msgid "delete" +msgstr "" + +#: js/share.js:339 +msgid "share" +msgstr "" + +#: js/share.js:373 js/share.js:558 +msgid "Password protected" +msgstr "" + +#: js/share.js:571 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:583 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:598 +msgid "Sending ..." +msgstr "" + +#: js/share.js:609 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:47 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 templates/installation.php:31 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:26 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/installation.php:36 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:52 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:54 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:61 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:113 +msgid "Database password" +msgstr "" + +#: templates/installation.php:117 +msgid "Database name" +msgstr "" + +#: templates/installation.php:125 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:131 +msgid "Database host" +msgstr "" + +#: templates/installation.php:136 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:33 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:48 +msgid "Log out" +msgstr "" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:41 +msgid "remember" +msgstr "" + +#: templates/login.php:43 +msgid "Log in" +msgstr "" + +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po new file mode 100644 index 00000000000..a162a043f21 --- /dev/null +++ b/l10n/sw_KE/files.po @@ -0,0 +1,300 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:31 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:32 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:33 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:34 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:52 +msgid "Not enough space available" +msgstr "" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "" + +#: js/fileactions.js:117 templates/index.php:85 templates/index.php:86 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:187 +msgid "Rename" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "replace" +msgstr "" + +#: js/filelist.js:208 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "cancel" +msgstr "" + +#: js/filelist.js:253 +msgid "replaced {new_name}" +msgstr "" + +#: js/filelist.js:253 js/filelist.js:255 +msgid "undo" +msgstr "" + +#: js/filelist.js:255 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:280 +msgid "perform delete operation" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:224 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:261 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:261 +msgid "Upload Error" +msgstr "" + +#: js/files.js:278 +msgid "Close" +msgstr "" + +#: js/files.js:297 js/files.js:413 js/files.js:444 +msgid "Pending" +msgstr "" + +#: js/files.js:317 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:320 js/files.js:375 js/files.js:390 +msgid "{count} files uploading" +msgstr "" + +#: js/files.js:393 js/files.js:428 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:502 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:575 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:580 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:953 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:954 templates/index.php:78 +msgid "Size" +msgstr "" + +#: js/files.js:955 templates/index.php:80 +msgid "Modified" +msgstr "" + +#: js/files.js:974 +msgid "1 folder" +msgstr "" + +#: js/files.js:976 +msgid "{count} folders" +msgstr "" + +#: js/files.js:984 +msgid "1 file" +msgstr "" + +#: js/files.js:986 +msgid "{count} files" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Trash" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:59 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:105 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:107 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:112 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:115 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po new file mode 100644 index 00000000000..f168cce6dbb --- /dev/null +++ b/l10n/sw_KE/files_encryption.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/settings-personal.js:17 +msgid "" +"Please switch to your ownCloud client and change your encryption password to" +" complete the conversion." +msgstr "" + +#: js/settings-personal.js:17 +msgid "switched to client side encryption" +msgstr "" + +#: js/settings-personal.js:21 +msgid "Change encryption password to login password" +msgstr "" + +#: js/settings-personal.js:25 +msgid "Please check your passwords and try again." +msgstr "" + +#: js/settings-personal.js:25 +msgid "Could not change your file encryption password to your login password" +msgstr "" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po new file mode 100644 index 00000000000..0c02d8edc5f --- /dev/null +++ b/l10n/sw_KE/files_external.po @@ -0,0 +1,120 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:405 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:406 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:85 +msgid "None set" +msgstr "" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "" + +#: templates/settings.php:95 +msgid "Users" +msgstr "" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po new file mode 100644 index 00000000000..adbbc6c0f03 --- /dev/null +++ b/l10n/sw_KE/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 +msgid "Download" +msgstr "" + +#: templates/public.php:29 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:35 +msgid "web services under your control" +msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po new file mode 100644 index 00000000000..91113e58ba9 --- /dev/null +++ b/l10n/sw_KE/files_trashbin.po @@ -0,0 +1,68 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:126 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:135 +msgid "1 folder" +msgstr "" + +#: js/trash.js:137 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:145 +msgid "1 file" +msgstr "" + +#: js/trash.js:147 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" diff --git a/l10n/sw_KE/files_versions.po b/l10n/sw_KE/files_versions.po new file mode 100644 index 00000000000..1194d23a785 --- /dev/null +++ b/l10n/sw_KE/files_versions.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po new file mode 100644 index 00000000000..2934a40eb6c --- /dev/null +++ b/l10n/sw_KE/lib.po @@ -0,0 +1,156 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:313 +msgid "Help" +msgstr "" + +#: app.php:320 +msgid "Personal" +msgstr "" + +#: app.php:325 +msgid "Settings" +msgstr "" + +#: app.php:330 +msgid "Users" +msgstr "" + +#: app.php:337 +msgid "Apps" +msgstr "" + +#: app.php:339 +msgid "Admin" +msgstr "" + +#: files.php:202 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:203 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:203 files.php:228 +msgid "Back to Files" +msgstr "" + +#: files.php:227 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:226 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:77 +msgid "up to date" +msgstr "" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po new file mode 100644 index 00000000000..ebfabb7d98e --- /dev/null +++ b/l10n/sw_KE/settings.po @@ -0,0 +1,328 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:13 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:84 +msgid "Updating...." +msgstr "" + +#: js/apps.js:87 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:87 +msgid "Error" +msgstr "" + +#: js/apps.js:90 +msgid "Updated" +msgstr "" + +#: js/personal.js:96 +msgid "Saving..." +msgstr "" + +#: personal.php:34 personal.php:35 +msgid "__language_name__" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:24 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:28 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:29 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:31 +msgid "Update" +msgstr "" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:7 +msgid "Forum" +msgstr "" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 +msgid "Password" +msgstr "" + +#: templates/personal.php:24 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:25 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:26 +msgid "Current password" +msgstr "" + +#: templates/personal.php:27 +msgid "New password" +msgstr "" + +#: templates/personal.php:28 +msgid "show" +msgstr "" + +#: templates/personal.php:29 +msgid "Change password" +msgstr "" + +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 +msgid "Email" +msgstr "" + +#: templates/personal.php:56 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:57 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:63 templates/personal.php:64 +msgid "Language" +msgstr "" + +#: templates/personal.php:69 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:74 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:76 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:85 +msgid "Version" +msgstr "" + +#: templates/personal.php:87 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/users.php:21 templates/users.php:79 +msgid "Login Name" +msgstr "" + +#: templates/users.php:26 templates/users.php:82 templates/users.php:107 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:142 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:157 +msgid "Other" +msgstr "" + +#: templates/users.php:84 templates/users.php:121 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:86 +msgid "Storage" +msgstr "" + +#: templates/users.php:97 +msgid "change display name" +msgstr "" + +#: templates/users.php:101 +msgid "set new password" +msgstr "" + +#: templates/users.php:137 +msgid "Default" +msgstr "" + +#: templates/users.php:165 +msgid "Delete" +msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po new file mode 100644 index 00000000000..2ef2872dc3f --- /dev/null +++ b/l10n/sw_KE/user_ldap.po @@ -0,0 +1,309 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:35 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:37 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: 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 "Server configuration" +msgstr "" + +#: templates/settings.php:17 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:21 +msgid "Host" +msgstr "" + +#: templates/settings.php:21 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:22 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:22 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:22 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:23 +msgid "User DN" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"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." +msgstr "" + +#: templates/settings.php:24 +msgid "Password" +msgstr "" + +#: templates/settings.php:24 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:25 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:25 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:25 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:26 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:26 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:26 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:27 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:27 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:27 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:31 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:33 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:33 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:34 +msgid "Port" +msgstr "" + +#: templates/settings.php:35 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:35 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:36 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:37 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:37 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:38 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:38 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:39 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:40 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:40 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:40 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:41 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:43 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:45 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:45 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:46 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:46 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:47 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:47 templates/settings.php:50 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:48 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:48 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:49 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:49 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:50 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:51 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:53 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:56 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:58 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:62 +msgid "Help" +msgstr "" diff --git a/l10n/sw_KE/user_webdavauth.po b/l10n/sw_KE/user_webdavauth.po new file mode 100644 index 00000000000..1e07c21030d --- /dev/null +++ b/l10n/sw_KE/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sw_KE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:7 +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 "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index ff63ed21700..9ba488f449c 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -51,8 +51,9 @@ msgid "No category to add?" msgstr "ą®šąÆ‡ą®°ąÆą®ŖąÆą®Ŗą®¤ą®±ąÆą®•ą®¾ą®© ą®µą®•ąÆˆą®•ą®³ąÆ ą®‡ą®²ąÆą®²ąÆˆą®Æą®¾?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ą®‡ą®ØąÆą®¤ ą®µą®•ąÆˆ ą®ą®±ąÆą®•ą®©ą®µąÆ‡ ą®‰ą®³ąÆą®³ą®¤ąÆ:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -156,59 +157,59 @@ msgstr "ą®•ą®¾ą®°ąÆą®¤ąÆą®¤ą®æą®•ąÆˆ" msgid "December" msgstr "ą®®ą®¾ą®°ąÆą®•ą®“ą®æ" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆą®•ą®³ąÆ" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "ą®šąÆ†ą®•ąÆą®•ą®©ąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 ą®Øą®æą®®ą®æą®Ÿą®¤ąÆą®¤ą®æą®±ąÆą®•ąÆ ą®®ąÆą®©ąÆ " -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{ą®Øą®æą®®ą®æą®Ÿą®™ąÆą®•ą®³ąÆ} ą®Øą®æą®®ą®æą®Ÿą®™ąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ " -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ą®®ą®£ą®æą®¤ąÆą®¤ą®æą®Æą®¾ą®²ą®¤ąÆą®¤ą®æą®±ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{ą®®ą®£ą®æą®¤ąÆą®¤ą®æą®Æą®¾ą®²ą®™ąÆą®•ą®³ąÆ} ą®®ą®£ą®æą®¤ąÆą®¤ą®æą®Æą®¾ą®²ą®™ąÆą®•ą®³ą®æą®±ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "ą®‡ą®©ąÆą®±ąÆ" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ą®ØąÆ‡ą®±ąÆą®±ąÆ" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{ą®Øą®¾ą®ŸąÆą®•ą®³ąÆ} ą®Øą®¾ą®ŸąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ą®•ą®Ÿą®ØąÆą®¤ ą®®ą®¾ą®¤ą®®ąÆ" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{ą®®ą®¾ą®¤ą®™ąÆą®•ą®³ąÆ} ą®®ą®¾ą®¤ą®™ąÆą®•ą®³ą®æą®±ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "ą®®ą®¾ą®¤ą®™ąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "ą®•ą®Ÿą®ØąÆą®¤ ą®µą®°ąÆą®Ÿą®®ąÆ" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "ą®µą®°ąÆą®Ÿą®™ąÆą®•ą®³ąÆą®•ąÆą®•ąÆ ą®®ąÆą®©ąÆ" @@ -496,52 +497,52 @@ msgstr "ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ தரவு ą®…ą®ŸąÆˆą®µąÆ ą®®ą®±ąÆą®±ąÆ msgid "Create an admin account" msgstr " ą®Øą®æą®°ąÆą®µą®¾ą®• ą®•ą®£ą®•ąÆą®•ąÆŠą®©ąÆą®±ąÆˆ ą®‰ą®°ąÆą®µą®¾ą®•ąÆą®•ąÆą®•" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ą®®ąÆ‡ą®®ąÆą®Ŗą®ŸąÆą®Ÿ" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "தரவு ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®±ąÆˆ" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ą®¤ą®°ą®µąÆą®¤ąÆą®¤ą®³ą®¤ąÆą®¤ąÆˆ ą®¤ą®•ą®µą®®ąÆˆą®•ąÆą®•" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ą®Ŗą®Æą®©ąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ą®ŖąÆą®Ŗą®ŸąÆą®®ąÆ" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ą®¤ą®°ą®µąÆą®¤ąÆą®¤ą®³ ą®Ŗą®Æą®©ą®¾ą®³ą®°ąÆ" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ą®¤ą®°ą®µąÆą®¤ąÆą®¤ą®³ ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆ" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ą®¤ą®°ą®µąÆą®¤ąÆą®¤ą®³ ą®ŖąÆ†ą®Æą®°ąÆ" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ą®¤ą®°ą®µąÆą®¤ąÆą®¤ą®³ ą®…ą®ŸąÆą®Ÿą®µą®£ąÆˆ" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ą®¤ą®°ą®µąÆą®¤ąÆą®¤ą®³ ą®“ą®®ąÆą®ŖąÆą®©ą®°ąÆ" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆˆ ą®®ąÆą®Ÿą®æą®•ąÆą®•" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ą®‰ą®™ąÆą®•ą®³ąÆ ą®•ą®ŸąÆą®ŸąÆą®ŖąÆą®Ŗą®¾ą®ŸąÆą®Ÿą®æą®©ąÆ ą®•ąÆ€ą®“ąÆ ą®‡ą®£ąÆˆą®Æ ą®šąÆ‡ą®µąÆˆą®•ą®³ąÆ" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ą®µą®æą®ŸąÆą®Ŗą®¤ą®æą®•ąÆˆ ą®šąÆ†ą®ÆąÆą®•" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 885b8e84a2c..731846dde06 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index ed417e58282..971b58bc8e7 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "வரலாறு" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ą®•ąÆ‹ą®ŖąÆą®ŖąÆ ą®Ŗą®¤ą®æą®ŖąÆą®ŖąÆą®•ą®³ąÆ" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index c9b1c2c58d4..9e62a4a67e3 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "TLS ஐ ą®Ŗą®Æą®©ąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ą®µąÆą®®ąÆ" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSL ą®‡ą®£ąÆˆą®ŖąÆą®Ŗą®æą®±ąÆą®•ąÆ ą®Ŗą®Æą®©ąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ą®µąÆ‡ą®£ąÆą®Ÿą®¾ą®®ąÆ, அது ą®¤ąÆ‹ą®²ąÆą®µą®æą®Æą®ŸąÆˆą®ÆąÆą®®ąÆ." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7d0512dba9f..3a8f4a8e310 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -50,7 +50,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -155,59 +156,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -495,52 +496,52 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 82ec8fdc4c0..8001fbb9976 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4065f83e88e..a010d44fbe6 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 70f6f01fe7e..9bbd85959f6 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index fdaa852edca..ea35c3e599f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index bf75a1b15d4..bc847b3f490 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,16 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index c15d3679e26..2180d45328b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,10 +17,45 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index d9cae265edb..c9ebd00c353 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index bd244208d59..cfb1d6b76b6 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index f26771344ba..8bec0494671 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -212,7 +212,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index af5e2100c2e..f951536fe95 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 967a5a57f61..298a31b71ab 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "ą¹„ąø”ą¹ˆąø”ąøµąø«ąø”ąø§ąø”ąø«ąø”ąø¹ą¹ˆąø—ąøµą¹ˆąø•ą¹‰ąø­ąø‡ąøąø²ąø£ą¹€ąøžąø“ą¹ˆąø”?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ąø«ąø”ąø§ąø”ąø«ąø”ąø¹ą¹ˆąø™ąøµą¹‰ąø”ąøµąø­ąø¢ąø¹ą¹ˆą¹ąø„ą¹‰ąø§: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "ąøžąø¤ąøØąøˆąø“ąøąø²ąø¢ąø™" msgid "December" msgstr "ąø˜ąø±ąø™ąø§ąø²ąø„ąø”" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ąø•ąø±ą¹‰ąø‡ąø„ą¹ˆąø²" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "วณนาที ąøą¹ˆąø­ąø™ąø«ąø™ą¹‰ąø²ąø™ąøµą¹‰" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 ąø™ąø²ąø—ąøµąøą¹ˆąø­ąø™ąø«ąø™ą¹‰ąø²ąø™ąøµą¹‰" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} ąø™ąø²ąø—ąøµąøą¹ˆąø­ąø™ąø«ąø™ą¹‰ąø²ąø™ąøµą¹‰" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 ąøŠąø±ą¹ˆąø§ą¹‚ąø”ąø‡ąøą¹ˆąø­ąø™ąø«ąø™ą¹‰ąø²ąø™ąøµą¹‰" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} ąøŠąø±ą¹ˆąø§ą¹‚ąø”ąø‡ąøą¹ˆąø­ąø™ąø«ąø™ą¹‰ąø²ąø™ąøµą¹‰" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "วันนี้" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "ą¹€ąø”ąø·ą¹ˆąø­ąø§ąø²ąø™ąø™ąøµą¹‰" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{day} ąø§ąø±ąø™ąøą¹ˆąø­ąø™ąø«ąø™ą¹‰ąø²ąø™ąøµą¹‰" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "ą¹€ąø”ąø·ąø­ąø™ąø—ąøµą¹ˆą¹ąø„ą¹‰ąø§" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} ą¹€ąø”ąø·ąø­ąø™ąøą¹ˆąø­ąø™ąø«ąø™ą¹‰ąø²ąø™ąøµą¹‰" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "เดือน ąø—ąøµą¹ˆąøœą¹ˆąø²ąø™ąø”ąø²" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "ąø›ąøµąø—ąøµą¹ˆą¹ąø„ą¹‰ąø§" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "ปี ąø—ąøµą¹ˆąøœą¹ˆąø²ąø™ąø”ąø²" @@ -497,52 +498,52 @@ msgstr "ą¹„ąø”ą¹€ąø£ą¹‡ąøąø—ąø­ąø£ąøµą¹ˆąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹ąø„ąø°ą¹„ąøŸąø„ą¹Œ msgid "Create an admin account" msgstr "สร้าง ąøšąø±ąøąøŠąøµąøœąø¹ą¹‰ąø”ąø¹ą¹ąø„ąø£ąø°ąøšąøš" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ขั้นสูง" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ą¹‚ąøŸąø„ą¹€ąø”ąø­ąø£ą¹Œą¹€ąøą¹‡ąøšąø‚ą¹‰ąø­ąø”ąø¹ąø„" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ąøąø³ąø«ąø™ąø”ąø„ą¹ˆąø²ąøąø²ąø™ąø‚ą¹‰ąø­ąø”ąø¹ąø„" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "ąøˆąø°ąø–ąø¹ąøą¹ƒąøŠą¹‰" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ąøŠąø·ą¹ˆąø­ąøœąø¹ą¹‰ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ąøąø²ąø™ąø‚ą¹‰ąø­ąø”ąø¹ąø„" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ąøąø²ąø™ąø‚ą¹‰ąø­ąø”ąø¹ąø„" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ąøŠąø·ą¹ˆąø­ąøąø²ąø™ąø‚ą¹‰ąø­ąø”ąø¹ąø„" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ąøžąø·ą¹‰ąø™ąø—ąøµą¹ˆąø•ąø²ąø£ąø²ąø‡ą¹ƒąø™ąøąø²ąø™ąø‚ą¹‰ąø­ąø”ąø¹ąø„" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Database host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "ąø•ąø“ąø”ąø•ąø±ą¹‰ąø‡ą¹€ąø£ąøµąø¢ąøšąø£ą¹‰ąø­ąø¢ą¹ąø„ą¹‰ąø§" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "web services under your control" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "ออกจากระบบ" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 0232d63d0bc..45c363a10ad 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,16 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "ąø”ąø³ą¹€ąø™ąø“ąø™ąøąø²ąø£ąø„ąø·ąø™ąø„ą¹ˆąø²" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index c36c1b5941b..4d724184b1c 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ประวัตณ" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ąøąø²ąø£ąøąø³ąø«ąø™ąø”ą¹€ąø§ąø­ąø£ą¹ŒąøŠąø±ą¹ˆąø™ąø‚ąø­ąø‡ą¹„ąøŸąø„ą¹Œ" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 549b4b971bc..3d906030931 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-04 00:05+0100\n" -"PO-Revision-Date: 2013-02-03 04:40+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "ą¹ƒąøŠą¹‰ TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "ąøąø£ąøøąø“ąø²ąø­ąø¢ą¹ˆąø²ą¹ƒąøŠą¹‰ąøąø²ąø£ą¹€ąøŠąø·ą¹ˆąø­ąø”ąø•ą¹ˆąø­ą¹ąøšąøš SSL ąøąø²ąø£ą¹€ąøŠąø·ą¹ˆąø­ąø”ąø•ą¹ˆąø­ąøˆąø°ą¹€ąøąø“ąø”ąøąø²ąø£ąø„ą¹‰ąø”ą¹€ąø«ąø„ąø§" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index f11dd8854ee..50afbad8847 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "Eklenecek kategori yok?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Bu kategori zaten mevcut: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "saniye ƶnce" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 dakika ƶnce" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} dakika ƶnce" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 saat ƶnce" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} saat ƶnce" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "bugün" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "dün" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} gün ƶnce" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "geƧen ay" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} ay ƶnce" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "ay ƶnce" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "geƧen yıl" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "yıl ƶnce" @@ -500,52 +501,52 @@ msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden e msgid "Create an admin account" msgstr "Bir yƶnetici hesabı oluşturun" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "Gelişmiş" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Veri klasƶrü" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Kurulumu tamamla" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "kontrolünüzdeki web servisleri" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Ƈıkış yap" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index af04cb45496..fff563d2bf9 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 6f30f6794a2..73c00cd9cf1 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "GeƧmiş" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Dosya Sürümleri" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 6a5f2430b1c..8cdf1507e90 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "TLS kullan" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "SSL bağlantıları ile kullanmayın, başarısız olacaktır." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 60d1f1f6f1d..521c5435fd0 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,12 +8,13 @@ # Soul Kim , 2012. # , 2012. # , 2013. +# пан ВолоГимир , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -55,8 +56,9 @@ msgid "No category to add?" msgstr "Š’Ń–Š“ŃŃƒŃ‚Š½Ń– категорії Š“Š»Ń Š“Š¾Š“Š°Š²Š°Š½Š½Ń?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Š¦Ń ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€Ń–Ń вже Ń–ŃŠ½ŃƒŃ”: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +162,59 @@ msgstr "ЛистопаГ" msgid "December" msgstr "Š“Ń€ŃƒŠ“ŠµŠ½ŃŒ" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "секунГи Ń‚Š¾Š¼Ńƒ" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 Ń…Š²ŠøŠ»ŠøŠ½Ńƒ Ń‚Š¾Š¼Ńƒ" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин Ń‚Š¾Š¼Ńƒ" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 гоГину Ń‚Š¾Š¼Ńƒ" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} гоГини Ń‚Š¾Š¼Ńƒ" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "ŃŃŒŠ¾Š³Š¾Š“Š½Ń–" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "вчора" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} Гнів Ń‚Š¾Š¼Ńƒ" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "минулого Š¼Ń–ŃŃŃ†Ń" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} Š¼Ń–ŃŃŃ†Ń–Š² Ń‚Š¾Š¼Ńƒ" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "Š¼Ń–ŃŃŃ†Ń– Ń‚Š¾Š¼Ńƒ" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "минулого Ń€Š¾ŠŗŃƒ" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "роки Ń‚Š¾Š¼Ńƒ" @@ -261,7 +263,7 @@ msgstr "ŠŸŠ¾Š“Ń–Š»ŠøŃ‚ŠøŃŃ" #: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 msgid "Shared" -msgstr "" +msgstr "ŠžŠæŃƒŠ±Š»Ń–ŠŗŠ¾Š²Š°Š½Š¾" #: js/share.js:141 js/share.js:611 msgid "Error while sharing" @@ -384,11 +386,11 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "ŠžŠ½Š¾Š²Š»ŠµŠ½Š½Ń виконалось Š½ŠµŃƒŃŠæŃ–ŃˆŠ½Š¾. Š‘ŃƒŠ“ŃŒ ласка, повіГомте про цю ŠæŃ€Š¾Š±Š»ŠµŠ¼Ńƒ в ŃŠæŃ–Š»ŃŒŠ½Š¾Ń‚Ń– ownCloud." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "ŠžŠ½Š¾Š²Š»ŠµŠ½Š½Ń виконалось ŃƒŃŠæŃ–ŃˆŠ½Š¾. ŠŸŠµŃ€ŠµŠ½Š°ŠæŃ€Š°Š²Š»ŃŃ”Š¼Š¾ вас на ownCloud." #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -500,52 +502,52 @@ msgstr "Š’Š°Ńˆ каталог Š· Ганими та Š’Š°ŃˆŃ– файли можл msgid "Create an admin account" msgstr "Дтворити обліковий запис аГміністратора" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "ДоГатково" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ŠšŠ°Ń‚Š°Š»Š¾Š³ Ганих" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń бази Ганих" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "буГе використано" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ŠšŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡ бази Ганих" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ŠŸŠ°Ń€Š¾Š»ŃŒ Š“Š»Ń бази Ганих" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ŠŠ°Š·Š²Š° бази Ганих" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "Š¢Š°Š±Š»ŠøŃ†Ń бази Ганих" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Єост бази Ганих" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "Š—Š°Š²ŠµŃ€ŃˆŠøŃ‚Šø Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "веб-сервіс піГ вашим контролем" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Š’ŠøŃ…Ń–Š“" @@ -577,7 +579,7 @@ msgstr "Š’Ń…Ń–Š“" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "ŠŠ»ŃŒŃ‚ŠµŃ€Š½Š°Ń‚ŠøŠ²Š½Ń– Логіни" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 021cefdc45f..41bc646d242 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -6,13 +6,14 @@ # , 2012. # , 2012. # Soul Kim , 2012. +# пан ВолоГимир , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"PO-Revision-Date: 2013-02-07 15:20+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,11 +58,11 @@ msgstr "ŠŠµŠ²Š“Š°Š»Š¾ŃŃ записати на Гиск" #: ajax/upload.php:52 msgid "Not enough space available" -msgstr "" +msgstr "ŠœŃ–ŃŃ†Ń Š±Ń–Š»ŃŒŃˆŠµ немає" #: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "ŠŠµŠ²Ń–Ń€Š½ŠøŠ¹ каталог." #: appinfo/app.php:10 msgid "Files" @@ -73,7 +74,7 @@ msgstr "Заборонити Š“Š¾ŃŃ‚ŃƒŠæ" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "ВиГалити назавжГи" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" @@ -113,15 +114,15 @@ msgstr "замінено {new_name} на {old_name}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "виконати Š¾ŠæŠµŃ€Š°Ń†Ń–ŃŽ Š²ŠøŠ“Š°Š»ŠµŠ½Š½Ń" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' це невірне ім'я Ń„Š°Š¹Š»Ńƒ." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr " Ім'я Ń„Š°Š¹Š»Ńƒ не може Š±ŃƒŃ‚Šø порожнім." #: js/files.js:64 msgid "" @@ -131,17 +132,17 @@ msgstr "ŠŠµŠ²Ń–Ń€Š½Šµ ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '* #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Š’Š°ŃˆŠµ сховище переповнене, файли Š±Ń–Š»ŃŒŃˆŠµ не Š¼Š¾Š¶ŃƒŃ‚ŃŒ Š±ŃƒŃ‚Šø оновлені або синхронізовані !" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Š’Š°ŃˆŠµ сховище майже повне ({usedSpacePercent}%)" #: js/files.js:224 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Š’Š°ŃˆŠµ Š·Š°Š²Š°Š½Ń‚Š°Š¶ŠµŠ½Š½Ń Š³Š¾Ń‚ŃƒŃ”Ń‚ŃŒŃŃ. Це може Š·Š°Š¹Š½ŃŃ‚Šø Š“ŠµŃŠŗŠøŠ¹ час, ŃŠŗŃ‰Š¾ файли завеликі." #: js/files.js:261 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -182,7 +183,7 @@ msgstr "URL не може Š±ŃƒŃ‚Šø ŠæŃƒŃŃ‚ŠøŠ¼." #: js/files.js:580 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "ŠŠµŠ²Ń–Ń€Š½Šµ ім'я теки. Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š°Š½Š½Ń \"Shared\" зарезервовано Owncloud" #: js/files.js:953 templates/index.php:67 msgid "Name" @@ -266,7 +267,7 @@ msgstr "Š— ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "Дмітник" #: templates/index.php:46 msgid "Cancel upload" @@ -300,4 +301,4 @@ msgstr "ŠŸŠ¾Ń‚Š¾Ń‡Š½Šµ ŃŠŗŠ°Š½ŃƒŠ²Š°Š½Š½Ń" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "ŠžŠ½Š¾Š²Š»ŠµŠ½Š½Ń кеша файлової системи..." diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 299cd809b97..b33723c8702 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 1a8bb981db6..a511f9ae557 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Š†ŃŃ‚Š¾Ń€Ń–Ń" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "Версії файлів" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 7d6f148c4e1..1646712c697 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -6,13 +6,14 @@ # , 2012. # , 2012. # , 2012-2013. +# пан ВолоГимир , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 15:20+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +32,7 @@ msgstr "Помилка автентифікації" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ змінити зображене ім'я" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -85,11 +86,11 @@ msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ виГалити ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š° Ń–Š· Š³Ń€Ńƒ #: ajax/updateapp.php:13 msgid "Couldn't update app." -msgstr "" +msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ оновити ŠæŃ€Š¾Š³Ń€Š°Š¼Ńƒ. " #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "ŠžŠ½Š¾Š²ŠøŃ‚Šø Го {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -101,15 +102,15 @@ msgstr "Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šø" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Зачекайте, буГь ласка..." #: js/apps.js:84 msgid "Updating...." -msgstr "" +msgstr "ŠžŠ½Š¾Š²Š»ŃŽŃ”Ń‚ŃŒŃŃ..." #: js/apps.js:87 msgid "Error while updating app" -msgstr "" +msgstr "Помилка при оновленні програми" #: js/apps.js:87 msgid "Error" @@ -117,7 +118,7 @@ msgstr "Помилка" #: js/apps.js:90 msgid "Updated" -msgstr "" +msgstr "ŠžŠ½Š¾Š²Š»ŠµŠ½Š¾" #: js/personal.js:96 msgid "Saving..." @@ -226,19 +227,19 @@ msgstr "Змінити ŠæŠ°Ń€Š¾Š»ŃŒ" #: templates/personal.php:41 templates/users.php:80 msgid "Display Name" -msgstr "" +msgstr "ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚Šø Ім'я" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "Š’Š°ŃˆŠµ ім'я було змінене" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "ŠŠµŠ¼Š¾Š¶Š»ŠøŠ²Š¾ змінити ваше зображене ім'я" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "Змінити зображене ім'я" #: templates/personal.php:55 msgid "Email" @@ -284,7 +285,7 @@ msgstr "Розроблено , 2012. # , 2012. +# пан ВолоГимир , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -21,23 +22,23 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ виГалити ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–ŃŽ сервера" #: ajax/testConfiguration.php:35 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "ŠšŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń вірна і зв'ŃŠ·Š¾Šŗ може Š±ŃƒŃ‚Šø встановлений ​​!" #: ajax/testConfiguration.php:37 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "ŠšŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń вірна, але встановити зв'ŃŠ·Š¾Šŗ не Š²Š“Š°Š»Š¾ŃŃ. Š‘ŃƒŠ“ŃŒ ласка, перевірте Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń сервера і облікові Гані." #: ajax/testConfiguration.php:40 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "ŠšŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń невірна. ŠŸŠ¾Š“Ń€Š¾Š±ŠøŃ†Ń– ŠæŠ¾Š“ŠøŠ²Ń–Ń‚ŃŒŃŃ, буГь ласка, в Š¶ŃƒŃ€Š½Š°Š»Ń– ownCloud." #: js/settings.js:66 msgid "Deletion failed" @@ -45,31 +46,31 @@ msgstr "Š’ŠøŠ“Š°Š»ŠµŠ½Š½Ń не було виконано" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Š—Š°ŃŃ‚Š¾ŃŃƒŠ²Š°Ń‚Šø Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Š· Š¾ŃŃ‚Š°Š½Š½ŃŒŠ¾Ń— ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń— сервера ?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Зберегти Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń ?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "ŠŠµŠ¼Š¾Š¶Š»ŠøŠ²Š¾ ГоГати ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–ŃŽ сервера" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "ŠŸŠµŃ€ŠµŠ²Ń–Ń€ŠŗŠ° Š·'Ń”Š“Š½Š°Š½Š½Ń ŠæŃ€Š¾Š¹ŃˆŠ»Š° ŃƒŃŠæŃ–ŃˆŠ½Š¾" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "ŠŸŠµŃ€ŠµŠ²Ń–Ń€ŠŗŠ° Š·'Ń”Š“Š½Š°Š½Š½Ń Š·Š°Š²ŠµŃ€ŃˆŠøŠ»Š°ŃŃŒ Š½ŠµŃƒŃŠæŃ–ŃˆŠ½Š¾" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Š’Šø Гійсно бажаєте виГалити ŠæŠ¾Ń‚Š¾Ń‡Š½Ńƒ ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–ŃŽ сервера ?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "ŠŸŃ–Š“Ń‚Š²ŠµŃ€Š“Ń–Ń‚ŃŒ Š’ŠøŠ“Š°Š»ŠµŠ½Š½Ń" #: templates/settings.php:8 msgid "" @@ -82,15 +83,15 @@ msgstr "Увага: Š—Š°ŃŃ‚Š¾ŃŃƒŠ½ŠŗŠø user_ldap та user_webdavauth msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Увага: ŠŸŠ¾Ń‚Ń€Ń–Š±Š½ŠøŠ¹ моГуль PHP LDAP не встановлено, базова програма ŠæŃ€Š°Ń†ŃŽŠ²Š°Ń‚Šø не буГе. Š‘ŃƒŠ“ŃŒ ласка, Š·Š²ŠµŃ€Š½Ń–Ń‚ŃŒŃŃ Го системного аГміністратора, щоб встановити його." #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Дервера" #: templates/settings.php:17 msgid "Add Server Configuration" -msgstr "" +msgstr "ДоГати Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Дервера" #: templates/settings.php:21 msgid "Host" @@ -107,7 +108,7 @@ msgstr "Базовий DN" #: templates/settings.php:22 msgid "One Base DN per line" -msgstr "" +msgstr "ŠžŠ“ŠøŠ½ Base DN на оГній строчці" #: templates/settings.php:22 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -178,11 +179,11 @@ msgstr "" #: templates/settings.php:33 msgid "Configuration Active" -msgstr "" +msgstr "ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń Активне" #: templates/settings.php:33 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Якщо \"галочка\" Š·Š½ŃŃ‚Š°, ця ŠŗŠ¾Š½Ń„Ń–Š³ŃƒŃ€Š°Ń†Ń–Ń буГе ŠæŃ€Š¾ŠæŃƒŃ‰ŠµŠ½Š°." #: templates/settings.php:34 msgid "Port" @@ -215,8 +216,8 @@ msgid "Use TLS" msgstr "Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŠ¹Ń‚Šµ TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "ŠŠµ Š²ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŠ¹Ń‚Šµ його Š“Š»Ń SSL Š·'Ń”Š“Š½Š°Š½ŃŒ, це не буГе виконано." +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" @@ -258,7 +259,7 @@ msgstr "ŠžŃŠ½Š¾Š²Š½Šµ Дерево ŠšŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Ń–Š²" #: templates/settings.php:46 msgid "One User Base DN per line" -msgstr "" +msgstr "ŠžŠ“ŠøŠ½ ŠšŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡ Base DN на оГній строчці" #: templates/settings.php:47 msgid "User Search Attributes" @@ -282,7 +283,7 @@ msgstr "ŠžŃŠ½Š¾Š²Š½Šµ Дерево Š“Ń€ŃƒŠæ" #: templates/settings.php:49 msgid "One Group Base DN per line" -msgstr "" +msgstr "ŠžŠ“Š½Š° Š“Ń€ŃƒŠæŠ° Base DN на оГній строчці" #: templates/settings.php:50 msgid "Group Search Attributes" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 643d941604a..e91f52f0233 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "KhĆ“ng có danh mỄc được thĆŖm?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "Danh mỄc nĆ y đã được tįŗ”o :" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "ThĆ”ng 11" msgid "December" msgstr "ThĆ”ng 12" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "CĆ i đặt" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "vĆ i giĆ¢y trước" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 phĆŗt trước" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} phĆŗt trước" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 giį» trước" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} giį» trước" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "hĆ“m nay" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "hĆ“m qua" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} ngĆ y trước" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "thĆ”ng trước" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} thĆ”ng trước" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "thĆ”ng trước" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "năm trước" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "năm trước" @@ -500,52 +501,52 @@ msgstr "Thʰ mỄc dữ liệu vĆ  những tįŗ­p tin cį»§a bįŗ”n có thể dį»… msgid "Create an admin account" msgstr "Tįŗ”o mį»™t tĆ i khoįŗ£n quįŗ£n trị" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "NĆ¢ng cao" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "Thʰ mỄc dữ liệu" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "Cįŗ„u hƬnh cĘ” sở dữ liệu" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "được sį»­ dỄng" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "NgĘ°į»i dùng cĘ” sở dữ liệu" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "Mįŗ­t khįŗ©u cĘ” sở dữ liệu" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "TĆŖn cĘ” sở dữ liệu" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "CĘ” sở dữ liệu tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "Database host" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "CĆ i đặt hoĆ n tįŗ„t" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "cĆ”c dịch vỄ web dưới sį»± kiểm soĆ”t cį»§a bįŗ”n" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "Đăng xuįŗ„t" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 4882b64008b..3d2b604621f 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index 4de9dbf8467..9ebe3a80d4b 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -9,8 +9,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -19,10 +19,45 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "Lịch sį»­" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "PhiĆŖn bįŗ£n tįŗ­p tin" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index d067549c1d8..fb97cfd9a49 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "Sį»­ dỄng TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "Kįŗæt nối SSL bị lį»—i. " +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 4a6e721e77f..606efa2b5f0 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -52,8 +52,9 @@ msgid "No category to add?" msgstr "ę²”ęœ‰åˆ†ē±»ę·»åŠ äŗ†?" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "čæ™äøŖåˆ†ē±»å·²ē»å­˜åœØäŗ†:" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -157,59 +158,59 @@ msgstr "åäø€ęœˆ" msgid "December" msgstr "åäŗŒęœˆ" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "设置" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "ē§’å‰" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "今天" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "昨天" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "上个月" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "ęœˆå‰" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "去幓" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "幓前" @@ -497,52 +498,52 @@ msgstr "ę‚Øēš„ę•°ę®ę–‡ä»¶å¤¹å’Œę‚Øēš„ę–‡ä»¶ęˆ–č®øčƒ½å¤Ÿä»Žäŗ’č”ē½‘č®æé—®ć€‚own msgid "Create an admin account" msgstr "建立一个 ē®”ē†åøęˆ·" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "čæ›é˜¶" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ę•°ę®å­˜ę”¾ę–‡ä»¶å¤¹" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "é…ē½®ę•°ę®åŗ“" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "å°†ä¼šä½æē”Ø" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ę•°ę®åŗ“ē”Øęˆ·" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ę•°ę®åŗ“åÆ†ē " -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ę•°ę®åŗ“ē”Øęˆ·å" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ę•°ę®åŗ“č”Øę ¼ē©ŗé—“" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ę•°ę®åŗ“äø»ęœŗ" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "å®Œęˆå®‰č£…" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ä½ ęŽ§åˆ¶äø‹ēš„ē½‘ē»œęœåŠ”" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 9add0d0faa9..cc9c96f2f06 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 7676ba278c2..97402cab1a7 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "历史" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ę–‡ä»¶ē‰ˆęœ¬" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index bc915483e99..f85d4abe78f 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -214,8 +214,8 @@ msgid "Use TLS" msgstr "使用 TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "äøč¦ä½æē”Øå®ƒčæ›č”Œ SSL čæžęŽ„ļ¼Œä¼šå¤±č“„ēš„ć€‚" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 6070c36097c..8c56c6c8d35 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -56,8 +56,9 @@ msgid "No category to add?" msgstr "ę²”ęœ‰åÆę·»åŠ åˆ†ē±»ļ¼Ÿ" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ę­¤åˆ†ē±»å·²å­˜åœØ: " +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -161,59 +162,59 @@ msgstr "åäø€ęœˆ" msgid "December" msgstr "åäŗŒęœˆ" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "设置" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "ē§’å‰" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "äø€åˆ†é’Ÿå‰" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1å°ę—¶å‰" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} å°ę—¶å‰" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "今天" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "昨天" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "上月" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} ęœˆå‰" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "ęœˆå‰" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "去幓" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "幓前" @@ -501,52 +502,52 @@ msgstr "ę‚Øēš„ę•°ę®ę–‡ä»¶å¤¹å’Œę–‡ä»¶åÆē”±äŗ’č”ē½‘č®æé—®ć€‚OwnCloudęä¾›ēš„. msgid "Create an admin account" msgstr "åˆ›å»ŗē®”ē†å‘˜č“¦å·" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "高级" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "ę•°ę®ē›®å½•" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "é…ē½®ę•°ę®åŗ“" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "ę•°ę®åŗ“ē”Øęˆ·" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "ę•°ę®åŗ“åÆ†ē " -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "ę•°ę®åŗ“å" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "ę•°ę®åŗ“č”Øē©ŗé—“" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "ę•°ę®åŗ“äø»ęœŗ" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "å®‰č£…å®Œęˆ" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ē”±ę‚ØęŽŒęŽ§ēš„ē½‘ē»œęœåŠ”" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "注销" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 151921754f6..2d95abe67ee 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index 8427a53caaf..fef8172901c 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "历史" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ę–‡ä»¶ē‰ˆęœ¬" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 18eef3d02f9..1f5920201f9 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -215,8 +215,8 @@ msgid "Use TLS" msgstr "使用TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." -msgstr "äøč¦åœØSSLé“¾ęŽ„äø­ä½æē”Øę­¤é€‰é”¹ļ¼Œä¼šåÆ¼č‡“å¤±č“„ć€‚" +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index a61b851c754..e4d1dbff0f5 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -51,7 +51,8 @@ msgid "No category to add?" msgstr "" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " +#, php-format +msgid "This category already exists: %s" msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 @@ -156,59 +157,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "" @@ -496,52 +497,52 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 61f53da0ef3..4d462824758 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index 4859a33c5a0..0b4229496a9 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/files_versions.po @@ -7,8 +7,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,10 +17,45 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index cda8b305dea..3d9f862dc9b 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -213,7 +213,7 @@ msgid "Use TLS" msgstr "" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 5886158a82d..deae8c747b7 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:10+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -55,8 +55,9 @@ msgid "No category to add?" msgstr "ę²’ęœ‰åÆå¢žåŠ ēš„åˆ†é”žļ¼Ÿ" #: ajax/vcategories/add.php:37 -msgid "This category already exists: " -msgstr "ę­¤åˆ†é”žå·²ē¶“å­˜åœØļ¼š" +#, php-format +msgid "This category already exists: %s" +msgstr "" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -160,59 +161,59 @@ msgstr "åäø€ęœˆ" msgid "December" msgstr "åäŗŒęœˆ" -#: js/js.js:280 +#: js/js.js:284 msgid "Settings" msgstr "設定" -#: js/js.js:760 +#: js/js.js:764 msgid "seconds ago" msgstr "å¹¾ē§’å‰" -#: js/js.js:761 +#: js/js.js:765 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:762 +#: js/js.js:766 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:763 +#: js/js.js:767 msgid "1 hour ago" msgstr "1 å€‹å°ę™‚å‰" -#: js/js.js:764 +#: js/js.js:768 msgid "{hours} hours ago" msgstr "{hours} å°ę™‚å‰" -#: js/js.js:765 +#: js/js.js:769 msgid "today" msgstr "今天" -#: js/js.js:766 +#: js/js.js:770 msgid "yesterday" msgstr "昨天" -#: js/js.js:767 +#: js/js.js:771 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:768 +#: js/js.js:772 msgid "last month" msgstr "äøŠå€‹ęœˆ" -#: js/js.js:769 +#: js/js.js:773 msgid "{months} months ago" msgstr "{months} å€‹ęœˆå‰" -#: js/js.js:770 +#: js/js.js:774 msgid "months ago" msgstr "å¹¾å€‹ęœˆå‰" -#: js/js.js:771 +#: js/js.js:775 msgid "last year" msgstr "去幓" -#: js/js.js:772 +#: js/js.js:776 msgid "years ago" msgstr "幾幓前" @@ -500,52 +501,52 @@ msgstr "ę‚Øēš„č³‡ę–™ē›®éŒ„ (Data Directory) å’ŒęŖ”ę”ˆåÆčƒ½åÆä»„ē”±ē¶²éš›ē¶²č·Æ msgid "Create an admin account" msgstr "å»ŗē«‹äø€å€‹ē®”ē†č€…åø³č™Ÿ" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Advanced" msgstr "進階" -#: templates/installation.php:52 +#: templates/installation.php:54 msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:59 +#: templates/installation.php:61 msgid "Configure the database" msgstr "čØ­å®šč³‡ę–™åŗ«" -#: templates/installation.php:64 templates/installation.php:75 -#: templates/installation.php:85 templates/installation.php:95 +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 msgid "will be used" msgstr "å°‡ęœƒä½æē”Ø" -#: templates/installation.php:107 +#: templates/installation.php:109 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:111 +#: templates/installation.php:113 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:115 +#: templates/installation.php:117 msgid "Database name" msgstr "č³‡ę–™åŗ«åēØ±" -#: templates/installation.php:123 +#: templates/installation.php:125 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:129 +#: templates/installation.php:131 msgid "Database host" msgstr "č³‡ę–™åŗ«äø»ę©Ÿ" -#: templates/installation.php:134 +#: templates/installation.php:136 msgid "Finish setup" msgstr "完成設定" -#: templates/layout.guest.php:34 +#: templates/layout.guest.php:33 msgid "web services under your control" msgstr "ē¶²č·Æęœå‹™åœØę‚ØęŽ§åˆ¶ä¹‹äø‹" -#: templates/layout.user.php:49 +#: templates/layout.user.php:48 msgid "Log out" msgstr "登出" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 0f6d6a4b1fe..ffbd5fd24ea 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:09+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,16 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" msgstr "" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 1d41bf764bc..2855967dae2 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -8,8 +8,8 @@ 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" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,45 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + #: js/versions.js:16 msgid "History" msgstr "ę­·å²" +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + #: templates/settings.php:3 msgid "Files Versioning" msgstr "ęŖ”ę”ˆē‰ˆęœ¬åŒ–äø­..." diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index f6b4543db19..89db84884a7 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 23:05+0000\n" +"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"PO-Revision-Date: 2013-02-07 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -214,7 +214,7 @@ msgid "Use TLS" msgstr "使用TLS" #: templates/settings.php:38 -msgid "Do not use it for SSL connections, it will fail." +msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" #: templates/settings.php:39 diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index e5df7b4ecde..301ead2802d 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,6 +1,7 @@ "No s'ha pogut carregar la llista des de l'App Store", "Authentication error" => "Error d'autenticació", +"Unable to change display name" => "No s'ha pogut canviar el nom a mostrar", "Group already exists" => "El grup ja existeix", "Unable to add group" => "No es pot afegir el grup", "Could not enable app. " => "No s'ha pogut activar l'apliació", @@ -49,6 +50,9 @@ "show" => "mostra", "Change password" => "Canvia la contrasenya", "Display Name" => "Nom a mostrar", +"Your display name was changed" => "El vostre nom a mostrar ha canviat", +"Unable to change your display name" => "No s'ha pogut canviar el vostre nom a mostrar", +"Change display name" => "Canvia el nom a mostrar", "Email" => "Correu electrònic", "Your email address" => "Correu electrònic", "Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 91c7c481158..30f44dfefc6 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,6 +1,7 @@ "Nelze načƭst seznam z App Store", "Authentication error" => "Chyba ověřenĆ­", +"Unable to change display name" => "Nelze změnit zobrazovanĆ© jmĆ©no", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", "Could not enable app. " => "Nelze povolit aplikaci.", @@ -49,6 +50,9 @@ "show" => "zobrazit", "Change password" => "Změnit heslo", "Display Name" => "ZobrazovanĆ© jmĆ©no", +"Your display name was changed" => "VaÅ”e zobrazovanĆ© jmĆ©no bylo změněno", +"Unable to change your display name" => "Nelze změnit vaÅ”e zobrazovanĆ© jmĆ©no", +"Change display name" => "Změnit zobrazovanĆ© jmĆ©no", "Email" => "E-mail", "Your email address" => "VaÅ”e e-mailovĆ” adresa", "Fill in an email address to enable password recovery" => "Pro povolenĆ­ změny hesla vyplňte adresu e-mailu", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 463ccdbd152..ab8c791bbe0 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -1,6 +1,7 @@ "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Fehler bei der Anmeldung", +"Unable to change display name" => "Das Ƅndern des Anzeigenamens ist nicht mƶglich", "Group already exists" => "Die Gruppe existiert bereits", "Unable to add group" => "Die Gruppe konnte nicht angelegt werden", "Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", @@ -49,6 +50,9 @@ "show" => "zeigen", "Change password" => "Passwort Ƥndern", "Display Name" => "Anzeigename", +"Your display name was changed" => "Dein Anzeigename wurde geƤndert", +"Unable to change your display name" => "Das Ƅndern deines Anzeigenamens ist nicht mƶglich", +"Change display name" => "Anzeigenamen Ƥndern", "Email" => "E-Mail", "Your email address" => "Ihre E-Mail-Adresse", "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 2af86155080..7f860f69edc 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,6 +1,7 @@ "Impossibile caricare l'elenco dall'App Store", "Authentication error" => "Errore di autenticazione", +"Unable to change display name" => "Impossibile cambiare il nome visualizzato", "Group already exists" => "Il gruppo esiste giĆ ", "Unable to add group" => "Impossibile aggiungere il gruppo", "Could not enable app. " => "Impossibile abilitare l'applicazione.", @@ -49,6 +50,9 @@ "show" => "mostra", "Change password" => "Modifica password", "Display Name" => "Nome visualizzato", +"Your display name was changed" => "Il tuo nome visualizzato ĆØ stato cambiato", +"Unable to change your display name" => "Impossibile cambiare il tuo nome visualizzato", +"Change display name" => "Cambia il nome visualizzato", "Email" => "Email", "Your email address" => "Il tuo indirizzo email", "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 2e96739ac23..d255b670337 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,6 +1,7 @@ "ć‚¢ćƒ—ćƒŖć‚¹ćƒˆć‚¢ć‹ć‚‰ćƒŖć‚¹ćƒˆć‚’ćƒ­ćƒ¼ćƒ‰ć§ćć¾ć›ć‚“", "Authentication error" => "čŖčØ¼ć‚Øćƒ©ćƒ¼", +"Unable to change display name" => "č”Øē¤ŗåć‚’å¤‰ę›“ć§ćć¾ć›ć‚“", "Group already exists" => "ć‚°ćƒ«ćƒ¼ćƒ—ćÆę—¢ć«å­˜åœØć—ć¦ć„ć¾ć™", "Unable to add group" => "ć‚°ćƒ«ćƒ¼ćƒ—ć‚’čæ½åŠ ć§ćć¾ć›ć‚“", "Could not enable app. " => "ć‚¢ćƒ—ćƒŖć‚’ęœ‰åŠ¹ć«ć§ćć¾ć›ć‚“ć§ć—ćŸć€‚", @@ -49,6 +50,9 @@ "show" => "蔨示", "Change password" => "ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ć‚’å¤‰ę›“", "Display Name" => "č”Øē¤ŗå", +"Your display name was changed" => "ć‚ćŖćŸć®č”Øē¤ŗåć‚’å¤‰ę›“ć—ć¾ć—ćŸ", +"Unable to change your display name" => "ć‚ćŖćŸć®č”Øē¤ŗåć‚’å¤‰ę›“ć§ćć¾ć›ć‚“", +"Change display name" => "č”Øē¤ŗåć‚’å¤‰ę›“", "Email" => "Email", "Your email address" => "ć‚ćŖćŸć®ćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹", "Fill in an email address to enable password recovery" => "ā€»ćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰å›žå¾©ć‚’ęœ‰åŠ¹ć«ć™ć‚‹ć«ćÆćƒ”ćƒ¼ćƒ«ć‚¢ćƒ‰ćƒ¬ć‚¹ć®å…„åŠ›ćŒåæ…č¦ć§ć™", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index f05ee1d749d..03977206f77 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -1,6 +1,7 @@ "Nevar lejupielādēt sarakstu no lietotņu veikala", "Authentication error" => "Autentifikācijas kļūda", +"Unable to change display name" => "Nevarēja mainÄ«t redzamo vārdu", "Group already exists" => "Grupa jau eksistē", "Unable to add group" => "Nevar pievienot grupu", "Could not enable app. " => "Nevarēja aktivēt lietotni.", @@ -49,6 +50,9 @@ "show" => "parādÄ«t", "Change password" => "MainÄ«t paroli", "Display Name" => "Redzamais vārds", +"Your display name was changed" => "JÅ«su redzamais vārds tika mainÄ«ts", +"Unable to change your display name" => "Nevarēja mainÄ«t jÅ«su redzamo vārdu", +"Change display name" => "MainÄ«t redzamo vārdu", "Email" => "E-pasts", "Your email address" => "JÅ«su e-pasta adrese", "Fill in an email address to enable password recovery" => "Ievadiet epasta adresi, lai vēlāk varētu atgÅ«t paroli, ja bÅ«s nepiecieÅ”amÄ«ba", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 3488536821f..6c256b9388d 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,6 +1,7 @@ "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", +"Unable to change display name" => "Kon de weergavenaam niet wijzigen", "Group already exists" => "Groep bestaat al", "Unable to add group" => "Niet in staat om groep toe te voegen", "Could not enable app. " => "Kan de app. niet activeren", @@ -18,6 +19,7 @@ "Disable" => "Uitschakelen", "Enable" => "Inschakelen", "Please wait...." => "Even geduld aub....", +"Updating...." => "Bijwerken....", "Error while updating app" => "Fout bij bijwerken app", "Error" => "Fout", "Updated" => "Bijgewerkt", @@ -48,6 +50,9 @@ "show" => "weergeven", "Change password" => "Wijzig wachtwoord", "Display Name" => "Weergavenaam", +"Your display name was changed" => "Uw weergavenaam is gewijzigd", +"Unable to change your display name" => "Kon de weergavenaam niet wijzigen", +"Change display name" => "Wijzig weergavenaam", "Email" => "E-mailadres", "Your email address" => "Uw e-mailadres", "Fill in an email address to enable password recovery" => "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 7f3a114df5d..4c01951c508 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,6 +1,7 @@ "Š—Š°Š³Ń€ŃƒŠ·ŠŗŠ° ŠøŠ· App Store запрещена", "Authentication error" => "ŠžŃˆŠøŠ±ŠŗŠ° авторизации", +"Unable to change display name" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ отображаемое ŠøŠ¼Ń", "Group already exists" => "Š“Ń€ŃƒŠæŠæŠ° уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚", "Unable to add group" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ Š³Ń€ŃƒŠæŠæŃƒ", "Could not enable app. " => "ŠŠµ уГалось Š²ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ приложение.", @@ -14,10 +15,12 @@ "Unable to add user to group %s" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š“Š¾Š±Š°Š²ŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń в Š³Ń€ŃƒŠæŠæŃƒ %s", "Unable to remove user from group %s" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»Ń ŠøŠ· Š³Ń€ŃƒŠæŠæŃ‹ %s", "Couldn't update app." => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š¾Š±Š½Š¾Š²ŠøŃ‚ŃŒ приложение", +"Update to {appversion}" => "ŠžŠ±Š½Š¾Š²ŠøŃ‚ŃŒ Го {Š²ŠµŃ€ŃŠøŃ ŠæŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŃ}", "Disable" => "Š’Ń‹ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ", "Enable" => "Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ", "Please wait...." => "ŠŸŠ¾Š²Ń€ŠµŠ¼ŠµŠ½Šø...", "Updating...." => "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½ŠøŠµ...", +"Error while updating app" => "ŠžŃˆŠøŠ±ŠŗŠ° в процессе Š¾Š±Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŠæŃ€ŠøŠ»Š¾Š¶ŠµŠ½ŠøŃ", "Error" => "ŠžŃˆŠøŠ±ŠŗŠ°", "Updated" => "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½Š¾", "Saving..." => "Дохранение...", @@ -47,6 +50,9 @@ "show" => "ŠæŠ¾ŠŗŠ°Š·Š°Ń‚ŃŒ", "Change password" => "Š”Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ", "Display Name" => "ŠžŃ‚Š¾Š±Ń€Š°Š¶Š°ŠµŠ¼Š¾Šµ ŠøŠ¼Ń", +"Your display name was changed" => "Š’Š°ŃˆŠµ отображаемое ŠøŠ¼Ń было изменено", +"Unable to change your display name" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ Š’Š°ŃˆŠµ отображаемое ŠøŠ¼Ń", +"Change display name" => "Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ отображаемое ŠøŠ¼Ń", "Email" => "e-mail", "Your email address" => "Š’Š°Ńˆ аГрес ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты", "Fill in an email address to enable password recovery" => "ВвеГите аГрес ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ почты, чтобы ŠæŠ¾ŃŠ²ŠøŠ»Š°ŃŃŒ Š²Š¾Š·Š¼Š¾Š¶Š½Š¾ŃŃ‚ŃŒ Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ ŠæŠ°Ń€Š¾Š»Ń", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 54e43b51373..7186b2684eb 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -1,6 +1,7 @@ "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ завантажити список Š· App Store", "Authentication error" => "Помилка автентифікації", +"Unable to change display name" => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ змінити зображене ім'я", "Group already exists" => "Š“Ń€ŃƒŠæŠ° вже Ń–ŃŠ½ŃƒŃ”", "Unable to add group" => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ ГоГати Š³Ń€ŃƒŠæŃƒ", "Could not enable app. " => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ Š°ŠŗŃ‚ŠøŠ²ŃƒŠ²Š°Ń‚Šø ŠæŃ€Š¾Š³Ń€Š°Š¼Ńƒ. ", @@ -13,9 +14,15 @@ "Admins can't remove themself from the admin group" => "АГміністратор не може виГалити себе Š· Š³Ń€ŃƒŠæŠø аГмінів", "Unable to add user to group %s" => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ ГоГати ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š° у Š³Ń€ŃƒŠæŃƒ %s", "Unable to remove user from group %s" => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ виГалити ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Ń‡Š° Ń–Š· Š³Ń€ŃƒŠæŠø %s", +"Couldn't update app." => "ŠŠµ Š²Š“Š°Š»Š¾ŃŃ оновити ŠæŃ€Š¾Š³Ń€Š°Š¼Ńƒ. ", +"Update to {appversion}" => "ŠžŠ½Š¾Š²ŠøŃ‚Šø Го {appversion}", "Disable" => "Š’ŠøŠ¼ŠŗŠ½ŃƒŃ‚Šø", "Enable" => "Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šø", +"Please wait...." => "Зачекайте, буГь ласка...", +"Updating...." => "ŠžŠ½Š¾Š²Š»ŃŽŃ”Ń‚ŃŒŃŃ...", +"Error while updating app" => "Помилка при оновленні програми", "Error" => "Помилка", +"Updated" => "ŠžŠ½Š¾Š²Š»ŠµŠ½Š¾", "Saving..." => "Š—Š±ŠµŃ€Ń–Š³Š°ŃŽ...", "__language_name__" => "__language_name__", "Add your App" => "ДоГати ŃŠ²Š¾ŃŽ ŠæŃ€Š¾Š³Ń€Š°Š¼Ńƒ", @@ -42,6 +49,10 @@ "New password" => "ŠŠ¾Š²ŠøŠ¹ ŠæŠ°Ń€Š¾Š»ŃŒ", "show" => "показати", "Change password" => "Змінити ŠæŠ°Ń€Š¾Š»ŃŒ", +"Display Name" => "ŠŸŠ¾ŠŗŠ°Š·Š°Ń‚Šø Ім'я", +"Your display name was changed" => "Š’Š°ŃˆŠµ ім'я було змінене", +"Unable to change your display name" => "ŠŠµŠ¼Š¾Š¶Š»ŠøŠ²Š¾ змінити ваше зображене ім'я", +"Change display name" => "Змінити зображене ім'я", "Email" => "Ел.ŠæŠ¾ŃˆŃ‚Š°", "Your email address" => "Š’Š°ŃˆŠ° аГреса електронної ŠæŠ¾ŃˆŃ‚Šø", "Fill in an email address to enable password recovery" => "Š’Š²ŠµŠ“Ń–Ń‚ŃŒ Š°Š“Ń€ŠµŃŃƒ електронної ŠæŠ¾ŃˆŃ‚Šø Š“Š»Ń Š²Ń–Š“Š½Š¾Š²Š»ŠµŠ½Š½Ń ŠæŠ°Ń€Š¾Š»ŃŽ", @@ -51,6 +62,7 @@ "Use this address to connect to your ownCloud in your file manager" => "Š’ŠøŠŗŠ¾Ń€ŠøŃŃ‚Š¾Š²ŃƒŠ¹Ń‚Šµ цю Š°Š“Ń€ŠµŃŃƒ Š“Š»Ń піГ'Ń”Š“Š½Š°Š½Š½Ń Го вашого ownCloud у вашому Ń„Š°Š¹Š»Š¾Š²Š¾Š¼Ńƒ менеГжері", "Version" => "Š’ŠµŃ€ŃŃ–Ń", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Розроблено ownCloud Š³Ń€Š¾Š¼Š°Š“Š¾ŃŽ, вихіГний коГ має Š»Ń–Ń†ŠµŠ½Š·Ń–ŃŽ AGPL.", +"Login Name" => "Ім'я Š›Š¾Š³Ń–Š½Ńƒ", "Groups" => "Š“Ń€ŃƒŠæŠø", "Create" => "Дтворити", "Default Storage" => "сховище за Š·Š°Š¼Š¾Š²Ń‡ŃƒŠ²Š°Š½Š½ŃŠ¼", @@ -58,6 +70,8 @@ "Other" => "Š†Š½ŃˆŠµ", "Group Admin" => "АГміністратор Š³Ń€ŃƒŠæŠø", "Storage" => "Дховище", +"change display name" => "змінити зображене ім'я", +"set new password" => "встановити новий ŠæŠ°Ń€Š¾Š»ŃŒ", "Default" => "За Š·Š°Š¼Š¾Š²Ń‡ŃƒŠ²Š°Š½Š½ŃŠ¼", "Delete" => "ВиГалити" ); From 43ffb5945ce6713a19a3548ec575251e3f9a5aee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 8 Feb 2013 11:05:56 +0100 Subject: [PATCH 60/91] attach handlers to document instead of filelist, minor whitespace cleanups --- core/js/share.js | 131 +++++++++++++++++++++++++---------------------- 1 file changed, 71 insertions(+), 60 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 6ad4130690d..58cb787b6d1 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -185,10 +185,10 @@ OC.Share={ html += ''; html += ''; html += ''; - html += ''; - html += ''; - html += ''; - html += ''; + html += ''; } html += '
'; html += ''; @@ -373,18 +373,18 @@ OC.Share={ $('#linkPassText').attr('placeholder', t('core', 'Password protected')); } $('#expiration').show(); - $('#emailPrivateLink #email').show(); - $('#emailPrivateLink #emailButton').show(); + $('#emailPrivateLink #email').show(); + $('#emailPrivateLink #emailButton').show(); }, hideLink:function() { $('#linkText').hide('blind'); $('#showPassword').hide(); $('#showPassword+label').hide(); $('#linkPass').hide(); - $('#emailPrivateLink #email').hide(); - $('#emailPrivateLink #emailButton').hide(); - }, - dirname:function(path) { + $('#emailPrivateLink #email').hide(); + $('#emailPrivateLink #emailButton').hide(); + }, + dirname:function(path) { return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, ''); }, showExpirationDate:function(date) { @@ -401,16 +401,16 @@ OC.Share={ $(document).ready(function() { if(typeof monthNames != 'undefined'){ - $.datepicker.setDefaults({ - monthNames: monthNames, - monthNamesShort: $.map(monthNames, function(v) { return v.slice(0,3)+'.'; }), - dayNames: dayNames, - dayNamesMin: $.map(dayNames, function(v) { return v.slice(0,2); }), - dayNamesShort: $.map(dayNames, function(v) { return v.slice(0,3)+'.'; }), - firstDay: firstDay - }); - } - $('#fileList').on('click', 'a.share', function(event) { + $.datepicker.setDefaults({ + monthNames: monthNames, + monthNamesShort: $.map(monthNames, function(v) { return v.slice(0,3)+'.'; }), + dayNames: dayNames, + dayNamesMin: $.map(dayNames, function(v) { return v.slice(0,2); }), + dayNamesShort: $.map(dayNames, function(v) { return v.slice(0,3)+'.'; }), + firstDay: firstDay + }); + } + $(document).on('click', 'a.share', function(event) { event.stopPropagation(); if ($(this).data('item-type') !== undefined && $(this).data('item') !== undefined) { var itemType = $(this).data('item-type'); @@ -444,12 +444,12 @@ $(document).ready(function() { } }); - $('#fileList').on('mouseenter', '#dropdown #shareWithList li', function(event) { + $(document).on('mouseenter', '#dropdown #shareWithList li', function(event) { // Show permissions and unshare button $(':hidden', this).filter(':not(.cruds)').show(); }); - $('#fileList').on('mouseleave', '#dropdown #shareWithList li', function(event) { + $(document).on('mouseleave', '#dropdown #shareWithList li', function(event) { // Hide permissions and unshare button if (!$('.cruds', this).is(':visible')) { $('a', this).hide(); @@ -462,11 +462,11 @@ $(document).ready(function() { } }); - $('#fileList').on('click', '#dropdown .showCruds', function() { + $(document).on('click', '#dropdown .showCruds', function() { $(this).parent().find('.cruds').toggle(); }); - $('#fileList').on('click', '#dropdown .unshare', function() { + $(document).on('click', '#dropdown .unshare', function() { var li = $(this).parent(); var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); @@ -483,7 +483,7 @@ $(document).ready(function() { }); }); - $('#fileList').on('change', '#dropdown .permissions', function() { + $(document).on('change', '#dropdown .permissions', function() { if ($(this).attr('name') == 'edit') { var li = $(this).parent().parent() var checkboxes = $('.permissions', li); @@ -496,10 +496,17 @@ $(document).ready(function() { var li = $(this).parent().parent().parent(); var checkboxes = $('.permissions', li); // Uncheck Edit if Create, Update, and Delete are not checked - if (!$(this).is(':checked') && !$(checkboxes).filter('input[name="create"]').is(':checked') && !$(checkboxes).filter('input[name="update"]').is(':checked') && !$(checkboxes).filter('input[name="delete"]').is(':checked')) { + if (!$(this).is(':checked') + && !$(checkboxes).filter('input[name="create"]').is(':checked') + && !$(checkboxes).filter('input[name="update"]').is(':checked') + && !$(checkboxes).filter('input[name="delete"]').is(':checked')) + { $(checkboxes).filter('input[name="edit"]').attr('checked', false); // Check Edit if Create, Update, or Delete is checked - } else if (($(this).attr('name') == 'create' || $(this).attr('name') == 'update' || $(this).attr('name') == 'delete')) { + } else if (($(this).attr('name') == 'create' + || $(this).attr('name') == 'update' + || $(this).attr('name') == 'delete')) + { $(checkboxes).filter('input[name="edit"]').attr('checked', true); } } @@ -507,10 +514,14 @@ $(document).ready(function() { $(checkboxes).filter(':not(input[name="edit"])').filter(':checked').each(function(index, checkbox) { permissions |= $(checkbox).data('permissions'); }); - OC.Share.setPermissions($('#dropdown').data('item-type'), $('#dropdown').data('item-source'), $(li).data('share-type'), $(li).data('share-with'), permissions); + OC.Share.setPermissions($('#dropdown').data('item-type'), + $('#dropdown').data('item-source'), + $(li).data('share-type'), + $(li).data('share-with'), + permissions); }); - $('#fileList').on('change', '#dropdown #linkCheckbox', function() { + $(document).on('change', '#dropdown #linkCheckbox', function() { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); if (this.checked) { @@ -532,12 +543,12 @@ $(document).ready(function() { } }); - $('#fileList').on('click', '#dropdown #linkText', function() { + $(document).on('click', '#dropdown #linkText', function() { $(this).focus(); $(this).select(); }); - $('#fileList').on('click', '#dropdown #showPassword', function() { + $(document).on('click', '#dropdown #showPassword', function() { $('#linkPass').toggle('blind'); if (!$('#showPassword').is(':checked') ) { var itemType = $('#dropdown').data('item-type'); @@ -548,7 +559,7 @@ $(document).ready(function() { } }); - $('#fileList').on('focusout keyup', '#dropdown #linkPassText', function(event) { + $(document).on('focusout keyup', '#dropdown #linkPassText', function(event) { if ( $('#linkPassText').val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); @@ -560,7 +571,7 @@ $(document).ready(function() { } }); - $('#fileList').on('click', '#dropdown #expirationCheckbox', function() { + $(document).on('click', '#dropdown #expirationCheckbox', function() { if (this.checked) { OC.Share.showExpirationDate(''); } else { @@ -575,7 +586,7 @@ $(document).ready(function() { } }); - $('#fileList').on('change', '#dropdown #expirationDate', function() { + $(document).on('change', '#dropdown #expirationDate', function() { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: $(this).val() }, function(result) { @@ -586,33 +597,33 @@ $(document).ready(function() { }); - $('#fileList').on('submit', '#dropdown #emailPrivateLink', function(event) { - event.preventDefault(); - var link = $('#linkText').val(); - var itemType = $('#dropdown').data('item-type'); - var itemSource = $('#dropdown').data('item-source'); - var file = $('tr').filterAttr('data-id', String(itemSource)).data('file'); - var email = $('#email').val(); - if (email != '') { - $('#email').attr('disabled', "disabled"); - $('#email').val(t('core', 'Sending ...')); - $('#emailButton').attr('disabled', "disabled"); + $(document).on('submit', '#dropdown #emailPrivateLink', function(event) { + event.preventDefault(); + var link = $('#linkText').val(); + var itemType = $('#dropdown').data('item-type'); + var itemSource = $('#dropdown').data('item-source'); + var file = $('tr').filterAttr('data-id', String(itemSource)).data('file'); + var email = $('#email').val(); + if (email != '') { + $('#email').attr('disabled', "disabled"); + $('#email').val(t('core', 'Sending ...')); + $('#emailButton').attr('disabled', "disabled"); - $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'email', toaddress: email, link: link, itemType: itemType, itemSource: itemSource, file: file}, - function(result) { - $('#email').attr('disabled', "false"); - $('#emailButton').attr('disabled', "false"); - if (result && result.status == 'success') { - $('#email').css('font-weight', 'bold'); - $('#email').animate({ fontWeight: 'normal' }, 2000, function() { - $(this).val(''); - }).val(t('core','Email sent')); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Error while sharing')); - } - }); - } - }); + $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'email', toaddress: email, link: link, itemType: itemType, itemSource: itemSource, file: file}, + function(result) { + $('#email').attr('disabled', "false"); + $('#emailButton').attr('disabled', "false"); + if (result && result.status == 'success') { + $('#email').css('font-weight', 'bold'); + $('#email').animate({ fontWeight: 'normal' }, 2000, function() { + $(this).val(''); + }).val(t('core','Email sent')); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Error while sharing')); + } + }); + } + }); }); From 9bdc43e1fcb4576c82fa03fd59deb2aa28282aba Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 8 Feb 2013 12:03:28 +0100 Subject: [PATCH 61/91] Files: explicitly define --- apps/files/ajax/move.php | 2 ++ apps/files/ajax/rename.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 03d2a6a5624..93063e52eb0 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -11,6 +11,8 @@ $dir = stripslashes($_POST["dir"]); $file = stripslashes($_POST["file"]); $target = stripslashes(rawurldecode($_POST["target"])); +$l = OC_L10N::get('files'); + if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) { OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) ))); exit; diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 2364e477d93..9fd2ce3ad4b 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -11,6 +11,8 @@ $dir = stripslashes($_GET["dir"]); $file = stripslashes($_GET["file"]); $newname = stripslashes($_GET["newname"]); +$l = OC_L10N::get('files'); + if ( $newname !== '.' and ($dir != '' || $file != 'Shared') and $newname !== '.') { $targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname); $sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file); From a26e66b232990ad6d767c821dc362e0453af6d62 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 8 Feb 2013 13:37:57 +0100 Subject: [PATCH 62/91] improve and shorten security warning, add link to docs, fix #1342 --- core/css/styles.css | 1 + core/templates/installation.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index cefab2d49ff..fd74ffc5981 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -210,6 +210,7 @@ fieldset.warning { border-radius:5px; } fieldset.warning legend { color:#b94a48 !important; } +fieldset.warning a { color:#b94a48 !important; font-weight:bold; } /* Alternative Logins */ #alternative-logins legend { margin-bottom:10px; } diff --git a/core/templates/installation.php b/core/templates/installation.php index f3d232b637e..360be496463 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -29,7 +29,8 @@
t('Security Warning');?> - t('Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.');?> +

t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.');?>
+ t('For information how to properly configure your server, please see the documentation.');?>

From 11584474992e06cb5ce9330777e881505f6c04e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 8 Feb 2013 13:49:26 +0100 Subject: [PATCH 63/91] missing comma in sql statement --- lib/public/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/share.php b/lib/public/share.php index d46bee26dd4..af2a538e252 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -704,7 +704,7 @@ class Share { $select = '`*PREFIX*share`.`id`, `item_type`, `*PREFIX*share`.`parent`, `uid_owner`, ' .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' - .'`name` `mtime`, `mimetype`, `mimepart`, `size`, `encrypted`, `etag`'; + .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `encrypted`, `etag`'; } else { $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`'; } From 4c3d4f7d362edba78ef16ef6da3b3174e43060c4 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 24 Jan 2013 16:56:23 +0100 Subject: [PATCH 64/91] quick fixing this require_once. On windows the wrong file will be required: lib/archive/tar.php and not Archive/Tar.php. Best would be to rename the lib/archive/tar.php or put it into a different folder --- lib/archive/tar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/archive/tar.php b/lib/archive/tar.php index 117d88e5f42..e7c81389619 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -require_once 'Archive/Tar.php'; +require_once OC::$THIRDPARTYROOT . '/3rdparty/Archive/Tar.php'; class OC_Archive_TAR extends OC_Archive{ const PLAIN=0; From ea42014ba4e7ad44a290f968b1a1439f78c1117c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 8 Feb 2013 15:23:26 +0100 Subject: [PATCH 65/91] in case curl is not present we cannot test --- lib/util.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/util.php b/lib/util.php index 5f796e7565f..7e183041d54 100755 --- a/lib/util.php +++ b/lib/util.php @@ -528,6 +528,10 @@ class OC_Util { * */ public static function isWebDAVWorking() { + if (!function_exists('curl_init')) { + return; + } + $settings = array( 'baseUri' => OC_Helper::linkToRemote('webdav'), ); From 1d3c1328fa60cc1e5f07ceff8ff7c5f587bc45f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 8 Feb 2013 15:51:28 +0100 Subject: [PATCH 66/91] remove undefined function FileList.finishDelete --- apps/files/js/filelist.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 72b353b48c2..9c794d24e4f 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -321,7 +321,6 @@ $(document).ready(function(){ // Delete the new uploaded file FileList.deleteCanceled = false; FileList.deleteFiles = [FileList.replaceOldName]; - FileList.finishDelete(null, true); } else { $('tr').filterAttr('data-file', FileList.replaceOldName).show(); } @@ -348,7 +347,6 @@ $(document).ready(function(){ if ($('#notification').data('isNewFile')) { FileList.deleteCanceled = false; FileList.deleteFiles = [$('#notification').data('oldName')]; - FileList.finishDelete(null, true); } }); FileList.useUndo=(window.onbeforeunload)?true:false; From 232a98524cdc9c97ad1c5a72ec0021e4b036a69d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 8 Feb 2013 17:49:54 +0100 Subject: [PATCH 67/91] some systems use en_US.UTF8 instead of en_US.UTF-8 --- lib/base.php | 4 ++-- lib/util.php | 11 +++++------ settings/templates/admin.php | 2 +- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/lib/base.php b/lib/base.php index 5bfdb0b7c0a..38ced09b81d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -346,7 +346,7 @@ class OC { public static function init() { // register autoloader spl_autoload_register(array('OC', 'autoload')); - setlocale(LC_ALL, 'en_US.UTF-8'); + OC_Util::issetlocaleworking(); // set some stuff //ob_start(); @@ -498,7 +498,7 @@ class OC { // write error into log if locale can't be set if (OC_Util::issetlocaleworking() == false) { - OC_Log::write('core', 'setting locale to en_US.UTF-8 failed. Support is probably not installed on your system', OC_Log::ERROR); + OC_Log::write('core', 'setting locale to en_US.UTF-8/en_US.UTF8 failed. Support is probably not installed on your system', OC_Log::ERROR); } if (OC_Config::getValue('installed', false)) { if (OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax') == 'ajax') { diff --git a/lib/util.php b/lib/util.php index 9ce974619bc..27aea6996da 100755 --- a/lib/util.php +++ b/lib/util.php @@ -526,12 +526,11 @@ class OC_Util { return true; } - $result=setlocale(LC_ALL, 'en_US.UTF-8'); - if($result==false) { - return(false); - }else{ - return(true); - } + $result = setlocale(LC_ALL, 'en_US.UTF-8', 'en_US.UTF8'); + if($result == false) { + return false; + } + return true; } /** diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 9a9a691dcbf..32fc2694783 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -42,7 +42,7 @@ if (!$_['islocaleworking']) { t('Locale not working');?> - t('This ownCloud server can\'t set system locale to "en_US.UTF-8". This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support en_US.UTF-8.'); ?> + t('This ownCloud server can\'t set system locale to "en_US.UTF-8"/"en_US.UTF8". This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support en_US.UTF-8/en_US.UTF8.'); ?>
From ce8fc20e0b4afa926eff7151abfe5a969c276b6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 8 Feb 2013 18:04:27 +0100 Subject: [PATCH 68/91] remove unused code --- apps/files/js/files.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 7c377afc620..5c5b430a8d4 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -262,12 +262,6 @@ $(document).ready(function() { return; } totalSize+=files[i].size; - if(FileList.deleteFiles && FileList.deleteFiles.indexOf(files[i].name)!=-1){//finish delete if we are uploading a deleted file - FileList.finishDelete(function(){ - $('#file_upload_start').change(); - }); - return; - } } } if(totalSize>$('#max_upload').val()){ From d5f98a82aa5d1bee7971cb4c811b86083ce60ed6 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 8 Feb 2013 18:44:52 +0100 Subject: [PATCH 69/91] fix-oc_webroot --- core/js/js.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/js/js.js b/core/js/js.js index c137f734d91..5f1870eb6ce 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -8,7 +8,9 @@ var oc_debug; var oc_webroot; var oc_requesttoken; -oc_webroot = oc_webroot || location.pathname.substr(0, location.pathname.lastIndexOf('/')); +if (typeof oc_webroot === "undefined") { + oc_webroot = location.pathname.substr(0, location.pathname.lastIndexOf('/')); +} if (oc_debug !== true || typeof console === "undefined" || typeof console.log === "undefined") { if (!window.console) { window.console = {}; From 340d6fce11d6a66e042e060c514084a0a8ec8455 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 8 Feb 2013 18:53:43 +0100 Subject: [PATCH 70/91] Better way of getting the navigation entries for an app --- lib/app.php | 17 +++++++++++++++++ settings/ajax/navigationdetect.php | 5 +---- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/lib/app.php b/lib/app.php index 3a4e21e8cd1..c7e20a9fa96 100644 --- a/lib/app.php +++ b/lib/app.php @@ -285,6 +285,23 @@ class OC_App{ return true; } + /** + * @brief Get the navigation entries for the $app + * @param string $app app + * @return array of the $data added with addNavigationEntry + */ + public static function getAppNavigationEntries($app) { + if(is_file(self::getAppPath($app).'/appinfo/app.php')) { + $save = self::$navigation; + self::$navigation = array(); + require $app.'/appinfo/app.php'; + $app_entries = self::$navigation; + self::$navigation = $save; + return $app_entries; + } + return array(); + } + /** * @brief gets the active Menu entry * @return string id or empty string diff --git a/settings/ajax/navigationdetect.php b/settings/ajax/navigationdetect.php index 93acb50dc20..d21f774126c 100644 --- a/settings/ajax/navigationdetect.php +++ b/settings/ajax/navigationdetect.php @@ -5,10 +5,7 @@ OCP\JSON::callCheck(); $app = $_GET['app']; -//load the one app and see what it adds to the navigation -OC_App::loadApp($app); - -$navigation = OC_App::getNavigation(); +$navigation = OC_App::getAppNavigationEntries($app); $navIds = array(); foreach ($navigation as $nav) { From fba9739448dfca7234c3910f88ce56f0f28e6bad Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 8 Feb 2013 19:06:59 +0100 Subject: [PATCH 71/91] Always load the apps before trying to match a route --- lib/base.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/base.php b/lib/base.php index 5bfdb0b7c0a..e71928bfc03 100644 --- a/lib/base.php +++ b/lib/base.php @@ -556,6 +556,7 @@ class OC { if (!self::$CLI) { try { + OC_App::loadApps(); OC::getRouter()->match(OC_Request::getPathInfo()); return; } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { From c73f525050dc8b6a17d630359ea73784cad1f4b6 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 8 Feb 2013 19:33:22 +0100 Subject: [PATCH 72/91] brighter grey for the navigation bar, hopefully solves the weird similarity to the header --- core/css/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index cefab2d49ff..d4ba6f13e53 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -219,14 +219,14 @@ fieldset.warning legend { color:#b94a48 !important; } /* NAVIGATION ------------------------------------------------------------- */ #navigation { position:fixed; top:3.5em; float:left; width:64px; padding:0; z-index:75; height:100%; - background:#30343a url('../img/noise.png') repeat; border-right:1px #333 solid; + background:#383c43 url('../img/noise.png') repeat; border-right:1px #333 solid; -moz-box-shadow:0 0 7px #000; -webkit-box-shadow:0 0 7px #000; box-shadow:0 0 7px #000; overflow-x:scroll; } #navigation a { display:block; padding:8px 0 4px; text-decoration:none; font-size:10px; text-align:center; - color:#fff; text-shadow:#000 0 -1px 0; opacity:.4; + color:#fff; text-shadow:#000 0 -1px 0; opacity:.5; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; // ellipsize long app names } #navigation a:hover, #navigation a:focus { opacity:.8; } From bebdd113f522adae3e51835baa5c946c37e4fbbf Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 8 Feb 2013 19:59:42 +0100 Subject: [PATCH 73/91] use proper HTML for other security warning too --- core/templates/installation.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/templates/installation.php b/core/templates/installation.php index 360be496463..ad0d9cfbada 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -21,9 +21,8 @@
t('Security Warning');?> - t('No secure random number generator is available, please enable the PHP OpenSSL extension.');?> -
- t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.');?> +

t('No secure random number generator is available, please enable the PHP OpenSSL extension.');?>
+ t('Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account.');?>

From ed1dc3e064e4ca64fc2db2cecbd1f6bd48242b7b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 8 Feb 2013 22:05:13 +0100 Subject: [PATCH 74/91] Fix files router download links --- apps/files/index.php | 2 +- apps/files/js/filelist.js | 2 +- lib/public/util.php | 14 ++++++++++++++ 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/apps/files/index.php b/apps/files/index.php index 104cf1a55d3..434e98c6ea8 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -92,7 +92,7 @@ foreach (explode('/', $dir) as $i) { $list = new OCP\Template('files', 'part.list', ''); $list->assign('files', $files, false); $list->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir=', false); -$list->assign('downloadURL', OCP\Util::linkTo('files', 'download.php') . '?file=', false); +$list->assign('downloadURL', OCP\Util::linkToRoute('download', array('file' => '/')), false); $list->assign('disableSharing', false); $breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', ''); $breadcrumbNav->assign('breadcrumb', $breadcrumb, false); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 72b353b48c2..c176057c86d 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -15,7 +15,7 @@ var FileList={ extension=false; } html+='
'; - html+=''+escapeHTML(basename); + html+=''+escapeHTML(basename); if(extension){ html+=''+escapeHTML(extension)+''; } diff --git a/lib/public/util.php b/lib/public/util.php index 968ca891b4c..5f6ede4460e 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -147,6 +147,20 @@ class Util { return \OC_Helper::linkToPublic($service); } + /** + * @brief Creates an url using a defined route + * @param $route + * @param array $parameters + * @return + * @internal param array $args with param=>value, will be appended to the returned url + * @returns the url + * + * Returns a url to the given app and file. + */ + public static function linkToRoute( $route, $parameters = array() ) { + return \OC_Helper::linkToRoute($route, $parameters); + } + /** * @brief Creates an url * @param string $app app From e5c05e9674a982a88e5e6bb5fe85416e04b872fe Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 9 Feb 2013 00:14:08 +0100 Subject: [PATCH 75/91] [tx-robot] updated from transifex --- apps/files/l10n/bn_BD.php | 1 - apps/files/l10n/ca.php | 1 - apps/files/l10n/cs_CZ.php | 1 - apps/files/l10n/de.php | 1 - apps/files/l10n/de_DE.php | 1 - apps/files/l10n/el.php | 1 - apps/files/l10n/eo.php | 1 - apps/files/l10n/es.php | 2 +- apps/files/l10n/es_AR.php | 1 - apps/files/l10n/eu.php | 1 - apps/files/l10n/fa.php | 1 - apps/files/l10n/fi_FI.php | 1 - apps/files/l10n/fr.php | 2 +- apps/files/l10n/gl.php | 1 - apps/files/l10n/hu_HU.php | 1 - apps/files/l10n/is.php | 1 - apps/files/l10n/it.php | 1 - apps/files/l10n/ja_JP.php | 1 - apps/files/l10n/ko.php | 1 - apps/files/l10n/lv.php | 1 - apps/files/l10n/nl.php | 1 - apps/files/l10n/pl.php | 1 - apps/files/l10n/pt_PT.php | 1 - apps/files/l10n/ro.php | 1 - apps/files/l10n/ru.php | 1 - apps/files/l10n/ru_RU.php | 7 +- apps/files/l10n/sk_SK.php | 2 +- apps/files/l10n/sv.php | 1 - apps/files/l10n/th_TH.php | 1 - apps/files/l10n/tr.php | 1 - apps/files/l10n/uk.php | 1 - apps/files/l10n/zh_CN.php | 1 - apps/files/l10n/zh_TW.php | 1 - apps/files_encryption/l10n/fr.php | 3 + apps/files_encryption/l10n/ru.php | 1 + apps/files_encryption/l10n/sk_SK.php | 3 + apps/files_trashbin/l10n/ca.php | 2 + apps/files_trashbin/l10n/cs_CZ.php | 2 + apps/files_trashbin/l10n/es.php | 3 + apps/files_trashbin/l10n/fr.php | 3 + apps/files_trashbin/l10n/it.php | 2 + apps/files_trashbin/l10n/ja_JP.php | 2 + apps/files_trashbin/l10n/lv.php | 2 + apps/files_trashbin/l10n/ru.php | 2 + apps/files_trashbin/l10n/ru_RU.php | 3 +- apps/files_trashbin/l10n/sk_SK.php | 2 + apps/files_versions/l10n/ca.php | 8 + apps/files_versions/l10n/cs_CZ.php | 8 + apps/files_versions/l10n/de_DE.php | 4 + apps/files_versions/l10n/es.php | 8 + apps/files_versions/l10n/fr.php | 8 + apps/files_versions/l10n/it.php | 8 + apps/files_versions/l10n/ja_JP.php | 8 + apps/files_versions/l10n/lv.php | 8 + apps/files_versions/l10n/ru.php | 8 + apps/files_versions/l10n/sk_SK.php | 5 + apps/user_ldap/l10n/ca.php | 1 + apps/user_ldap/l10n/cs_CZ.php | 1 + apps/user_ldap/l10n/es.php | 1 + apps/user_ldap/l10n/fr.php | 1 + apps/user_ldap/l10n/it.php | 1 + apps/user_ldap/l10n/ja_JP.php | 1 + apps/user_ldap/l10n/lv.php | 1 + core/l10n/ca.php | 2 +- core/l10n/cs_CZ.php | 2 +- core/l10n/da.php | 1 - core/l10n/de.php | 1 - core/l10n/de_DE.php | 2 +- core/l10n/el.php | 1 - core/l10n/es.php | 3 +- core/l10n/es_AR.php | 1 - core/l10n/eu.php | 1 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 3 +- core/l10n/gl.php | 1 - core/l10n/he.php | 1 - core/l10n/hu_HU.php | 1 - core/l10n/is.php | 1 - core/l10n/it.php | 2 +- core/l10n/ja_JP.php | 2 +- core/l10n/ko.php | 1 - core/l10n/lt_LT.php | 1 - core/l10n/lv.php | 2 +- core/l10n/mk.php | 1 - core/l10n/nl.php | 1 - core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 1 - core/l10n/pt_PT.php | 1 - core/l10n/ro.php | 1 - core/l10n/ru.php | 2 +- core/l10n/ru_RU.php | 3 +- core/l10n/si_LK.php | 1 - core/l10n/sk_SK.php | 3 +- core/l10n/sl.php | 1 - core/l10n/sr.php | 1 - core/l10n/sv.php | 1 - core/l10n/ta_LK.php | 1 - core/l10n/th_TH.php | 1 - core/l10n/tr.php | 1 - core/l10n/uk.php | 1 - core/l10n/vi.php | 1 - core/l10n/zh_CN.GB2312.php | 1 - core/l10n/zh_CN.php | 1 - core/l10n/zh_TW.php | 1 - l10n/af_ZA/core.po | 22 +- l10n/af_ZA/files.po | 20 +- l10n/ar/core.po | 22 +- l10n/ar/files.po | 20 +- l10n/bg_BG/core.po | 22 +- l10n/bg_BG/files.po | 20 +- l10n/bn_BD/core.po | 22 +- l10n/bn_BD/files.po | 22 +- l10n/ca/core.po | 26 +- l10n/ca/files.po | 24 +- l10n/ca/files_trashbin.po | 10 +- l10n/ca/files_versions.po | 23 +- l10n/ca/user_ldap.po | 8 +- l10n/cs_CZ/core.po | 26 +- l10n/cs_CZ/files.po | 24 +- l10n/cs_CZ/files_trashbin.po | 10 +- l10n/cs_CZ/files_versions.po | 24 +- l10n/cs_CZ/user_ldap.po | 8 +- l10n/da/core.po | 24 +- l10n/da/files.po | 20 +- l10n/de/core.po | 24 +- l10n/de/files.po | 22 +- l10n/de_DE/core.po | 26 +- l10n/de_DE/files.po | 24 +- l10n/de_DE/files_versions.po | 15 +- l10n/el/core.po | 24 +- l10n/el/files.po | 22 +- l10n/eo/core.po | 22 +- l10n/eo/files.po | 22 +- l10n/es/core.po | 29 +- l10n/es/files.po | 24 +- l10n/es/files_trashbin.po | 12 +- l10n/es/files_versions.po | 23 +- l10n/es/settings.po | 14 +- l10n/es/user_ldap.po | 8 +- l10n/es_AR/core.po | 24 +- l10n/es_AR/files.po | 22 +- l10n/et_EE/core.po | 22 +- l10n/et_EE/files.po | 20 +- l10n/eu/core.po | 24 +- l10n/eu/files.po | 22 +- l10n/fa/core.po | 22 +- l10n/fa/files.po | 22 +- l10n/fi_FI/core.po | 24 +- l10n/fi_FI/files.po | 22 +- l10n/fr/core.po | 30 +- l10n/fr/files.po | 24 +- l10n/fr/files_encryption.po | 12 +- l10n/fr/files_trashbin.po | 12 +- l10n/fr/files_versions.po | 24 +- l10n/fr/settings.po | 14 +- l10n/fr/user_ldap.po | 8 +- l10n/gl/core.po | 24 +- l10n/gl/files.po | 22 +- l10n/he/core.po | 24 +- l10n/he/files.po | 20 +- l10n/hi/core.po | 22 +- l10n/hi/files.po | 20 +- l10n/hr/core.po | 22 +- l10n/hr/files.po | 20 +- l10n/hu_HU/core.po | 24 +- l10n/hu_HU/files.po | 22 +- l10n/ia/core.po | 22 +- l10n/ia/files.po | 20 +- l10n/id/core.po | 22 +- l10n/id/files.po | 20 +- l10n/is/core.po | 24 +- l10n/is/files.po | 22 +- l10n/it/core.po | 26 +- l10n/it/files.po | 24 +- l10n/it/files_trashbin.po | 10 +- l10n/it/files_versions.po | 24 +- l10n/it/user_ldap.po | 8 +- l10n/ja_JP/core.po | 26 +- l10n/ja_JP/files.po | 24 +- l10n/ja_JP/files_trashbin.po | 10 +- l10n/ja_JP/files_versions.po | 23 +- l10n/ja_JP/user_ldap.po | 8 +- l10n/ka_GE/core.po | 22 +- l10n/ka_GE/files.po | 20 +- l10n/ko/core.po | 24 +- l10n/ko/files.po | 22 +- l10n/ku_IQ/core.po | 22 +- l10n/ku_IQ/files.po | 20 +- l10n/lb/core.po | 22 +- l10n/lb/files.po | 20 +- l10n/lt_LT/core.po | 24 +- l10n/lt_LT/files.po | 20 +- l10n/lv/core.po | 26 +- l10n/lv/files.po | 24 +- l10n/lv/files_trashbin.po | 10 +- l10n/lv/files_versions.po | 22 +- l10n/lv/user_ldap.po | 8 +- l10n/mk/core.po | 24 +- l10n/mk/files.po | 20 +- l10n/ms_MY/core.po | 22 +- l10n/ms_MY/files.po | 20 +- l10n/nb_NO/core.po | 22 +- l10n/nb_NO/files.po | 20 +- l10n/nl/core.po | 24 +- l10n/nl/files.po | 24 +- l10n/nn_NO/core.po | 22 +- l10n/nn_NO/files.po | 20 +- l10n/oc/core.po | 22 +- l10n/oc/files.po | 20 +- l10n/pl/core.po | 24 +- l10n/pl/files.po | 22 +- l10n/pl_PL/core.po | 22 +- l10n/pl_PL/files.po | 20 +- l10n/pt_BR/core.po | 24 +- l10n/pt_BR/files.po | 20 +- l10n/pt_PT/core.po | 24 +- l10n/pt_PT/files.po | 24 +- l10n/ro/core.po | 24 +- l10n/ro/files.po | 22 +- l10n/ru/core.po | 26 +- l10n/ru/files.po | 24 +- l10n/ru/files_encryption.po | 6 +- l10n/ru/files_trashbin.po | 10 +- l10n/ru/files_versions.po | 23 +- l10n/ru_RU/core.po | 29 +- l10n/ru_RU/files.po | 35 +- l10n/ru_RU/files_trashbin.po | 6 +- l10n/si_LK/core.po | 24 +- l10n/si_LK/files.po | 20 +- l10n/sk/core.po | 593 +++++++++++++++++++++++++++ l10n/sk/files.po | 314 ++++++++++++++ l10n/sk/files_encryption.po | 60 +++ l10n/sk/files_external.po | 120 ++++++ l10n/sk/files_sharing.po | 48 +++ l10n/sk/files_trashbin.po | 68 +++ l10n/sk/files_versions.po | 65 +++ l10n/sk/lib.po | 156 +++++++ l10n/sk/settings.po | 328 +++++++++++++++ l10n/sk/user_ldap.po | 309 ++++++++++++++ l10n/sk/user_webdavauth.po | 33 ++ l10n/sk_SK/core.po | 29 +- l10n/sk_SK/files.po | 25 +- l10n/sk_SK/files_encryption.po | 13 +- l10n/sk_SK/files_trashbin.po | 11 +- l10n/sk_SK/files_versions.po | 17 +- l10n/sl/core.po | 24 +- l10n/sl/files.po | 20 +- l10n/sr/core.po | 24 +- l10n/sr/files.po | 20 +- l10n/sr@latin/core.po | 22 +- l10n/sr@latin/files.po | 20 +- l10n/sv/core.po | 24 +- l10n/sv/files.po | 22 +- l10n/sw_KE/core.po | 22 +- l10n/sw_KE/files.po | 22 +- l10n/ta_LK/core.po | 24 +- l10n/ta_LK/files.po | 20 +- l10n/templates/core.pot | 20 +- l10n/templates/files.pot | 18 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 24 +- l10n/th_TH/files.po | 22 +- l10n/tr/core.po | 24 +- l10n/tr/files.po | 22 +- l10n/uk/core.po | 24 +- l10n/uk/files.po | 24 +- l10n/vi/core.po | 24 +- l10n/vi/files.po | 20 +- l10n/zh_CN.GB2312/core.po | 24 +- l10n/zh_CN.GB2312/files.po | 20 +- l10n/zh_CN/core.po | 24 +- l10n/zh_CN/files.po | 22 +- l10n/zh_HK/core.po | 22 +- l10n/zh_HK/files.po | 20 +- l10n/zh_TW/core.po | 24 +- l10n/zh_TW/files.po | 22 +- settings/l10n/es.php | 4 + settings/l10n/fr.php | 4 + 286 files changed, 4498 insertions(+), 1173 deletions(-) create mode 100644 l10n/sk/core.po create mode 100644 l10n/sk/files.po create mode 100644 l10n/sk/files_encryption.po create mode 100644 l10n/sk/files_external.po create mode 100644 l10n/sk/files_sharing.po create mode 100644 l10n/sk/files_trashbin.po create mode 100644 l10n/sk/files_versions.po create mode 100644 l10n/sk/lib.po create mode 100644 l10n/sk/settings.po create mode 100644 l10n/sk/user_ldap.po create mode 100644 l10n/sk/user_webdavauth.po diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 3d676810c7c..dbff81cef6c 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -7,7 +7,6 @@ "No file was uploaded" => "কোন ফাইল আপলোঔ করা হয় নি", "Missing a temporary folder" => "ą¦…ą¦øą§ą¦„ą¦¾ą§Ÿą§€ ą¦«ą§‹ą¦²ą§ą¦”ą¦¾ą¦° ą¦–ą§‹ą§Ÿą¦¾ ą¦—ą¦æą§Ÿą§‡ą¦›ą§‡", "Failed to write to disk" => "ą¦”ą¦æą¦øą§ą¦•ą§‡ লিখতে ą¦¬ą§ą¦Æą¦°ą§ą¦„", -"Not enough space available" => "ą¦Æą¦„ą§‡ą¦·ą§ą¦  পরিমাণ ą¦øą§ą¦„ą¦¾ą¦Ø নেই", "Invalid directory." => "ভুল ą¦”ą¦æą¦°ą§‡ą¦•ą§ą¦Ÿą¦°ą¦æ", "Files" => "ফাইল", "Unshare" => "ভাগাভাগি বাতিল ", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index eb43cdc2a6f..49ea7f73abb 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -7,7 +7,6 @@ "No file was uploaded" => "El fitxer no s'ha pujat", "Missing a temporary folder" => "S'ha perdut un fitxer temporal", "Failed to write to disk" => "Ha fallat en escriure al disc", -"Not enough space available" => "No hi ha prou espai disponible", "Invalid directory." => "Directori no vĆ lid.", "Files" => "Fitxers", "Unshare" => "Deixa de compartir", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 174068e4145..c2085a3aa9a 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ŽÔdný soubor nebyl odeslĆ”n", "Missing a temporary folder" => "ChybĆ­ adresÔř pro dočasnĆ© soubory", "Failed to write to disk" => "ZĆ”pis na disk selhal", -"Not enough space available" => "Nedostatek dostupnĆ©ho mĆ­sta", "Invalid directory." => "Neplatný adresÔř", "Files" => "Soubory", "Unshare" => "ZruÅ”it sdĆ­lenĆ­", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 55ea24baa2f..4b38619eaa5 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "TemporƤrer Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", -"Not enough space available" => "Nicht genug Speicherplatz verfügbar", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 317b1347518..71f24eba4c8 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Es wurde keine Datei hochgeladen.", "Missing a temporary folder" => "Der temporƤre Ordner fehlt.", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", -"Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unshare" => "Nicht mehr freigeben", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 7b458bf35dd..a9c5fda0981 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Κανένα αρχείο Γεν ĻƒĻ„Ī¬Ī»ĪøĪ·ĪŗĪµ", "Missing a temporary folder" => "Λείπει Īæ Ļ€ĻĪæĻƒĻ‰ĻĪ¹Ī½ĻŒĻ‚ φάκελος", "Failed to write to disk" => "Αποτυχία εγγραφής ĻƒĻ„Īæ Γίσκο", -"Not enough space available" => "Δεν υπάρχει Ī±ĻĪŗĪµĻ„ĻŒĻ‚ Ī“Ī¹Ī±ĪøĪ­ĻƒĪ¹Ī¼ĪæĻ‚ Ļ‡ĻŽĻĪæĻ‚", "Invalid directory." => "Μη έγκυρος φάκελος.", "Files" => "Αρχεία", "Unshare" => "Διακοπή κοινής Ļ‡ĻĪ®ĻƒĪ·Ļ‚", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index a510d47ad6c..ba78e8b56d7 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Neniu dosiero estas alŝutita", "Missing a temporary folder" => "Mankas tempa dosierujo", "Failed to write to disk" => "Malsukcesis skribo al disko", -"Not enough space available" => "Ne haveblas sufiĉa spaco", "Invalid directory." => "Nevalida dosierujo.", "Files" => "Dosieroj", "Unshare" => "Malkunhavigi", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 201e731179a..9d45e6035c7 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -7,10 +7,10 @@ "No file was uploaded" => "No se ha subido ningĆŗn archivo", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "La escritura en disco ha fallado", -"Not enough space available" => "No hay suficiente espacio disponible", "Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", +"Delete permanently" => "Eliminar permanentemente", "Delete" => "Eliminar", "Rename" => "Renombrar", "{new_name} already exists" => "{new_name} ya existe", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 7c4e8220c7c..e805f24ce4c 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -7,7 +7,6 @@ "No file was uploaded" => "El archivo no fue subido", "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "Error al escribir en el disco", -"Not enough space available" => "No hay suficiente espacio disponible", "Invalid directory." => "Directorio invalido.", "Files" => "Archivos", "Unshare" => "Dejar de compartir", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 6f4c55f4846..45c515814e7 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Ez da fitxategirik igo", "Missing a temporary folder" => "Aldi baterako karpeta falta da", "Failed to write to disk" => "Errore bat izan da diskoan idazterakoan", -"Not enough space available" => "Ez dago leku nahikorik.", "Invalid directory." => "Baliogabeko karpeta.", "Files" => "Fitxategiak", "Unshare" => "Ez elkarbanatu", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index a4181c6ff53..2559d597a79 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Ł‡ŪŒŚ† ŁŲ§ŪŒŁ„ŪŒ بارگذاری نؓده", "Missing a temporary folder" => "یک Ł¾ŁˆŲ“Ł‡ Ł…ŁˆŁ‚ŲŖ ŚÆŁ… ؓده Ų§Ų³ŲŖ", "Failed to write to disk" => "Ł†ŁˆŲ“ŲŖŁ† ŲØŲ± روی دیسک Ų³Ų®ŲŖ Ł†Ų§Ł…ŁˆŁŁ‚ بود", -"Not enough space available" => "فضای کافی ŲÆŲ± ŲÆŲ³ŲŖŲ±Ų³ Ł†ŪŒŲ³ŲŖ", "Invalid directory." => "فهرست راهنما نامعتبر Ł…ŪŒ ŲØŲ§Ų“ŲÆ.", "Files" => "ŁŲ§ŪŒŁ„ ها", "Unshare" => "Ł„ŲŗŁˆ Ų§Ų“ŲŖŲ±Ų§Ś©", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 809a5e5c554..6a425e76090 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -6,7 +6,6 @@ "No file was uploaded" => "YhtƤkƤƤn tiedostoa ei lƤhetetty", "Missing a temporary folder" => "VƤliaikaiskansiota ei ole olemassa", "Failed to write to disk" => "Levylle kirjoitus epƤonnistui", -"Not enough space available" => "Tilaa ei ole riittƤvƤsti", "Invalid directory." => "Virheellinen kansio.", "Files" => "Tiedostot", "Unshare" => "Peru jakaminen", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 4be699c0017..45281d277ff 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Aucun fichier n'a Ć©tĆ© tĆ©lĆ©versĆ©", "Missing a temporary folder" => "Il manque un rĆ©pertoire temporaire", "Failed to write to disk" => "Erreur d'Ć©criture sur le disque", -"Not enough space available" => "Espace disponible insuffisant", "Invalid directory." => "Dossier invalide.", "Files" => "Fichiers", "Unshare" => "Ne plus partager", +"Delete permanently" => "Supprimer de faƧon dĆ©finitive", "Delete" => "Supprimer", "Rename" => "Renommer", "{new_name} already exists" => "{new_name} existe dĆ©jĆ ", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index a1c0f0a5dd5..362e92dacea 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Non se enviou ningĆŗn ficheiro", "Missing a temporary folder" => "Falta un cartafol temporal", "Failed to write to disk" => "Erro ao escribir no disco", -"Not enough space available" => "O espazo dispoƱƭbel Ć© insuficiente", "Invalid directory." => "O directorio Ć© incorrecto.", "Files" => "Ficheiros", "Unshare" => "Deixar de compartir", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 86fc0f223f9..26d56480790 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Nem tƶltődƶtt fel semmi", "Missing a temporary folder" => "HiĆ”nyzik egy ideiglenes mappa", "Failed to write to disk" => "Nem sikerült a lemezre tƶrtĆ©nő Ć­rĆ”s", -"Not enough space available" => "Nincs elĆ©g szabad hely", "Invalid directory." => "ƉrvĆ©nytelen mappa.", "Files" => "FĆ”jlok", "Unshare" => "MegosztĆ”s visszavonĆ”sa", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 43c10ef236e..f8d9789cf0f 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Engin skrĆ” skilaưi sĆ©r", "Missing a temporary folder" => "Vantar brƔưabirgưamƶppu", "Failed to write to disk" => "Tókst ekki aư skrifa Ć” disk", -"Not enough space available" => "Ekki nƦgt plĆ”ss tiltƦkt", "Invalid directory." => "Ɠgild mappa.", "Files" => "SkrĆ”r", "Unshare" => "HƦtta deilingu", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index e2ff3634322..3d6eb254e59 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Nessun file ĆØ stato caricato", "Missing a temporary folder" => "Cartella temporanea mancante", "Failed to write to disk" => "Scrittura su disco non riuscita", -"Not enough space available" => "Spazio disponibile insufficiente", "Invalid directory." => "Cartella non valida.", "Files" => "File", "Unshare" => "Rimuovi condivisione", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 7ccf9f828e6..1caa308c1b8 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ćƒ•ć‚”ć‚¤ćƒ«ćÆć‚¢ćƒƒćƒ—ćƒ­ćƒ¼ćƒ‰ć•ć‚Œć¾ć›ć‚“ć§ć—ćŸ", "Missing a temporary folder" => "ćƒ†ćƒ³ćƒćƒ©ćƒŖćƒ•ć‚©ćƒ«ćƒ€ćŒč¦‹ć¤ć‹ć‚Šć¾ć›ć‚“", "Failed to write to disk" => "ćƒ‡ć‚£ć‚¹ć‚Æćøć®ę›øćč¾¼ćæć«å¤±ę•—ć—ć¾ć—ćŸ", -"Not enough space available" => "åˆ©ē”ØåÆčƒ½ćŖć‚¹ćƒšćƒ¼ć‚¹ćŒååˆ†ć«ć‚ć‚Šć¾ć›ć‚“", "Invalid directory." => "ē„”åŠ¹ćŖćƒ‡ć‚£ćƒ¬ć‚ÆćƒˆćƒŖć§ć™ć€‚", "Files" => "ćƒ•ć‚”ć‚¤ćƒ«", "Unshare" => "å…±ęœ‰ć—ćŖć„", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 7774aeea31c..98d0d602801 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ģ—…ė”œė“œėœ ķŒŒģ¼ ģ—†ģŒ", "Missing a temporary folder" => "ģž„ģ‹œ ķ“ė”ź°€ ģ‚¬ė¼ģ§", "Failed to write to disk" => "ė””ģŠ¤ķ¬ģ— ģ“°ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤", -"Not enough space available" => "ģ—¬ģœ  ź³µź°„ģ“ ė¶€ģ”±ķ•©ė‹ˆė‹¤", "Invalid directory." => "ģ˜¬ė°”ė„“ģ§€ ģ•Šģ€ ė””ė ‰ķ„°ė¦¬ģž…ė‹ˆė‹¤.", "Files" => "ķŒŒģ¼", "Unshare" => "공유 ķ•“ģ œ", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index e6d09f2896c..57b391e444c 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Neviena datne netika augÅ”upielādēta", "Missing a temporary folder" => "TrÅ«kst pagaidu mapes", "Failed to write to disk" => "Neizdevās saglabāt diskā", -"Not enough space available" => "Nepietiek brÄ«vas vietas", "Invalid directory." => "NederÄ«ga direktorija.", "Files" => "Datnes", "Unshare" => "Pārtraukt dalīŔanos", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 433ef1c8c53..9095149cd9d 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Geen bestand geüpload", "Missing a temporary folder" => "Een tijdelijke map mist", "Failed to write to disk" => "Schrijven naar schijf mislukt", -"Not enough space available" => "Niet genoeg ruimte beschikbaar", "Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", "Unshare" => "Stop delen", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 6855850f0da..45d0f436614 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Nie przesłano żadnego pliku", "Missing a temporary folder" => "Brak katalogu tymczasowego", "Failed to write to disk" => "Błąd zapisu na dysk", -"Not enough space available" => "Za mało miejsca", "Invalid directory." => "Zła ścieżka.", "Files" => "Pliki", "Unshare" => "Nie udostępniaj", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 3a2f91bbc7c..52c87ed728a 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -7,7 +7,6 @@ "No file was uploaded" => "NĆ£o foi enviado nenhum ficheiro", "Missing a temporary folder" => "Falta uma pasta temporĆ”ria", "Failed to write to disk" => "Falhou a escrita no disco", -"Not enough space available" => "EspaƧo em disco insuficiente!", "Invalid directory." => "Directório InvĆ”lido", "Files" => "Ficheiros", "Unshare" => "Deixar de partilhar", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 7837b1f5b30..79ca1cf4f51 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Niciun fișier Ć®ncărcat", "Missing a temporary folder" => "Lipsește un dosar temporar", "Failed to write to disk" => "Eroare la scriere pe disc", -"Not enough space available" => "Nu este suficient spațiu disponibil", "Invalid directory." => "Director invalid.", "Files" => "Fișiere", "Unshare" => "Anulează partajarea", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 9fac2d86e6d..05542452e7f 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Файл не был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½", "Missing a temporary folder" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ найти Š²Ń€ŠµŠ¼ŠµŠ½Š½ŃƒŃŽ папку", "Failed to write to disk" => "ŠžŃˆŠøŠ±ŠŗŠ° записи на Гиск", -"Not enough space available" => "ŠŠµŠ“Š¾ŃŃ‚Š°Ń‚Š¾Ń‡Š½Š¾ свобоГного места", "Invalid directory." => "ŠŠµŠæŃ€Š°Š²ŠøŠ»ŃŒŠ½Ń‹Š¹ каталог.", "Files" => "Файлы", "Unshare" => "ŠžŃ‚Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŃƒŠ±Š»ŠøŠŗŠ°Ń†ŠøŃŽ", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index e1952567d31..9b2913970f2 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Файл не был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½", "Missing a temporary folder" => "ŠžŃ‚ŃŃƒŃ‚ŃŃ‚Š²ŃƒŠµŃ‚ Š²Ń€ŠµŠ¼ŠµŠ½Š½Š°Ń папка", "Failed to write to disk" => "ŠŠµ уГалось Š·Š°ŠæŠøŃŠ°Ń‚ŃŒ на Гиск", -"Not enough space available" => "ŠŠµ Гостаточно свобоГного места", "Invalid directory." => "ŠŠµŠ²ŠµŃ€Š½Ń‹Š¹ каталог.", "Files" => "Файлы", "Unshare" => "Š”ŠŗŃ€Ń‹Ń‚ŃŒ", +"Delete permanently" => "Š£Š“Š°Š»ŠøŃ‚ŃŒ навсегГа", "Delete" => "Š£Š“Š°Š»ŠøŃ‚ŃŒ", "Rename" => "ŠŸŠµŃ€ŠµŠøŠ¼ŠµŠ½Š¾Š²Š°Ń‚ŃŒ", "{new_name} already exists" => "{новое_ŠøŠ¼Ń} уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚", @@ -20,9 +20,13 @@ "replaced {new_name}" => "заменено {новое_ŠøŠ¼Ń}", "undo" => "Š¾Ń‚Š¼ŠµŠ½ŠøŃ‚ŃŒ Гействие", "replaced {new_name} with {old_name}" => "заменено {новое_ŠøŠ¼Ń} с {старое_ŠøŠ¼Ń}", +"perform delete operation" => "Š²Ń‹ŠæŠ¾Š»Š½ŃŠµŃ‚ŃŃ процесс ŃƒŠ“Š°Š»ŠµŠ½ŠøŃ", "'.' is an invalid file name." => "'.' ŃŠ²Š»ŃŠµŃ‚ŃŃ неверным именем файла.", "File name cannot be empty." => "Š˜Š¼Ń файла не может Š±Ń‹Ń‚ŃŒ ŠæŃƒŃŃ‚Ń‹Š¼.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ŠŠµŠŗŠ¾Ń€Ń€ŠµŠŗŃ‚Š½Š¾Šµ ŠøŠ¼Ń, '\\', '/', '<', '>', ':', '\"', '|', '?' Šø '*' не Š“Š¾ŠæŃƒŃŃ‚ŠøŠ¼Ń‹.", +"Your storage is full, files can not be updated or synced anymore!" => "Š’Š°ŃˆŠµ хранилище переполнено, фалы больше не Š¼Š¾Š³ŃƒŃ‚ Š±Ń‹Ń‚ŃŒ обновлены или синхронизированы!", +"Your storage is almost full ({usedSpacePercent}%)" => "Š’Š°ŃˆŠµ хранилище почти полно ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Š˜Š“Ń‘Ń‚ поГготовка Šŗ скачке Š’Š°ŃˆŠµŠ³Š¾ файла. Это может Š·Š°Š½ŃŃ‚ŃŒ некоторое Š²Ń€ŠµŠ¼Ń, если фалы большие.", "Unable to upload your file as it is a directory or has 0 bytes" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ Š·Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ файл,\n так как он имеет нулевой размер или ŃŠ²Š»ŃŠµŃ‚ŃŃ Гиректорией", "Upload Error" => "ŠžŃˆŠøŠ±ŠŗŠ° Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø", "Close" => "Š—Š°ŠŗŃ€Ń‹Ń‚ŃŒ", @@ -53,6 +57,7 @@ "Text file" => "Текстовый файл", "Folder" => "Папка", "From link" => "По ссылке", +"Trash" => "ŠšŠ¾Ń€Š·ŠøŠ½Š°", "Cancel upload" => "ŠžŃ‚Š¼ŠµŠ½Š° Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø", "Nothing in here. Upload something!" => "Š—Š“ŠµŃŃŒ ничего нет. Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚Šµ что-нибуГь!", "Download" => "Š—Š°Š³Ń€ŃƒŠ·ŠøŃ‚ŃŒ", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 9c27e215397..be7f77adab0 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -7,10 +7,10 @@ "No file was uploaded" => "Žiaden sĆŗbor nebol nahraný", "Missing a temporary folder" => "ChýbajĆŗci dočasný priečinok", "Failed to write to disk" => "ZĆ”pis na disk sa nepodaril", -"Not enough space available" => "Nie je k dispozĆ­cii dostatok miesta", "Invalid directory." => "Neplatný adresĆ”r", "Files" => "SĆŗbory", "Unshare" => "NezdielaÅ„", +"Delete permanently" => "ZmazaÅ„ trvalo", "Delete" => "OdstrĆ”niÅ„", "Rename" => "PremenovaÅ„", "{new_name} already exists" => "{new_name} už existuje", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 55493e24943..ebdaae9193f 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -7,7 +7,6 @@ "No file was uploaded" => "Ingen fil blev uppladdad", "Missing a temporary folder" => "Saknar en tillfƤllig mapp", "Failed to write to disk" => "Misslyckades spara till disk", -"Not enough space available" => "Inte tillrƤckligt med utrymme tillgƤngligt", "Invalid directory." => "Felaktig mapp.", "Files" => "Filer", "Unshare" => "Sluta dela", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 06dab9d8e6c..5f880702b82 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ąø¢ąø±ąø‡ą¹„ąø”ą¹ˆąø”ąøµą¹„ąøŸąø„ą¹Œąø—ąøµą¹ˆąø–ąø¹ąøąø­ąø±ąøžą¹‚ąø«ąø„ąø”", "Missing a temporary folder" => "ą¹ąøŸą¹‰ąø”ą¹€ąø­ąøąøŖąø²ąø£ąøŠąø±ą¹ˆąø§ąø„ąø£ąø²ąø§ą¹€ąøąø“ąø”ąøąø²ąø£ąøŖąø¹ąøąø«ąø²ąø¢", "Failed to write to disk" => "ą¹€ąø‚ąøµąø¢ąø™ąø‚ą¹‰ąø­ąø”ąø¹ąø„ąø„ąø‡ą¹ąøœą¹ˆąø™ąø”ąø“ąøŖąøą¹Œąø„ą¹‰ąø”ą¹€ąø«ąø„ąø§", -"Not enough space available" => "ąø”ąøµąøžąø·ą¹‰ąø™ąø—ąøµą¹ˆą¹€ąø«ąø„ąø·ąø­ą¹„ąø”ą¹ˆą¹€ąøžąøµąø¢ąø‡ąøžąø­", "Invalid directory." => "ą¹„ąø”ą¹€ąø£ą¹‡ąøąø—ąø­ąø£ąøµą¹ˆą¹„ąø”ą¹ˆąø–ąø¹ąøąø•ą¹‰ąø­ąø‡", "Files" => "ą¹„ąøŸąø„ą¹Œ", "Unshare" => "ąø¢ąøą¹€ąø„ąø“ąøąøąø²ąø£ą¹ąøŠąø£ą¹Œąø‚ą¹‰ąø­ąø”ąø¹ąø„", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 3412d8ad448..3325cbe1ee4 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -7,7 +7,6 @@ "No file was uploaded" => "HiƧ dosya yüklenmedi", "Missing a temporary folder" => "GeƧici bir klasƶr eksik", "Failed to write to disk" => "Diske yazılamadı", -"Not enough space available" => "Yeterli disk alanı yok", "Invalid directory." => "GeƧersiz dizin.", "Files" => "Dosyalar", "Unshare" => "Paylaşılmayan", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 6f2afc7d525..4a76158c462 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ŠŠµ віГвантажено жоГного Ń„Š°Š¹Š»Ńƒ", "Missing a temporary folder" => "Š’Ń–Š“ŃŃƒŃ‚Š½Ń–Š¹ тимчасовий каталог", "Failed to write to disk" => "ŠŠµŠ²Š“Š°Š»Š¾ŃŃ записати на Гиск", -"Not enough space available" => "ŠœŃ–ŃŃ†Ń Š±Ń–Š»ŃŒŃˆŠµ немає", "Invalid directory." => "ŠŠµŠ²Ń–Ń€Š½ŠøŠ¹ каталог.", "Files" => "Файли", "Unshare" => "Заборонити Š“Š¾ŃŃ‚ŃƒŠæ", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 2491d645340..3c87ee2b73f 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ę–‡ä»¶ę²”ęœ‰äøŠä¼ ", "Missing a temporary folder" => "缺少专时目录", "Failed to write to disk" => "å†™å…„ē£ē›˜å¤±č“„", -"Not enough space available" => "ę²”ęœ‰č¶³å¤ŸåÆē”Øē©ŗé—“", "Invalid directory." => "ę— ę•ˆę–‡ä»¶å¤¹ć€‚", "Files" => "ꖇ件", "Unshare" => "å–ę¶ˆåˆ†äŗ«", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 104cb3a619f..439907821d4 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -7,7 +7,6 @@ "No file was uploaded" => "ē„”å·²äøŠå‚³ęŖ”ę”ˆ", "Missing a temporary folder" => "éŗå¤±ęš«å­˜č³‡ę–™å¤¾", "Failed to write to disk" => "åÆ«å…„ē”¬ē¢Ÿå¤±ę•—", -"Not enough space available" => "ę²’ęœ‰č¶³å¤ ēš„åÆē”Øē©ŗé–“", "Invalid directory." => "ē„”ę•ˆēš„č³‡ę–™å¤¾ć€‚", "Files" => "ęŖ”ę”ˆ", "Unshare" => "å–ę¶ˆå…±äŗ«", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 608778b2ec8..7d431e6e462 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Veuillez vĆ©rifier vos mots de passe et rĆ©essayer.", "Could not change your file encryption password to your login password" => "Impossible de convertir votre mot de passe de chiffrement en mot de passe de connexion", "Encryption" => "Chiffrement", +"File encryption is enabled." => "Le chiffrement des fichiers est activĆ©", +"The following file types will not be encrypted:" => "Les fichiers de types suivants ne seront pas chiffrĆ©s :", +"Exclude the following file types from encryption:" => "Ne pas chiffrer les fichiers dont les types sont les suivants :", "None" => "Aucun" ); diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index 19d09274c19..651885fe022 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -1,5 +1,6 @@ "ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° ŠæŠµŃ€ŠµŠŗŠ»ŃŽŃ‡ŠøŃ‚ŠµŃŃŒ на Š’Š°Ńˆ клиент ownCloud Šø ŠæŠ¾Š¼ŠµŠ½ŃŠ¹Ń‚Šµ ŠæŠ°Ń€Š¾Š»ŃŒ ŃˆŠøŠ²Ń€Š¾Š²Š°Š½ŠøŃ Š“Š»Ń Š·Š°Š²ŠµŃ€ŃˆŠµŠ½ŠøŃ ŠæŃ€ŠµŠ¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ.", +"switched to client side encryption" => "ŠæŠµŃ€ŠµŠŗŠ»ŃŽŃ‡Ń‘Š½ на ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŠµ со стороны клиента", "Change encryption password to login password" => "Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃ Š“Š»Ń ŠæŠ°Ń€Š¾Š»Ń вхоГа", "Please check your passwords and try again." => "ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° ŠæŃ€Š¾Š²ŠµŃ€ŃŒŃ‚Šµ пароли Šø ŠæŠ¾ŠæŃ€Š¾Š±ŃƒŠ¹Ń‚Šµ снова.", "Could not change your file encryption password to your login password" => "ŠŠµŠ²Š¾Š·Š¼Š¾Š¶Š½Š¾ ŠøŠ·Š¼ŠµŠ½ŠøŃ‚ŃŒ Š’Š°Ńˆ ŠæŠ°Ń€Š¾Š»ŃŒ файла ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŃ Š“Š»Ń ŠæŠ°Ń€Š¾Š»Ń вхоГа", diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index 3a1e4c7e194..dc2907e704f 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -5,5 +5,8 @@ "Please check your passwords and try again." => "Skontrolujte si heslo a skĆŗste to znovu.", "Could not change your file encryption password to your login password" => "Nie je možnĆ© zmeniÅ„ Å”ifrovacie heslo na prihlasovacie", "Encryption" => "Å ifrovanie", +"File encryption is enabled." => "Kryptovanie sĆŗborov nastavenĆ©.", +"The following file types will not be encrypted:" => "UvedenĆ© typy sĆŗborov nebudĆŗ kryptovanĆ©:", +"Exclude the following file types from encryption:" => "NekryptovaÅ„ uvedenĆ© typy sĆŗborov", "None" => "Žiadne" ); diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index e5e0ae3492a..803b0c81ef0 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -1,4 +1,6 @@ "No s'ha pogut esborrar permanentment %s", +"Couldn't restore %s" => "No s'ha pogut restaurar %s", "perform restore operation" => "executa l'operació de restauració", "delete file permanently" => "esborra el fitxer permanentment", "Name" => "Nom", diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index 2f88f3ae4c6..eeb27784d3e 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -1,4 +1,6 @@ "Nelze trvale odstranit %s", +"Couldn't restore %s" => "Nelze obnovit %s", "perform restore operation" => "provĆ©st obnovu", "delete file permanently" => "trvale odstranit soubor", "Name" => "NĆ”zev", diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index b191ffc4246..c14b9776473 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -1,5 +1,8 @@ "No se puede eliminar %s permanentemente", +"Couldn't restore %s" => "No se puede restaurar %s", "perform restore operation" => "Restaurar", +"delete file permanently" => "Eliminar archivo permanentemente", "Name" => "Nombre", "Deleted" => "Eliminado", "1 folder" => "1 carpeta", diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 51ade82d908..609b2fa9bd7 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -1,5 +1,8 @@ "Impossible d'effacer %s de faƧon permanente", +"Couldn't restore %s" => "Impossible de restaurer %s", "perform restore operation" => "effectuer l'opĆ©ration de restauration", +"delete file permanently" => "effacer dĆ©finitivement le fichier", "Name" => "Nom", "Deleted" => "EffacĆ©", "1 folder" => "1 dossier", diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index cf8b9819389..8627682d088 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -1,4 +1,6 @@ "Impossibile eliminare %s definitivamente", +"Couldn't restore %s" => "Impossibile ripristinare %s", "perform restore operation" => "esegui operazione di ripristino", "delete file permanently" => "elimina il file definitivamente", "Name" => "Nome", diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index 13e704f05a0..2bccf3f3bd5 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -1,4 +1,6 @@ "%s ć‚’å®Œå…Øć«å‰Šé™¤å‡ŗę„ć¾ć›ć‚“ć§ć—ćŸ", +"Couldn't restore %s" => "%s ć‚’å¾©å…ƒå‡ŗę„ć¾ć›ć‚“ć§ć—ćŸ", "perform restore operation" => "å¾©å…ƒę“ä½œć‚’å®Ÿč”Œć™ć‚‹", "delete file permanently" => "ćƒ•ć‚”ć‚¤ćƒ«ć‚’å®Œå…Øć«å‰Šé™¤ć™ć‚‹", "Name" => "名前", diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index f08a4780c24..5ecb99b9892 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -1,4 +1,6 @@ "Nevarēja pilnÄ«bā izdzēst %s", +"Couldn't restore %s" => "Nevarēja atjaunot %s", "perform restore operation" => "veikt atjaunoÅ”anu", "delete file permanently" => "dzēst datni pavisam", "Name" => "Nosaukums", diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index 14d807ec622..f6c85a6800e 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -1,4 +1,6 @@ "%s не может Š±Ń‹Ń‚ŃŒ ŃƒŠ“Š°Š»Ń‘Š½ навсегГа", +"Couldn't restore %s" => "%s не может Š±Ń‹Ń‚ŃŒ восстановлен", "perform restore operation" => "Š²Ń‹ŠæŠ¾Š»Š½ŠøŃ‚ŃŒ Š¾ŠæŠµŃ€Š°Ń†ŠøŃŽ Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²Š»ŠµŠ½ŠøŃ", "delete file permanently" => "ŃƒŠ“Š°Š»ŠøŃ‚ŃŒ файл навсегГа", "Name" => "Š˜Š¼Ń", diff --git a/apps/files_trashbin/l10n/ru_RU.php b/apps/files_trashbin/l10n/ru_RU.php index 8ef2658cf24..c5b1408e2cc 100644 --- a/apps/files_trashbin/l10n/ru_RU.php +++ b/apps/files_trashbin/l10n/ru_RU.php @@ -3,5 +3,6 @@ "1 folder" => "1 папка", "{count} folders" => "{количество} папок", "1 file" => "1 файл", -"{count} files" => "{количество} файлов" +"{count} files" => "{количество} файлов", +"Restore" => "Š’Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ" ); diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 81d43614d7b..759850783e2 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -1,5 +1,7 @@ "Nemožno obnoviÅ„ %s", "perform restore operation" => "vykonaÅ„ obnovu", +"delete file permanently" => "trvalo zmazaÅ„ sĆŗbor", "Name" => "Meno", "Deleted" => "ZmazanĆ©", "1 folder" => "1 priečinok", diff --git a/apps/files_versions/l10n/ca.php b/apps/files_versions/l10n/ca.php index 01e0a116873..fc900c47dc7 100644 --- a/apps/files_versions/l10n/ca.php +++ b/apps/files_versions/l10n/ca.php @@ -1,5 +1,13 @@ "No s'ha pogut revertir: %s", +"success" => "ĆØxit", +"File %s was reverted to version %s" => "El fitxer %s s'ha revertit a la versió %s", +"failure" => "fallada", +"File %s could not be reverted to version %s" => "El fitxer %s no s'ha pogut revertir a la versió %s", +"No old versions available" => "No hi ha versións antigues disponibles", +"No path specified" => "No heu especificat el camĆ­", "History" => "Historial", +"Revert a file to a previous version by clicking on its revert button" => "Reverteix un fitxer a una versió anterior fent clic en el seu botó de reverteix", "Files Versioning" => "Fitxers de Versions", "Enable" => "Habilita" ); diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index d219c3e68da..22d4a2ad827 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,5 +1,13 @@ "Nelze navrĆ”tit: %s", +"success" => "Ćŗspěch", +"File %s was reverted to version %s" => "Soubor %s byl navrĆ”cen na verzi %s", +"failure" => "sehlhĆ”nĆ­", +"File %s could not be reverted to version %s" => "Soubor %s nemohl být navrĆ”cen na verzi %s", +"No old versions available" => "Nejsou dostupnĆ© žÔdnĆ© starŔí verze", +"No path specified" => "NezadĆ”na cesta", "History" => "Historie", +"Revert a file to a previous version by clicking on its revert button" => "NavraÅ„te soubor do předchozĆ­ verze kliknutĆ­m na tlačƭtko navrĆ”tit", "Files Versioning" => "VerzovĆ”nĆ­ souborÅÆ", "Enable" => "Povolit" ); diff --git a/apps/files_versions/l10n/de_DE.php b/apps/files_versions/l10n/de_DE.php index 2fcb996de7b..cf33bb071e6 100644 --- a/apps/files_versions/l10n/de_DE.php +++ b/apps/files_versions/l10n/de_DE.php @@ -1,4 +1,8 @@ "Erfolgreich", +"failure" => "Fehlgeschlagen", +"No old versions available" => "keine Ƥlteren Versionen verfügbar", +"No path specified" => "Kein Pfad angegeben", "History" => "Historie", "Files Versioning" => "Dateiversionierung", "Enable" => "Aktivieren" diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index 4a8c34e5180..608e171a4b1 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -1,5 +1,13 @@ "No se puede revertir: %s", +"success" => "exitoso", +"File %s was reverted to version %s" => "El archivo %s fue revertido a la version %s", +"failure" => "fallo", +"File %s could not be reverted to version %s" => "El archivo %s no puede ser revertido a la version %s", +"No old versions available" => "No hay versiones antiguas disponibles", +"No path specified" => "Ruta no especificada", "History" => "Historial", +"Revert a file to a previous version by clicking on its revert button" => "Revertir un archivo a una versión anterior haciendo clic en el boton de revertir", "Files Versioning" => "Versionado de archivos", "Enable" => "Habilitar" ); diff --git a/apps/files_versions/l10n/fr.php b/apps/files_versions/l10n/fr.php index 2d26b98860a..6b2cf9ba6b5 100644 --- a/apps/files_versions/l10n/fr.php +++ b/apps/files_versions/l10n/fr.php @@ -1,5 +1,13 @@ "Impossible de restaurer %s", +"success" => "succĆØs", +"File %s was reverted to version %s" => "Le fichier %s a Ć©tĆ© restaurĆ© dans sa version %s", +"failure" => "Ć©chec", +"File %s could not be reverted to version %s" => "Le fichier %s ne peut ĆŖtre restaurĆ© dans sa version %s", +"No old versions available" => "Aucune ancienne version n'est disponible", +"No path specified" => "Aucun chemin spĆ©cifiĆ©", "History" => "Historique", +"Revert a file to a previous version by clicking on its revert button" => "Restaurez un fichier dans une version antĆ©rieure en cliquant sur son bouton de restauration", "Files Versioning" => "Versionnage des fichiers", "Enable" => "Activer" ); diff --git a/apps/files_versions/l10n/it.php b/apps/files_versions/l10n/it.php index c57b0930111..3289f7f68d1 100644 --- a/apps/files_versions/l10n/it.php +++ b/apps/files_versions/l10n/it.php @@ -1,5 +1,13 @@ "Impossibild ripristinare: %s", +"success" => "completata", +"File %s was reverted to version %s" => "Il file %s ĆØ stato ripristinato alla versione %s", +"failure" => "non riuscita", +"File %s could not be reverted to version %s" => "Il file %s non può essere ripristinato alla versione %s", +"No old versions available" => "Non sono disponibili versioni precedenti", +"No path specified" => "Nessun percorso specificato", "History" => "Cronologia", +"Revert a file to a previous version by clicking on its revert button" => "Ripristina un file a una versione precedente facendo clic sul rispettivo pulsante di ripristino", "Files Versioning" => "Controllo di versione dei file", "Enable" => "Abilita" ); diff --git a/apps/files_versions/l10n/ja_JP.php b/apps/files_versions/l10n/ja_JP.php index c97ba3d00ee..16018765708 100644 --- a/apps/files_versions/l10n/ja_JP.php +++ b/apps/files_versions/l10n/ja_JP.php @@ -1,5 +1,13 @@ "å…ƒć«ęˆ»ć›ć¾ć›ć‚“ć§ć—ćŸ: %s", +"success" => "成功", +"File %s was reverted to version %s" => "ćƒ•ć‚”ć‚¤ćƒ« %s ć‚’ćƒćƒ¼ć‚øćƒ§ćƒ³ %s ć«ęˆ»ć—ć¾ć—ćŸ", +"failure" => "失敗", +"File %s could not be reverted to version %s" => "ćƒ•ć‚”ć‚¤ćƒ« %s ć‚’ćƒćƒ¼ć‚øćƒ§ćƒ³ %s ć«ęˆ»ć›ć¾ć›ć‚“ć§ć—ćŸ", +"No old versions available" => "åˆ©ē”ØåÆčƒ½ćŖå¤ć„ćƒćƒ¼ć‚øćƒ§ćƒ³ćÆć‚ć‚Šć¾ć›ć‚“", +"No path specified" => "ćƒ‘ć‚¹ćŒęŒ‡å®šć•ć‚Œć¦ć„ć¾ć›ć‚“", "History" => "屄歓", +"Revert a file to a previous version by clicking on its revert button" => "ć‚‚ćØć«ęˆ»ć™ćƒœć‚æćƒ³ć‚’ć‚ÆćƒŖćƒƒć‚Æć™ć‚‹ćØć€ćƒ•ć‚”ć‚¤ćƒ«ć‚’éŽåŽ»ć®ćƒćƒ¼ć‚øćƒ§ćƒ³ć«ęˆ»ć—ć¾ć™", "Files Versioning" => "ćƒ•ć‚”ć‚¤ćƒ«ć®ćƒćƒ¼ć‚øćƒ§ćƒ³ē®”ē†", "Enable" => "ęœ‰åŠ¹åŒ–" ); diff --git a/apps/files_versions/l10n/lv.php b/apps/files_versions/l10n/lv.php index ae2ead12f4c..2203dc706b8 100644 --- a/apps/files_versions/l10n/lv.php +++ b/apps/files_versions/l10n/lv.php @@ -1,5 +1,13 @@ "Nevarēja atgriezt — %s", +"success" => "veiksme", +"File %s was reverted to version %s" => "Datne %s tika atgriezt uz versiju %s", +"failure" => "neveiksme", +"File %s could not be reverted to version %s" => "Datni %s nevarēja atgriezt uz versiju %s", +"No old versions available" => "Nav pieejamu vecāku versiju", +"No path specified" => "Nav norādÄ«ts ceļŔ", "History" => "Vēsture", +"Revert a file to a previous version by clicking on its revert button" => "Atgriez datni uz iepriekŔēju versiju, spiežot uz tās atgrieÅ”anas pogu", "Files Versioning" => "Datņu versiju izskoÅ”ana", "Enable" => "Aktivēt" ); diff --git a/apps/files_versions/l10n/ru.php b/apps/files_versions/l10n/ru.php index 4c7fb501091..221d24ce8d1 100644 --- a/apps/files_versions/l10n/ru.php +++ b/apps/files_versions/l10n/ru.php @@ -1,5 +1,13 @@ "ŠŠµ может Š±Ń‹Ń‚ŃŒ возвращён: %s", +"success" => "ŃƒŃŠæŠµŃ…", +"File %s was reverted to version %s" => "Файл %s был возвращён Šŗ версии %s", +"failure" => "провал", +"File %s could not be reverted to version %s" => "Файл %s не может Š±Ń‹Ń‚ŃŒ возвращён Šŗ версии %s", +"No old versions available" => "ŠŠµŃ‚ Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹Ń… старых версий", +"No path specified" => "ŠŸŃƒŃ‚ŃŒ не указан", "History" => "Š˜ŃŃ‚Š¾Ń€ŠøŃ", +"Revert a file to a previous version by clicking on its revert button" => "Š’ŠµŃ€Š½ŃƒŃ‚ŃŒ файл Šŗ ŠæŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠµŠ¹ версии нажатием на кнопку возврата", "Files Versioning" => "Версии файлов", "Enable" => "Š’ŠŗŠ»ŃŽŃ‡ŠøŃ‚ŃŒ" ); diff --git a/apps/files_versions/l10n/sk_SK.php b/apps/files_versions/l10n/sk_SK.php index a3a3567cb4f..8a59286b5a5 100644 --- a/apps/files_versions/l10n/sk_SK.php +++ b/apps/files_versions/l10n/sk_SK.php @@ -1,4 +1,9 @@ "uspech", +"File %s was reverted to version %s" => "Subror %s bol vrateny na verziu %s", +"failure" => "chyba", +"No old versions available" => "Nie sĆŗ dostupnĆ© žiadne starÅ”ie verzie", +"No path specified" => "Nevybrali ste cestu", "History" => "História", "Files Versioning" => "VytvĆ”ranie verziĆ­ sĆŗborov", "Enable" => "ZapnĆŗÅ„" diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index a210e6f1a12..e4f27e25a7f 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -43,6 +43,7 @@ "Disable Main Server" => "Desactiva el servidor principal", "When switched on, ownCloud will only connect to the replica server." => "Quan estĆ  connectat, ownCloud nomĆ©s es connecta al servidor de la rĆØplica.", "Use TLS" => "Usa TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "No ho useu adicionalment per a conexions LDAPS, fallarĆ .", "Case insensitve LDAP server (Windows)" => "Servidor LDAP sense distinció entre majĆŗscules i minĆŗscules (Windows)", "Turn off SSL certificate validation." => "Desactiva la validació de certificat SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la connexió nomĆ©s funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor ownCloud.", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 6f5ab4011a4..4c74f195cf4 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -43,6 +43,7 @@ "Disable Main Server" => "ZakĆ”zat hlavnĆ­ serveru", "When switched on, ownCloud will only connect to the replica server." => "Při zapnutĆ­ se ownCloud připojĆ­ pouze k zĆ”ložnĆ­mu serveru", "Use TLS" => "Použít TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "Nepoužívejte pro spojenĆ­ LDAP, selže.", "Case insensitve LDAP server (Windows)" => "LDAP server nerozliÅ”ujĆ­cĆ­ velikost znakÅÆ (Windows)", "Turn off SSL certificate validation." => "Vypnout ověřovĆ”nĆ­ SSL certifikĆ”tu.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Pokud připojenĆ­ pracuje pouze s touto možnostĆ­, tak importujte SSL certifikĆ”t SSL serveru do VaÅ”eho serveru ownCloud", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 034f7709ad0..c0a444c0c7d 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -43,6 +43,7 @@ "Disable Main Server" => "Deshabilitar servidor principal", "When switched on, ownCloud will only connect to the replica server." => "Cuando se inicie, ownCloud unicamente estara conectado al servidor replica", "Use TLS" => "Usar TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "No usar adicionalmente para conecciones LDAPS, estas fallaran", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP sensible a mayĆŗsculas/minĆŗsculas (Windows)", "Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud.", diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 5c30a20b683..abe13635698 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -43,6 +43,7 @@ "Disable Main Server" => "DĆ©sactiver le serveur principal", "When switched on, ownCloud will only connect to the replica server." => "Lorsqu'activĆ©, ownCloud ne se connectera qu'au serveur rĆ©pliquĆ©.", "Use TLS" => "Utiliser TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "ƀ ne pas utiliser pour les connexions LDAPS (cela Ć©chouera).", "Case insensitve LDAP server (Windows)" => "Serveur LDAP insensible Ć  la casse (Windows)", "Turn off SSL certificate validation." => "DĆ©sactiver la validation du certificat SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud.", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index 5746f119bc3..594529190d9 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -43,6 +43,7 @@ "Disable Main Server" => "Disabilita server principale", "When switched on, ownCloud will only connect to the replica server." => "Se abilitata, ownCloud si collegherĆ  solo al server di replica.", "Use TLS" => "Usa TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "Da non utilizzare per le connessioni LDAPS, non funzionerĆ .", "Case insensitve LDAP server (Windows)" => "Case insensitve LDAP server (Windows)", "Turn off SSL certificate validation." => "Disattiva il controllo del certificato SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Se la connessione funziona esclusivamente con questa opzione, importa il certificato SSL del server LDAP nel tuo server ownCloud.", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 7697fc5b4fd..11ad6cc7a37 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -43,6 +43,7 @@ "Disable Main Server" => "ćƒ”ć‚¤ćƒ³ć‚µćƒ¼ćƒć‚’ē„”åŠ¹ć«ć™ć‚‹", "When switched on, ownCloud will only connect to the replica server." => "ęœ‰åŠ¹ć«ć™ć‚‹ćØć€ownCloudćÆćƒ¬ćƒ—ćƒŖć‚«ć‚µćƒ¼ćƒć«ć®ćæęŽ„ē¶šć—ć¾ć™ć€‚", "Use TLS" => "TLSć‚’åˆ©ē”Ø", +"Do not use it additionally for LDAPS connections, it will fail." => "LDAPSęŽ„ē¶šć®ćŸć‚ć«čæ½åŠ ć§ćć‚Œć‚’åˆ©ē”Øć—ćŖć„ć§äø‹ć•ć„ć€‚å¤±ę•—ć—ć¾ć™ć€‚", "Case insensitve LDAP server (Windows)" => "å¤§ę–‡å­—ļ¼å°ę–‡å­—ć‚’åŒŗåˆ„ć—ćŖć„LDAPć‚µćƒ¼ćƒļ¼ˆWindows)", "Turn off SSL certificate validation." => "SSLčØ¼ę˜Žę›øć®ē¢ŗčŖć‚’ē„”åŠ¹ć«ć™ć‚‹ć€‚", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "ęŽ„ē¶šćŒć“ć®ć‚Ŗćƒ—ć‚·ćƒ§ćƒ³ć§ć®ćæå‹•ä½œć™ć‚‹å “åˆćÆć€LDAPć‚µćƒ¼ćƒć®SSLčØ¼ę˜Žę›øć‚’ownCloudć‚µćƒ¼ćƒć«ć‚¤ćƒ³ćƒćƒ¼ćƒˆć—ć¦ćć ć•ć„ć€‚", diff --git a/apps/user_ldap/l10n/lv.php b/apps/user_ldap/l10n/lv.php index 532fc1023d4..34e9196b8d9 100644 --- a/apps/user_ldap/l10n/lv.php +++ b/apps/user_ldap/l10n/lv.php @@ -43,6 +43,7 @@ "Disable Main Server" => "Deaktivēt galveno serveri", "When switched on, ownCloud will only connect to the replica server." => "Kad ieslēgts, ownCloud savienosies tikai ar kopijas serveri.", "Use TLS" => "Lietot TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "Neizmanto papildu LDAPS savienojumus! Tas nestrādās.", "Case insensitve LDAP server (Windows)" => "ReÄ£istrnejutÄ«gs LDAP serveris (Windows)", "Turn off SSL certificate validation." => "Izslēgt SSL sertifikātu validēŔanu.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Ja savienojums darbojas ar Å”o opciju, importē LDAP serveru SSL sertifikātu savā ownCloud serverÄ«.", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 3a7edb21104..c60a818a4ee 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'usuari %s ha compartit la carpeta \"%s\" amb vós. EstĆ  disponible per a la descĆ rrega a: %s", "Category type not provided." => "No s'ha especificat el tipus de categoria.", "No category to add?" => "No voleu afegir cap categoria?", +"This category already exists: %s" => "Aquesta categoria ja existeix: %s", "Object type not provided." => "No s'ha proporcionat el tipus d'objecte.", "%s ID not provided." => "No s'ha proporcionat la ID %s.", "Error adding %s to favorites." => "Error en afegir %s als preferits.", @@ -108,7 +109,6 @@ "Security Warning" => "AvĆ­s de seguretat", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "No estĆ  disponible el generador de nombres aleatoris segurs, habiliteu l'extensió de PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sense un generador de nombres aleatoris segurs un atacant podria predir els senyals per restablir la contrasenya i prendre-us el compte.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web.", "Create an admin account" => "Crea un compte d'administrador", "Advanced" => "AvanƧat", "Data folder" => "Carpeta de dades", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index ea8ac8947ec..c95854bc623 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Uživatel %s s vĆ”mi sdĆ­lĆ­ složku \"%s\". Můžete ji stĆ”hnout zde: %s", "Category type not provided." => "NezadĆ”n typ kategorie.", "No category to add?" => "ŽÔdnĆ” kategorie k přidĆ”nĆ­?", +"This category already exists: %s" => "Kategorie již existuje: %s", "Object type not provided." => "NezadĆ”n typ objektu.", "%s ID not provided." => "NezadĆ”no ID %s.", "Error adding %s to favorites." => "Chyba při přidĆ”vĆ”nĆ­ %s k oblĆ­beným.", @@ -108,7 +109,6 @@ "Security Warning" => "BezpečnostnĆ­ upozorněnĆ­", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "NenĆ­ dostupný žÔdný bezpečný generĆ”tor nĆ”hodných čƭsel. Povolte, prosĆ­m, rozŔířenĆ­ OpenSSL v PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpečnĆ©ho generĆ”toru nĆ”hodných čƭsel může ĆŗtočnĆ­k předpovědět token pro obnovu hesla a převzĆ­t kontrolu nad VaŔím ĆŗÄtem.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "VÔŔ adresÔř dat a vÅ”echny VaÅ”e soubory jsou pravděpodobně přístupnĆ© z internetu. Soubor .htaccess, který je poskytovĆ”n ownCloud, nefunguje. DÅÆrazně VĆ”m doporučujeme nastavit vÔŔ webový server tak, aby nebyl adresÔř dat přístupný, nebo přesunout adresÔř dat mimo kořenovou složku dokumentÅÆ webovĆ©ho serveru.", "Create an admin account" => "Vytvořit ĆŗÄet sprĆ”vce", "Advanced" => "PokročilĆ©", "Data folder" => "Složka s daty", diff --git a/core/l10n/da.php b/core/l10n/da.php index 4ade1e53363..ebe4808544b 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -107,7 +107,6 @@ "Security Warning" => "Sikkerhedsadvarsel", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen sikker tilfƦldighedsgenerator til tal er tilgƦngelig. Aktiver venligst OpenSSL udvidelsen.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Uden en sikker tilfƦldighedsgenerator til tal kan en angriber mĆ„ske gƦtte dit gendan kodeord og overtage din konto", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din data mappe og dine filer er muligvis tilgƦngelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler pĆ„ det kraftigste at du konfigurerer din webserver pĆ„ en mĆ„ske sĆ„ data mappen ikke lƦngere er tilgƦngelig eller at du flytter data mappen uden for webserverens dokument rod. ", "Create an admin account" => "Opret en administratorkonto", "Advanced" => "Avanceret", "Data folder" => "Datamappe", diff --git a/core/l10n/de.php b/core/l10n/de.php index 1e437dafa1e..d14af6639c9 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -108,7 +108,6 @@ "Security Warning" => "Sicherheitswarnung", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere die PHP-Erweiterung für OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwƶrter vorherzusehen und Konten zu übernehmen.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Dein Datenverzeichnis und deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass du deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht lƤnger erreichbar ist oder, dass du dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst.", "Create an admin account" => "Administrator-Konto anlegen", "Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index afb51b52916..fdebfeb6587 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Sie freigegeben. Es ist zum Download hier ferfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", +"This category already exists: %s" => "Die Kategorie '%s' existiert bereits.", "Object type not provided." => "Objekttyp nicht angegeben.", "%s ID not provided." => "%s ID nicht angegeben.", "Error adding %s to favorites." => "Fehler beim Hinzufügen von %s zu den Favoriten.", @@ -108,7 +109,6 @@ "Security Warning" => "Sicherheitshinweis", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwƶrter vorherzusehen und Ihr Konto zu übernehmen.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ kƶnnen Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben.", "Create an admin account" => "Administrator-Konto anlegen", "Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", diff --git a/core/l10n/el.php b/core/l10n/el.php index 95e9cf6be70..01c6eb818a2 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -105,7 +105,6 @@ "Security Warning" => "Ī ĻĪæĪµĪ¹Ī“ĪæĻ€ĪæĪÆĪ·ĻƒĪ· Ī‘ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Δεν είναι Γιαθέσιμο το Ļ€ĻĻŒĻƒĪøĪµĻ„Īæ Γημιουργίας τυχαίων Ī±ĻĪ¹ĪøĪ¼ĻŽĪ½ Ī±ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚, Ļ€Ī±ĻĪ±ĪŗĪ±Ī»ĻŽ ĪµĪ½ĪµĻĪ³ĪæĻ€ĪæĪ¹Ī®ĻƒĻ„Īµ το Ļ€ĻĻŒĻƒĪøĪµĻ„Īæ της PHP, OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Χωρίς το Ļ€ĻĻŒĻƒĪøĪµĻ„Īæ Γημιουργίας τυχαίων Ī±ĻĪ¹ĪøĪ¼ĻŽĪ½ Ī±ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚, μπορεί να Ī“Ī¹Ī±ĻĻĪµĻĻƒĪµĪ¹ Īæ Ī»ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĻŒĻ‚ ĻƒĪ±Ļ‚ Ī±Ļ€ĻŒ ĪµĻ€Ī¹ĪøĪ­ĻƒĪµĪ¹Ļ‚ ĻƒĻ„Īæ ΓιαΓίκτυο.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος data και τα αρχεία ĻƒĪ±Ļ‚ Ļ€Ī¹ĪøĪ±Ī½ĻŒĪ½ να είναι Γιαθέσιμα ĻƒĻ„Īæ ΓιαΓίκτυο. Το αρχείο .htaccess που παρέχει το ownCloud Γεν Ī“ĪæĻ…Ī»ĪµĻĪµĪ¹. Σας προτείνουμε Ī±Ī½ĪµĻ€Ī¹Ļ†ĻĪ»Ī±ĪŗĻ„Ī± να ĻĻ…ĪøĪ¼ĪÆĻƒĪµĻ„Īµ το Ī“Ī¹Ī±ĪŗĪæĪ¼Ī¹ĻƒĻ„Ī® ĻƒĪ±Ļ‚ με τέτοιο Ļ„ĻĻŒĻ€Īæ ĻŽĻƒĻ„Īµ Īæ κατάλογος data να μην είναι πλέον Ļ€ĻĪæĻƒĪ²Ī¬ĻƒĪ¹Ī¼ĪæĻ‚ Ī® να Ī¼ĪµĻ„Ī±ĪŗĪ¹Ī½Ī®ĻƒĪµĻ„Īµ τον κατάλογο data έξω Ī±Ļ€ĻŒ τον κατάλογο του Ī“Ī¹Ī±ĪŗĪæĪ¼Ī¹ĻƒĻ„Ī®.", "Create an admin account" => "Ī”Ī·Ī¼Ī¹ĪæĻ…ĻĪ³Ī®ĻƒĻ„Īµ έναν λογαριασμό Ī“Ī¹Ī±Ļ‡ĪµĪ¹ĻĪ¹ĻƒĻ„Ī®", "Advanced" => "Για προχωρημένους", "Data folder" => "Φάκελος ΓεΓομένων", diff --git a/core/l10n/es.php b/core/l10n/es.php index b56fd13c1b2..a95d408a0be 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "El usuario %s ha compartido la carpeta \"%s\" contigo. Puedes descargarla aquĆ­: %s", "Category type not provided." => "Tipo de categoria no proporcionado.", "No category to add?" => "ĀæNinguna categorĆ­a para aƱadir?", +"This category already exists: %s" => "Esta categoria ya existe: %s", "Object type not provided." => "ipo de objeto no proporcionado.", "%s ID not provided." => "%s ID no proporcionado.", "Error adding %s to favorites." => "Error aƱadiendo %s a los favoritos.", @@ -108,7 +109,6 @@ "Security Warning" => "Advertencia de seguridad", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "No estĆ” disponible un generador de nĆŗmeros aleatorios seguro, por favor habilite la extensión OpenSSL de PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de nĆŗmeros aleatorios seguro un atacante podrĆ­a predecir los tokens de reinicio de su contraseƱa y tomar control de su cuenta.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Su directorio de datos y sus archivos estĆ”n probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no estĆ” funcionando. Sugerimos fuertemente que configure su servidor web de manera que el directorio de datos ya no estĆ© accesible o mueva el directorio de datos fuera del documento raĆ­z de su servidor web.", "Create an admin account" => "Crea una cuenta de administrador", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", @@ -128,6 +128,7 @@ "Lost your password?" => "ĀæHas perdido tu contraseƱa?", "remember" => "recuĆ©rdame", "Log in" => "Entrar", +"Alternative Logins" => "Nombre de usuarios alternativos", "prev" => "anterior", "next" => "siguiente", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo." diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 0764077a1c1..819e52a7856 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -108,7 +108,6 @@ "Security Warning" => "Advertencia de seguridad", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "No hay disponible ningĆŗn generador de nĆŗmeros aleatorios seguro. Por favor habilitĆ” la extensión OpenSSL de PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sin un generador de nĆŗmeros aleatorios seguro un atacante podrĆ­a predecir los tokens de reinicio de tu contraseƱa y tomar control de tu cuenta.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no estĆ” funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no estĆ© accesible, o que muevas el directorio de datos afuera del directorio raĆ­z de tu servidor web.", "Create an admin account" => "Crear una cuenta de administrador", "Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index a810e7fd492..7dce8c53fb9 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -108,7 +108,6 @@ "Security Warning" => "Segurtasun abisua", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ez dago hausazko zenbaki sortzaile segururik eskuragarri, mesedez gatiu PHP OpenSSL extensioa.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Hausazko zenbaki sortzaile segururik gabe erasotzaile batek pasahitza berrezartzeko kodeak iragarri ditzake eta zure kontuaz jabetu.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Create an admin account" => "Sortu kudeatzaile kontu bat", "Advanced" => "Aurreratua", "Data folder" => "Datuen karpeta", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 4d0a96996ea..dedbf6723f7 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -100,7 +100,6 @@ "Edit categories" => "Muokkaa luokkia", "Add" => "LisƤƤ", "Security Warning" => "Turvallisuusvaroitus", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Data-kansio ja tiedostot ovat ehkƤ saavutettavissa InternetistƤ. .htaccess-tiedosto, jolla kontrolloidaan pƤƤsyƤ, ei toimi. Suosittelemme, ettƤ muutat web-palvelimesi asetukset niin ettei data-kansio ole enƤƤ pƤƤsyƤ tai siirrƤt data-kansion pois web-palvelimen tiedostojen juuresta.", "Create an admin account" => "Luo yllƤpitƤjƤn tunnus", "Advanced" => "LisƤasetukset", "Data folder" => "Datakansio", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 7014cb82911..ad8ff0a6fca 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagĆ© le dossier \"%s\" avec vous. Il est disponible au tĆ©lĆ©chargement ici : %s", "Category type not provided." => "Type de catĆ©gorie non spĆ©cifiĆ©.", "No category to add?" => "Pas de catĆ©gorie Ć  ajouter ?", +"This category already exists: %s" => "Cette catĆ©gorie existe dĆ©jĆ  : %s", "Object type not provided." => "Type d'objet non spĆ©cifiĆ©.", "%s ID not provided." => "L'identifiant de %s n'est pas spĆ©cifiĆ©.", "Error adding %s to favorites." => "Erreur lors de l'ajout de %s aux favoris.", @@ -108,7 +109,6 @@ "Security Warning" => "Avertissement de sĆ©curitĆ©", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Aucun gĆ©nĆ©rateur de nombre alĆ©atoire sĆ©curisĆ© n'est disponible, veuillez activer l'extension PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sans gĆ©nĆ©rateur de nombre alĆ©atoire sĆ©curisĆ©, un attaquant peut ĆŖtre en mesure de prĆ©dire les jetons de rĆ©initialisation du mot de passe, et ainsi prendre le contrĆ“le de votre compte utilisateur.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de maniĆØre Ć  ce que le dossier data ne soit plus accessible ou bien de dĆ©placer le dossier data en dehors du dossier racine des documents du serveur web.", "Create an admin account" => "CrĆ©er un compte administrateur", "Advanced" => "AvancĆ©", "Data folder" => "RĆ©pertoire des donnĆ©es", @@ -128,6 +128,7 @@ "Lost your password?" => "Mot de passe perdu ?", "remember" => "se souvenir de moi", "Log in" => "Connexion", +"Alternative Logins" => "Logins alternatifs", "prev" => "prĆ©cĆ©dent", "next" => "suivant", "Updating ownCloud to version %s, this may take a while." => "Mise Ć  jour en cours d'ownCloud vers la version %s, cela peut prendre du temps." diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 382cd09f009..8fd9292ce61 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -105,7 +105,6 @@ "Security Warning" => "Aviso de seguranza", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non hai un xerador de nĆŗmeros ao chou dispoƱƭbel. Active o engadido de OpenSSL para PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sen un xerador seguro de nĆŗmeros ao chou poderĆ­a acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa sĆŗa conta.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesĆ­beis a travĆ©s da Internet. O ficheiro .htaccess que fornece ownCloud non estĆ” a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesĆ­bel ou mova o cartafol de datos fora do directorio raĆ­z de datos do servidor web.", "Create an admin account" => "Crear unha contra de administrador", "Advanced" => "Avanzado", "Data folder" => "Cartafol de datos", diff --git a/core/l10n/he.php b/core/l10n/he.php index 09da86bf5ee..75c378ceceb 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -105,7 +105,6 @@ "Security Warning" => "אזהרת אבטחה", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "אין מחולל ×ž×”×¤×Ø×™× ××§×Ø××™×™× מאובטח, נא להפעיל את ההרחבה OpenSSL ב־PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ללא מחולל ×ž×”×¤×Ø×™× ××§×Ø××™×™× מאובטח תוקף יכול לנבא את ×ž×—×Ø×•×–×•×Ŗ איפוה הההמה ×•×œ×”×©×Ŗ×œ×˜ על החשבון שלך.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "×™×Ŗ×›×Ÿ שתיקיית ×”× ×Ŗ×•× ×™× והקבצים שלך נגישים ×“×Ø×š ×”××™× ×˜×Ø× ×˜. קובׄ ×”Ö¾ā€Ž.htaccess שמהופק על ידי ownCloud כנראה אינו עובד. אנו ממליצים בחום ×œ×”×’×“×™×Ø את שרת ×”××™× ×˜×Ø× ×˜ שלך ×‘×“×Ø×š שבה ×Ŗ×™×§×™×™×Ŗ ×”× ×Ŗ×•× ×™× לא ×Ŗ×”×™×” זמינה עוד או ×œ×”×¢×‘×™×Ø את ×Ŗ×™×§×™×™×Ŗ ×”× ×Ŗ×•× ×™× מחוׄ ×œ×”×¤×Ø×™×™×Ŗ העל של שרת ×”××™× ×˜×Ø× ×˜.", "Create an admin account" => "יצירת חשבון מנהל", "Advanced" => "×ž×Ŗ×§×“×", "Data folder" => "×Ŗ×™×§×™×™×Ŗ × ×Ŗ×•× ×™×", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 8cbc81efe84..fc71a669e89 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -105,7 +105,6 @@ "Security Warning" => "BiztonsĆ”gi figyelmeztetĆ©s", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nem Ć©rhető el megfelelő vĆ©letlenszĆ”m-generĆ”tor, telepĆ­teni kellene a PHP OpenSSL kiegĆ©szĆ­tĆ©sĆ©t.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Megfelelő vĆ©letlenszĆ”m-generĆ”tor hiĆ”nyĆ”ban egy tĆ”madó szĆ”ndĆ©kĆŗ idegen kĆ©pes lehet megjósolni a jelszóvisszaĆ”llĆ­tó tokent, Ć©s Ɩn helyett belĆ©pni.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Az adatkƶnytĆ”ra Ć©s az itt levő fĆ”jlok valószĆ­nűleg elĆ©rhetők az internetről. Az ownCloud Ć”ltal beillesztett .htaccess fĆ”jl nem műkƶdik. Nagyon fontos, hogy a webszervert Ćŗgy konfigurĆ”lja, hogy az adatkƶnyvtĆ”r nem legyen kƶzvetlenül kĆ­vülről elĆ©rhető, vagy az adatkƶnyvtĆ”rt tegye a webszerver dokumentumfĆ”jĆ”n kĆ­vülre.", "Create an admin account" => "Rendszergazdai belĆ©pĆ©s lĆ©trehozĆ”sa", "Advanced" => "Haladó", "Data folder" => "AdatkƶnyvtĆ”r", diff --git a/core/l10n/is.php b/core/l10n/is.php index d542db5777b..997a582d228 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -105,7 +105,6 @@ "Security Warning" => "Ɩryggis aưvƶrun", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Enginn traustur slembitƶlugjafi Ć­ boưi, vinsamlegast virkjaưu PHP OpenSSL viưbótina.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ɓn ƶruggs slembitƶlugjafa er mƶgulegt aư sjĆ” fyrir ƶryggis auưkenni til aư endursetja lykilorư og komast inn Ć” aưganginn þinn.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Gagnamappan þín er aư ƶllum lĆ­kindum aưgengileg frĆ” internetinu. SkrĆ”in .htaccess sem fylgir meư ownCloud er ekki aư virka. Viư mƦlum eindregiư meư þvĆ­ aư þú stillir vefþjóninn þannig aư gagnamappan verưi ekki aưgengileg frĆ” internetinu eưa fƦrir hana Ćŗt fyrir vefrótina.", "Create an admin account" => "ÚtbĆŗa vefstjóra aưgang", "Advanced" => "ƍtarlegt", "Data folder" => "Gagnamappa", diff --git a/core/l10n/it.php b/core/l10n/it.php index a9febc8ea96..1068e0c31c7 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "L'utente %s ha condiviso la cartella \"%s\" con te. ƈ disponibile per lo scaricamento qui: %s", "Category type not provided." => "Tipo di categoria non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", +"This category already exists: %s" => "Questa categoria esiste giĆ : %s", "Object type not provided." => "Tipo di oggetto non fornito.", "%s ID not provided." => "ID %s non fornito.", "Error adding %s to favorites." => "Errore durante l'aggiunta di %s ai preferiti.", @@ -108,7 +109,6 @@ "Security Warning" => "Avviso di sicurezza", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Non ĆØ disponibile alcun generatore di numeri casuali sicuro. Abilita l'estensione OpenSSL di PHP", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Senza un generatore di numeri casuali sicuro, un malintenzionato potrebbe riuscire a individuare i token di ripristino delle password e impossessarsi del tuo account.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito.", "Create an admin account" => "Crea un account amministratore", "Advanced" => "Avanzate", "Data folder" => "Cartella dati", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index c569c63355b..803faaf75a6 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ćƒ¦ćƒ¼ć‚¶ %s ćÆć‚ćŖćŸćØćƒ•ć‚©ćƒ«ćƒ€ \"%s\" ć‚’å…±ęœ‰ć—ć¦ć„ć¾ć™ć€‚ć“ć”ć‚‰ć‹ć‚‰ćƒ€ć‚¦ćƒ³ćƒ­ćƒ¼ćƒ‰ć§ćć¾ć™: %s", "Category type not provided." => "ć‚«ćƒ†ć‚“ćƒŖć‚æć‚¤ćƒ—ćÆęä¾›ć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚", "No category to add?" => "čæ½åŠ ć™ć‚‹ć‚«ćƒ†ć‚“ćƒŖćÆć‚ć‚Šć¾ć›ć‚“ć‹ļ¼Ÿ", +"This category already exists: %s" => "ć“ć®ć‚«ćƒ†ć‚“ćƒŖćÆć™ć§ć«å­˜åœØć—ć¾ć™: %s", "Object type not provided." => "ć‚Ŗćƒ–ć‚øć‚§ć‚Æćƒˆć‚æć‚¤ćƒ—ćÆęä¾›ć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚", "%s ID not provided." => "%s ID ćÆęä¾›ć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚", "Error adding %s to favorites." => "ćŠę°—ć«å…„ć‚Šć« %s ć‚’čæ½åŠ ć‚Øćƒ©ćƒ¼", @@ -108,7 +109,6 @@ "Security Warning" => "ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£č­¦å‘Š", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ć‚»ć‚­ćƒ„ć‚¢ćŖä¹±ę•°ē”Ÿęˆå™ØćŒåˆ©ē”ØåÆčƒ½ć§ćÆć‚ć‚Šć¾ć›ć‚“ć€‚PHP恮OpenSSLę‹”å¼µć‚’ęœ‰åŠ¹ć«ć—ć¦äø‹ć•ć„ć€‚", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ć‚»ć‚­ćƒ„ć‚¢ćŖä¹±ę•°ē”Ÿęˆå™ØćŒē„”ć„å “åˆć€ę”»ę’ƒč€…ćÆćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ćƒŖć‚»ćƒƒćƒˆć®ćƒˆćƒ¼ć‚Æćƒ³ć‚’äŗˆęø¬ć—ć¦ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä¹—ć£å–ć‚‰ć‚Œć‚‹åÆčƒ½ę€§ćŒć‚ć‚Šć¾ć™ć€‚", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ćƒ‡ćƒ¼ć‚æćƒ‡ć‚£ćƒ¬ć‚ÆćƒˆćƒŖćØćƒ•ć‚”ć‚¤ćƒ«ćŒęć‚‰ćć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆć‹ć‚‰ć‚¢ć‚Æć‚»ć‚¹ć§ćć‚‹ć‚ˆć†ć«ćŖć£ć¦ć„ć¾ć™ć€‚ownCloudćŒęä¾›ć™ć‚‹ .htaccessćƒ•ć‚”ć‚¤ćƒ«ćŒę©Ÿčƒ½ć—ć¦ć„ć¾ć›ć‚“ć€‚ćƒ‡ćƒ¼ć‚æćƒ‡ć‚£ćƒ¬ć‚ÆćƒˆćƒŖć‚’å…Øćć‚¢ć‚Æć‚»ć‚¹ć§ććŖć„ć‚ˆć†ć«ć™ć‚‹ć‹ć€ćƒ‡ćƒ¼ć‚æćƒ‡ć‚£ćƒ¬ć‚ÆćƒˆćƒŖć‚’ć‚¦ć‚§ćƒ–ć‚µćƒ¼ćƒć®ćƒ‰ć‚­ćƒ„ćƒ”ćƒ³ćƒˆćƒ«ćƒ¼ćƒˆć®å¤–ć«ē½®ćć‚ˆć†ć«ć‚¦ć‚§ćƒ–ć‚µćƒ¼ćƒć‚’čØ­å®šć™ć‚‹ć“ćØć‚’å¼·ććŠå‹§ć‚ć—ć¾ć™ć€‚ ", "Create an admin account" => "ē®”ē†č€…ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä½œęˆć—ć¦ćć ć•ć„", "Advanced" => "詳瓰設定", "Data folder" => "ćƒ‡ćƒ¼ć‚æćƒ•ć‚©ćƒ«ćƒ€", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 6133703b97a..172ec3e03a5 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -108,7 +108,6 @@ "Security Warning" => "ė³“ģ•ˆ 경고", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ģ•ˆģ „ķ•œ ė‚œģˆ˜ ģƒģ„±źø°ė„¼ ģ‚¬ģš©ķ•  수 ģ—†ģŠµė‹ˆė‹¤. PHPģ˜ OpenSSL ķ™•ģž„ģ„ ķ™œģ„±ķ™”ķ•“ ģ£¼ģ‹­ģ‹œģ˜¤.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ģ•ˆģ „ķ•œ ė‚œģˆ˜ ģƒģ„±źø°ė„¼ ģ‚¬ģš©ķ•˜ģ§€ ģ•Šģœ¼ė©“ ź³µź²©ģžź°€ ģ•”ķ˜ø ģ“ˆźø°ķ™” ķ† ķ°ģ„ ģ¶”ģø”ķ•˜ģ—¬ ź³„ģ •ģ„ ķƒˆģ·Øķ•  수 ģžˆģŠµė‹ˆė‹¤.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ė°ģ“ķ„° 디렉터리와 ķŒŒģ¼ģ„ ģøķ„°ė„·ģ—ģ„œ 접근할 수 ģžˆėŠ” 것 ź°™ģŠµė‹ˆė‹¤. ownCloudģ—ģ„œ ģ œź³µķ•œ .htaccess ķŒŒģ¼ģ“ ģž‘ė™ķ•˜ģ§€ ģ•ŠģŠµė‹ˆė‹¤. 웹 ģ„œė²„ė„¼ ė‹¤ģ‹œ ģ„¤ģ •ķ•˜ģ—¬ ė°ģ“ķ„° 디렉터리에 접근할 수 ģ—†ė„ė” ķ•˜ź±°ė‚˜ ė¬øģ„œ 루트 ė°”ź¹„ģŖ½ģœ¼ė”œ ģ˜®źø°ėŠ” ź²ƒģ„ ģ¶”ģ²œķ•©ė‹ˆė‹¤.", "Create an admin account" => "ź“€ė¦¬ģž 계정 ė§Œė“¤źø°", "Advanced" => "ź³ źø‰", "Data folder" => "ė°ģ“ķ„° ķ“ė”", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index f25afe18686..563fd8884b0 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -84,7 +84,6 @@ "Security Warning" => "Saugumo praneÅ”imas", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Saugaus atsitiktinių skaičių generatoriaus nėra, praÅ”ome ÄÆjungti PHP OpenSSL modulÄÆ.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Be saugaus atsitiktinių skaičių generatoriaus, piktavaliai gali atspėti JÅ«sų slaptažodÄÆ ir pasisavinti paskyrą.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "JÅ«sų duomenų aplankalas ir JÅ«sų failai turbÅ«t yra pasiekiami per internetą. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebÅ«tų pasiekiami per internetą, arba persikelti juos kitur.", "Create an admin account" => "Sukurti administratoriaus paskyrą", "Advanced" => "IÅ”plėstiniai", "Data folder" => "Duomenų katalogas", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 14f9a3fdf1a..bc2306774aa 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Lietotājs %s ar jums dalÄ«jās ar mapi ā€œ%sā€. To var lejupielādēt Å”eit — %s", "Category type not provided." => "Kategorijas tips nav norādÄ«ts.", "No category to add?" => "Nav kategoriju, ko pievienot?", +"This category already exists: %s" => "Šāda kategorija jau eksistē — %s", "Object type not provided." => "Objekta tips nav norādÄ«ts.", "%s ID not provided." => "%s ID nav norādÄ«ts.", "Error adding %s to favorites." => "Kļūda, pievienojot %s izlasei.", @@ -108,7 +109,6 @@ "Security Warning" => "BrÄ«dinājums par droŔību", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nav pieejams droÅ”s nejauÅ”u skaitļu Ä£enerators. LÅ«dzu, aktivējiet PHP OpenSSL paplaÅ”inājumu.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez droÅ”a nejauÅ”u skaitļu Ä£eneratora uzbrucējs var paredzēt paroļu atjaunoÅ”anas marÄ·ierus un pārņem jÅ«su kontu.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "JÅ«su datu direktorija un datnes visdrÄ«zāk ir pieejamas no interneta. ownCloud nodroÅ”inātā .htaccess datne nedarbojas. Mēs iesakām konfigurēt serveri tā, lai datu direktorija vairs nebÅ«tu pieejama, vai arÄ« pārvietojiet datu direktoriju ārpus tÄ«mekļa servera dokumentu saknes.", "Create an admin account" => "Izveidot administratora kontu", "Advanced" => "PaplaÅ”ināti", "Data folder" => "Datu mape", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 49befd912c2..d9da7669004 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -105,7 +105,6 @@ "Security Warning" => "БезбеГносно ŠæŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ“ŃƒŠ²Š°ŃšŠµ", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ŠŠµ е Гостапен безбеГен генератор на ŃŠ»ŃƒŃ‡Š°Ń˜Š½Šø броеви, Ве молам озвоможете го OpenSSL PHP ГоГатокот.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без ŃŠøŠ³ŃƒŃ€ŠµŠ½ генератор на ŃŠ»ŃƒŃ‡Š°Ń˜Š½Šø броеви напаѓач може Га ги преГвиГи жетоните за Ń€ŠµŃŠµŃ‚ŠøŃ€Š°ŃšŠµ на лозинка Šø Га преземе контрола врз Š’Š°ŃˆŠ°Ń‚Š° сметка. ", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Š’Š°ŃˆŠ°Ń‚Š° папка со поГатоци Šø Гатотеките е Š½Š°Ń˜Š²ŠµŃ€Š¾Ń˜Š°Ń‚но Гостапна оГ интернет. .htaccess Гатотеката ŃˆŃ‚Š¾ ја овозможува ownCloud не Ń„ŃƒŠ½Ń†ŠøŠ¾Š½ŠøŃ€Š°. Дилно ŠæŃ€ŠµŠæŠ¾Ń€Š°Ń‡ŃƒŠ²Š°Š¼Šµ Га го ŠøŃŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€ŠøŃ€Š°Ń‚Šµ Š²Š°ŃˆŠøŠ¾Ń‚ сервер за Š²Š°ŃˆŠ°Ń‚а папка со поГатоци не е Гостапна ŠæŃ€ŠµŠŗŃƒ интернетт или преместете ја наГвор оГ коренот на веб серверот.", "Create an admin account" => "ŠŠ°ŠæŃ€Š°Š²ŠµŃ‚Šµ аГминистраторска сметка", "Advanced" => "ŠŠ°ŠæŃ€ŠµŠ“Š½Š¾", "Data folder" => "ФолГер со поГатоци", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index f2e411a262f..1dc8a9ca3be 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -108,7 +108,6 @@ "Security Warning" => "Beveiligingswaarschuwing", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL extentie aan.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Zonder random nummer generator is het mogelijk voor een aanvaller om de reset tokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htaccess bestand dat ownCloud levert werkt niet goed. U wordt aangeraden om de configuratie van uw webserver zodanig aan te passen dat de data folders niet meer publiekelijk toegankelijk zijn. U kunt ook de data folder verplaatsen naar een folder buiten de webserver document folder.", "Create an admin account" => "Maak een beheerdersaccount aan", "Advanced" => "Geavanceerd", "Data folder" => "Gegevensmap", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 19f0a7c29c6..682289326dd 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -106,7 +106,6 @@ "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Niedostępny bezpieczny generator liczb losowych, należy włączyć rozszerzenie OpenSSL w PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpiecznego generatora liczb losowych, osoba atakująca może być w stanie przewidzieć resetujące hasło tokena i przejąć kontrolę nad swoim kontem.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Katalog danych (data) i pliki są prawdopodobnie dostępnego z Internetu. SprawdÅŗ plik .htaccess oraz konfigurację serwera (hosta). Sugerujemy, skonfiguruj swój serwer w taki sposób, żeby dane katalogu nie były dostępne lub przenieść katalog danych spoza głównego dokumentu webserwera.", "Create an admin account" => "Tworzenie konta administratora", "Advanced" => "Zaawansowane", "Data folder" => "Katalog danych", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 7ca42b43c16..0d440f4c9d3 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -108,7 +108,6 @@ "Security Warning" => "Aviso de SeguranƧa", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nenhum gerador de nĆŗmero aleatório de seguranƧa disponĆ­vel. Habilite a extensĆ£o OpenSSL do PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sem um gerador de nĆŗmero aleatório de seguranƧa, um invasor pode ser capaz de prever os sĆ­mbolos de redefinição de senhas e assumir sua conta.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Seu diretório de dados e seus arquivos estĆ£o, provavelmente, acessĆ­veis a partir da internet. O .htaccess que o ownCloud fornece nĆ£o estĆ” funcionando. Nós sugerimos que vocĆŖ configure o seu servidor web de uma forma que o diretório de dados esteja mais acessĆ­vel ou que vocĆŖ mova o diretório de dados para fora da raiz do servidor web.", "Create an admin account" => "Criar uma conta de administrador", "Advanced" => "AvanƧado", "Data folder" => "Pasta de dados", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 21cb8b51b3d..3fb3361b2dc 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -108,7 +108,6 @@ "Security Warning" => "Aviso de SeguranƧa", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "NĆ£o existe nenhum gerador seguro de nĆŗmeros aleatórios, por favor, active a extensĆ£o OpenSSL no PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sem nenhum gerador seguro de nĆŗmeros aleatórios, uma pessoa mal intencionada pode prever a sua password, reiniciar as seguranƧas adicionais e tomar conta da sua conta. ", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "A sua pasta com os dados e os seus ficheiros estĆ£o provavelmente acessĆ­veis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessĆ­vel, ou mova a pasta com os dados para fora da raiz de documentos do servidor web.", "Create an admin account" => "Criar uma conta administrativa", "Advanced" => "AvanƧado", "Data folder" => "Pasta de dados", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 5558f2bb9ce..da9f1a7da94 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -105,7 +105,6 @@ "Security Warning" => "Avertisment de securitate", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Ǝți recomandăm să configurezi server-ul tău web Ć®ntr-un mod Ć®n care directorul de date să nu mai fie accesibil sau mută directorul de date Ć®n afara directorului root al server-ului web.", "Create an admin account" => "Crează un cont de administrator", "Advanced" => "Avansat", "Data folder" => "Director date", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index c119c68c404..0495f60d03f 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ŠŸŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒ %s открыл вам Š“Š¾ŃŃ‚ŃƒŠæ Šŗ папке \"%s\". ŠžŠ½Š° Š“Š¾ŃŃ‚ŃƒŠæŠ½Š° Š“Š»Ń Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø зГесь: %s", "Category type not provided." => "Тип категории не преГоставлен", "No category to add?" => "ŠŠµŃ‚ категорий Š“Š»Ń Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ?", +"This category already exists: %s" => "Эта ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚: %s", "Object type not provided." => "Тип Š¾Š±ŃŠŠµŠŗŃ‚а не преГоставлен", "%s ID not provided." => "ID %s не преГоставлен", "Error adding %s to favorites." => "ŠžŃˆŠøŠ±ŠŗŠ° Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ %s в избранное", @@ -108,7 +109,6 @@ "Security Warning" => "ŠŸŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ безопасности", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ŠŠµŃ‚ Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾Š³Š¾ защищенного генератора ŃŠ»ŃƒŃ‡Š°Š¹Š½Ń‹Ń… чисел, ŠæŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, Š²ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šµ Ń€Š°ŃŃˆŠøŃ€ŠµŠ½ŠøŠµ PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без защищенного генератора ŃŠ»ŃƒŃ‡Š°Š¹Š½Ń‹Ń… чисел Š·Š»Š¾ŃƒŠ¼Ń‹ŃˆŠ»ŠµŠ½Š½ŠøŠŗ может ŠæŃ€ŠµŠ“ŃƒŠ³Š°Š“Š°Ń‚ŃŒ токены сброса ŠæŠ°Ń€Š¾Š»Ń Šø Š·Š°Š²Š»Š°Š“ŠµŃ‚ŃŒ Š’Š°ŃˆŠµŠ¹ ŃƒŃ‡ŠµŃ‚Š½Š¾Š¹ Š·Š°ŠæŠøŃŃŒŃŽ.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Š’Š°ŃˆŠø каталоги Ганных Šø файлы, Š²ŠµŃ€Š¾ŃŃ‚Š½Š¾, Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹ ŠøŠ· Š˜Š½Ń‚ŠµŃ€Š½ŠµŃ‚Š°. Файл .htaccess, ŠæŃ€ŠµŠ“Š¾ŃŃ‚Š°Š²Š»ŃŠµŠ¼Ń‹Š¹ ownCloud, не работает. ŠœŃ‹ Š½Š°ŃŃ‚Š¾ŃŃ‚ŠµŠ»ŃŒŠ½Š¾ Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŠµŠ¼ Вам Š½Š°ŃŃ‚Ń€Š¾ŠøŃ‚ŃŒ вебсервер таким образом, чтобы каталоги Ганных больше не были Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹, или ŠæŠµŃ€ŠµŠ¼ŠµŃŃ‚ŠøŃ‚ŃŒ ŠøŃ… за преГелы корневого каталога Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š² веб-сервера.", "Create an admin account" => "Š”Š¾Š·Š“Š°Ń‚ŃŒ ŃƒŃ‡Ń‘Ń‚Š½ŃƒŃŽ запись аГминистратора", "Advanced" => "Š”Š¾ŠæŠ¾Š»Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾", "Data folder" => "Š”ŠøŃ€ŠµŠŗŃ‚Š¾Ń€ŠøŃ с Ганными", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 96a0e506e7a..fad6ebeddcd 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -5,6 +5,7 @@ "User %s shared the folder \"%s\" with you. It is available for download here: %s" => "ŠŸŠ¾Š»ŃŒŠ·Š¾Š²Š°Ń‚ŠµŠ»ŃŒ %s открыл Вам Š“Š¾ŃŃ‚ŃƒŠæ Šŗ папке \"%s\". ŠžŠ½Š° Š“Š¾ŃŃ‚ŃƒŠæŠµŠ½Š° Š“Š»Ń Š·Š°Š³Ń€ŃƒŠ·ŠŗŠø зГесь: %s", "Category type not provided." => "Тип категории не преГоставлен.", "No category to add?" => "ŠŠµŃ‚ категории Š“Š»Ń Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ?", +"This category already exists: %s" => "Эта ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚: %s", "Object type not provided." => "Тип Š¾Š±ŃŠŠµŠŗŃ‚а не преГоставлен.", "%s ID not provided." => "%s ID не преГоставлен.", "Error adding %s to favorites." => "ŠžŃˆŠøŠ±ŠŗŠ° Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ %s в избранное.", @@ -108,7 +109,6 @@ "Security Warning" => "ŠŸŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ системы безопасности", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ŠŠµŃ‚ Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾Š³Š¾ защищенного генератора ŃŠ»ŃƒŃ‡Š°Š¹Š½Ń‹Ń… чисел, ŠæŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, Š²ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šµ Ń€Š°ŃŃˆŠøŃ€ŠµŠ½ŠøŠµ PHP OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без защищенного генератора ŃŠ»ŃƒŃ‡Š°Š¹Š½Ń‹Ń… чисел Š·Š»Š¾ŃƒŠ¼Ń‹ŃˆŠ»ŠµŠ½Š½ŠøŠŗ может ŃŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ, ŃŠ±Ń€Š¾ŃŠøŃ‚ŃŒ ŃƒŃ‡ŠµŃ‚Š½Ń‹Šµ Ганные Šø Š·Š°Š²Š»Š°Š“ŠµŃ‚ŃŒ Š’Š°ŃˆŠøŠ¼ Š°ŠŗŠŗŠ°ŃƒŠ½Ń‚Š¾Š¼.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Š’Š°ŃˆŠø каталоги Ганных Šø файлы, Š²ŠµŃ€Š¾ŃŃ‚Š½Š¾, Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹ ŠøŠ· Š˜Š½Ń‚ŠµŃ€Š½ŠµŃ‚Š°. Файл .htaccess, ŠæŃ€ŠµŠ“Š¾ŃŃ‚Š°Š²Š»ŃŠµŠ¼Ń‹Š¹ ownCloud, не работает. ŠœŃ‹ Š½Š°ŃŃ‚Š¾ŃŃ‚ŠµŠ»ŃŒŠ½Š¾ Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŠµŠ¼ Вам Š½Š°ŃŃ‚Ń€Š¾ŠøŃ‚ŃŒ вебсервер таким образом, чтобы каталоги Ганных больше не были Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹, или ŠæŠµŃ€ŠµŠ¼ŠµŃŃ‚ŠøŃ‚ŃŒ ŠøŃ… за преГелы корневого каталога Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š² веб-сервера.", "Create an admin account" => "Š”Š¾Š·Š“Š°Ń‚ŃŒ admin account", "Advanced" => "Š Š°ŃŃˆŠøŃ€ŠµŠ½Š½Ń‹Š¹", "Data folder" => "Папка Ганных", @@ -128,6 +128,7 @@ "Lost your password?" => "Забыли ŠæŠ°Ń€Š¾Š»ŃŒ?", "remember" => "Š·Š°ŠæŠ¾Š¼Š½ŠøŃ‚ŃŒ", "Log in" => "Войти", +"Alternative Logins" => "ŠŠ»ŃŒŃ‚ŠµŃ€Š½Š°Ń‚ŠøŠ²Š½Ń‹Šµ Имена", "prev" => "ŠæŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠøŠ¹", "next" => "ŃŠ»ŠµŠ“ŃƒŃŽŃ‰ŠøŠ¹", "Updating ownCloud to version %s, this may take a while." => "ŠžŠ±Š½Š¾Š²Š»ŠµŠ½ŠøŠµ ownCloud Го версии %s, ŃŃ‚Š¾ может Š·Š°Š½ŃŃ‚ŃŒ некоторое Š²Ń€ŠµŠ¼Ń." diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index eab1ba10018..eaafca2f3f6 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -71,7 +71,6 @@ "Add" => "ą¶‘ą¶šą·Š කරන්න", "Security Warning" => "ą¶†ą¶»ą¶šą·Šą·‚ą¶š ą¶±ą·’ą·€ą·šą¶Æą¶±ą¶ŗą¶šą·Š", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ą¶†ą¶»ą¶šą·Šą·‚ą·’ą¶­ අහඹු ą·ƒą¶‚ą¶›ą·Šā€ą¶ŗą· ą¶‹ą¶­ą·Šą¶“ą·ą¶Æą¶šą¶ŗą¶šą·Š ą¶±ą·œą¶øą·ą¶­ą·’ නම් ą¶”ą¶¶ą¶œą·š ą¶œą·’ą¶«ą·”ą¶øą¶§ ඓහරදෙන ą¶…ą¶ŗą¶šą·”ą¶§ ą¶‘ą·„ą·’ මුරඓද ą¶ŗą·…ą·’ ඓිහිටුවීමට ą¶…ą·€ą·ą·Šā€ą¶ŗ ą¶§ą·ą¶šą¶± ą¶“ą·„ą·ƒą·”ą·€ą·™ą¶±ą·Š ą·ƒą·œą¶ŗą·ą¶œą·™ą¶± ą¶”ą¶¶ą¶œą·š ą¶œą·’ą¶«ą·”ą¶ø ą¶“ą·ą·„ą·ą¶»ą¶œą¶­ ą·„ą·ą¶š.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ą¶”ą¶¶ą¶œą·š දත්ත ą¶©ą·’ą¶»ą·™ą¶šą·Šą¶§ą¶»ą·’ą¶ŗ ą·„ą· ą¶œą·œą¶±ą·”ą·€ą¶½ą¶§ ą¶…ą¶±ą·Šą¶­ą¶»ą·Šą¶¢ą·ą¶½ą¶ŗą·™ą¶±ą·Š ą¶“ą·’ą·€ą·’ą·ƒą·’ą¶ŗ ą·„ą·ą¶š. ownCloud ą·ƒą¶“ą¶ŗą· ඇති .htaccess ą¶œą·œą¶±ą·”ą·€ ą¶šą·Šā€ą¶»ą·’ą¶ŗą·ą¶šą¶»ą¶±ą·Šą¶±ą·š නැත. ą¶…ą¶“ą·’ තරයේ ą¶šą·’ą¶ŗą· ą·ƒą·’ą¶§ą·’ą¶±ą·”ą¶ŗą·š නම්, මෙම දත්ත ą·„ą· ą¶œą·œą¶±ą·” ą¶‘ą·ƒą·š ą¶“ą·’ą·€ą·’ą·ƒą·“ą¶øą¶§ ą¶±ą·œą·„ą·ą¶šą·’ වන ą¶½ą·™ą·ƒ ą¶”ą¶¶ą·š ą·€ą·™ą¶¶ą·Š ą·ƒą·šą·€ą·ą¶Æą·ą¶ŗą¶šą¶ŗą· ą·€ą·’ą¶±ą·Šā€ą¶ŗą·ą·ƒ කරන ą¶½ą·™ą·ƒ ą·„ą· ą¶‘ą¶ø ą¶©ą·’ą¶»ą·™ą¶šą·Šą¶§ą¶»ą·’ą¶ŗ ą·€ą·™ą¶¶ą·Š ą¶øą·–ą¶½ą¶ŗą·™ą¶±ą·Š ą¶“ą·’ą¶§ą¶­ą¶§ ą¶œą·™ą¶±ą¶ŗą¶± ą¶½ą·™ą·ƒą¶ŗ.", "Advanced" => "දියුණු/ą¶‹ą·ƒą·ƒą·Š", "Data folder" => "දත්ත ą·†ą·ą¶½ą·Šą¶©ą¶»ą¶ŗ", "Configure the database" => "දත්ත ą·ƒą¶øą·”ą¶Æą·ą¶ŗ ą·„ą·ą¶©ą¶œą·ą·ƒą·“ą¶ø", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index ee1555eb5d9..26f04c1bcea 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -5,6 +5,7 @@ "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: %s" => "KategĆ©ria: %s už existuje.", "Object type not provided." => "Neposkytnutý typ objektu.", "%s ID not provided." => "%s ID neposkytnutĆ©.", "Error adding %s to favorites." => "Chyba pri pridĆ”vanĆ­ %s do obľúbených položiek.", @@ -108,7 +109,6 @@ "Security Warning" => "BezpečnostnĆ© varovanie", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nie je dostupný žiadny bezpečný generĆ”tor nĆ”hodných čƭsel, prosĆ­m, povoľte rozŔírenie OpenSSL v PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez bezpečnĆ©ho generĆ”tora nĆ”hodných čƭsel mÓže ĆŗtočnĆ­k predpovedaÅ„ token pre obnovu hesla a prevziaÅ„ kontrolu nad vaŔím kontom.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "VÔŔ priečinok s dĆ”tami a VaÅ”e sĆŗbory sĆŗ pravdepodobne dostupnĆ© z internetu. .htaccess sĆŗbor dodĆ”vaný s inÅ”talĆ”ciou ownCloud nespĺňa Ćŗlohu. DĆ“razne VĆ”m doporučujeme nakonfigurovaÅ„ webserver takým spĆ“sobom, aby dĆ”ta v priečinku neboli verejnĆ©, alebo presuňte dĆ”ta mimo Å”truktĆŗry priečinkov webservera.", "Create an admin account" => "VytvoriÅ„ administrĆ”torský ĆŗÄet", "Advanced" => "PokročilĆ©", "Data folder" => "Priečinok dĆ”t", @@ -128,6 +128,7 @@ "Lost your password?" => "Zabudli ste heslo?", "remember" => "zapamƤtaÅ„", "Log in" => "PrihlĆ”siÅ„ sa", +"Alternative Logins" => "AltrnatĆ­vne loginy", "prev" => "späń", "next" => "ďalej", "Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, mÓže to chvíľu trvaÅ„." diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 73539190042..2b5b02191ec 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -105,7 +105,6 @@ "Security Warning" => "Varnostno opozorilo", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Na voljo ni varnega generatorja naključnih Å”tevil. Prosimo, če omogočite PHP OpenSSL razÅ”iritev.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Brez varnega generatorja naključnih Å”tevil lahko napadalec napove žetone za ponastavitev gesla, kar mu omogoča, da prevzame vaÅ” ​​račun.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud namreč ni omogočena. Močno priporočamo nastavitev spletnega strežnika tako, da mapa podatkov ne bo javno dostopna ali pa, da jo prestavite ven iz korenske mape spletnega strežnika.", "Create an admin account" => "Ustvari skrbniÅ”ki račun", "Advanced" => "Napredne možnosti", "Data folder" => "Mapa s podatki", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 61c2316764a..557cb6a8aba 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -102,7 +102,6 @@ "Security Warning" => "Š”ŠøŠ³ŃƒŃ€Š½Š¾ŃŠ½Š¾ ŃƒŠæŠ¾Š·Š¾Ń€ŠµŃšŠµ", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ПоузГан генератор ŃŠ»ŃƒŃ‡Š°Ń˜Š½ŠøŃ… Š±Ń€Š¾Ń˜ŠµŠ²Š° није Š“Š¾ŃŃ‚ŃƒŠæŠ°Š½, преГлажемо Га ŃƒŠŗŃ™ŃƒŃ‡ŠøŃ‚Šµ PHP ŠæŃ€Š¾ŃˆŠøŃ€ŠµŃšŠµ OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без поузГаног генератора ŃŠ»ŃƒŃ‡Š°Ń˜Š½Š¾Ń… Š±Ń€Š¾Ń˜ŠµŠ²Š° напаГач лако може преГвиГети лозинку за ŠæŠ¾Š½ŠøŃˆŃ‚Š°Š²Š°ŃšŠµ ŠŗŃ™ŃƒŃ‡Š° ŃˆŠøŃ„Ń€Š¾Š²Š°ŃšŠ° Šø отети вам налог.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Š¢Ń€ŠµŠ½ŃƒŃ‚Š½Š¾ су ваши поГаци Šø Гатотеке Š“Š¾ŃŃ‚ŃƒŠæŠ½Šµ са интернета. Датотека .htaccess коју је обезбеГио пакет ownCloud не Ń„ŃƒŠ½ŠŗŃ†ŠøŠ¾Š½ŠøŃˆŠµ. Š”Š°Š²ŠµŃ‚ŃƒŃ˜ŠµŠ¼Š¾ вам Га поГесите веб сервер тако Га Š“ŠøŃ€ŠµŠŗŃ‚Š¾Ń€ŠøŃ˜ŃƒŠ¼ са поГацима не буГе изложен или Га га преместите изван коренског Š“ŠøŃ€ŠµŠŗŃ‚Š¾Ń€ŠøŃ˜ŃƒŠ¼Š° веб сервера.", "Create an admin account" => "ŠŠ°ŠæŃ€Š°Š²Šø аГминистративни налог", "Advanced" => "ŠŠ°ŠæŃ€ŠµŠ“Š½Š¾", "Data folder" => "Фацикла поГатака", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 2e129038ff0..bc96c237134 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -108,7 +108,6 @@ "Security Warning" => "SƤkerhetsvarning", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen sƤker slumptalsgenerator finns tillgƤnglig. Du bƶr aktivera PHP OpenSSL-tillƤgget.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Utan en sƤker slumptalsgenerator kan angripare fĆ„ mƶjlighet att fƶrutsƤga lƶsenordsĆ„terstƤllningar och ta ƶver ditt konto.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datakatalog och dina filer Ƥr fƶrmodligen tillgƤngliga frĆ„n Internet. Den .htaccess-fil som ownCloud tillhandahĆ„ller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern sĆ„ att datakatalogen inte lƤngre Ƥr tillgƤnglig eller att du flyttar datakatalogen utanfƶr webbserverns dokument-root.", "Create an admin account" => "Skapa ett administratƶrskonto", "Advanced" => "Avancerat", "Data folder" => "Datamapp", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 64d0abad6c1..f7ad09fbc7e 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -97,7 +97,6 @@ "Security Warning" => "ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Žą®šąÆą®šą®°ą®æą®•ąÆą®•ąÆˆ", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ą®•ąÆą®±ą®æą®ŖąÆą®Ŗą®æą®ŸąÆą®Ÿ ą®Žą®£ąÆą®£ą®æą®•ąÆą®•ąÆˆ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®Ŗą®¾ą®© ą®ŖąÆą®±ą®ŖąÆą®Ŗą®¾ą®•ąÆą®•ą®æ / ą®‰ą®£ąÆą®Ÿą®¾ą®•ąÆą®•ą®æą®•ą®³ąÆ ą®‡ą®²ąÆą®²ąÆˆ, ą®¤ą®Æą®µąÆą®šąÆ†ą®ÆąÆą®¤ąÆ PHP OpenSSL ą®ØąÆ€ą®ŸąÆą®šą®æą®ÆąÆˆ ą®‡ą®Æą®²ąÆą®®ąÆˆą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ąÆą®•. ", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®Ŗą®¾ą®© ą®šąÆ€ą®°ą®±ąÆą®± ą®Žą®£ąÆą®£ą®æą®•ąÆą®•ąÆˆą®Æą®¾ą®© ą®ŖąÆą®±ą®ŖąÆą®Ŗą®¾ą®•ąÆą®•ą®æ ą®‡ą®²ąÆą®²ąÆˆą®ÆąÆ†ą®©ą®æą®©ąÆ, ą®¤ą®¾ą®•ąÆą®•ąÆą®©ą®°ą®¾ą®²ąÆ ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆ ą®®ąÆ€ą®³ą®®ąÆˆą®ŖąÆą®ŖąÆ ą®…ą®ŸąÆˆą®Æą®¾ą®³ą®µą®æą®²ąÆą®²ąÆˆą®•ą®³ąÆ ą®®ąÆą®©ąÆą®®ąÆŠą®“ą®æą®Æą®ŖąÆą®Ŗą®ŸąÆą®ŸąÆ ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ ą®•ą®£ą®•ąÆą®•ąÆˆ ą®•ąÆˆą®ŖąÆą®Ŗą®±ąÆą®±ą®²ą®¾ą®®ąÆ.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ தரவு ą®…ą®ŸąÆˆą®µąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®•ąÆą®•ą®³ąÆˆ ą®ŖąÆ†ą®°ąÆą®®ąÆą®Ŗą®¾ą®²ąÆą®®ąÆ ą®‡ą®£ąÆˆą®Æą®¤ąÆą®¤ą®æą®©ąÆ‚ą®Ÿą®¾ą®• ą®…ą®£ąÆą®•ą®²ą®¾ą®®ąÆ. ownCloud ą®‡ą®©ą®¾ą®²ąÆ ą®µą®“ą®™ąÆą®•ą®ŖąÆą®Ŗą®ŸąÆą®•ą®æą®©ąÆą®± .htaccess ą®•ąÆ‹ą®ŖąÆą®ŖąÆ ą®µąÆ‡ą®²ąÆˆ ą®šąÆ†ą®ÆąÆą®Æą®µą®æą®²ąÆą®²ąÆˆ. தரவு ą®…ą®ŸąÆˆą®µąÆˆ ą®ØąÆ€ą®£ąÆą®Ÿ ą®ØąÆ‡ą®°ą®¤ąÆą®¤ą®æą®±ąÆą®•ąÆ ą®…ą®£ąÆą®•ą®•ąÆą®•ąÆ‚ą®Ÿą®æą®Æą®¤ą®¾ą®• ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ வலைய ą®šąÆ‡ą®µąÆˆą®Æą®•ą®¤ąÆą®¤ąÆˆ ą®¤ą®•ą®µą®®ąÆˆą®•ąÆą®•ąÆą®®ą®¾ą®±ąÆ ą®Øą®¾ą®™ąÆą®•ą®³ąÆ உறுதியாக ą®•ąÆ‚ą®±ąÆą®•ą®æą®±ąÆ‹ą®®ąÆ ą®…ą®²ąÆą®²ą®¤ąÆ தரவு ą®…ą®ŸąÆˆą®µąÆˆ வலைய ą®šąÆ‡ą®µąÆˆą®Æą®• மூல ą®†ą®µą®£ą®¤ąÆą®¤ą®æą®²ą®æą®°ąÆą®ØąÆą®¤ąÆ வெளியே ą®…ą®•ą®±ąÆą®±ąÆą®•. ", "Create an admin account" => " ą®Øą®æą®°ąÆą®µą®¾ą®• ą®•ą®£ą®•ąÆą®•ąÆŠą®©ąÆą®±ąÆˆ ą®‰ą®°ąÆą®µą®¾ą®•ąÆą®•ąÆą®•", "Advanced" => "ą®®ąÆ‡ą®®ąÆą®Ŗą®ŸąÆą®Ÿ", "Data folder" => "தரவு ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®±ąÆˆ", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 2c697b1b85d..e5295cee103 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -108,7 +108,6 @@ "Security Warning" => "ąø„ąø³ą¹€ąø•ąø·ąø­ąø™ą¹€ąøąøµą¹ˆąø¢ąø§ąøąø±ąøšąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ąø¢ąø±ąø‡ą¹„ąø”ą¹ˆąø”ąøµąø•ąø±ąø§ąøŖąø£ą¹‰ąø²ąø‡ąø«ąø”ąø²ąø¢ą¹€ąø„ąø‚ą¹ąøšąøšąøŖąøøą¹ˆąø”ą¹ƒąø«ą¹‰ą¹ƒąøŠą¹‰ąø‡ąø²ąø™, ąøąø£ąøøąø“ąø²ą¹€ąø›ąø“ąø”ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ąøŖą¹ˆąø§ąø™ą¹€ąøŖąø£ąø“ąø” PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ąø«ąø²ąøąø›ąø£ąø²ąøØąøˆąø²ąøąø•ąø±ąø§ąøŖąø£ą¹‰ąø²ąø‡ąø«ąø”ąø²ąø¢ą¹€ąø„ąø‚ą¹ąøšąøšąøŖąøøą¹ˆąø”ąø—ąøµą¹ˆąøŠą¹ˆąø§ąø¢ąø›ą¹‰ąø­ąø‡ąøąø±ąø™ąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢ ąøœąø¹ą¹‰ąøšąøøąøąø£ąøøąøąø­ąø²ąøˆąøŖąø²ąø”ąø²ąø£ąø–ąø—ąøµą¹ˆąøˆąø°ąø„ąø²ąø”ąø„ąø°ą¹€ąø™ąø£ąø«ąø±ąøŖąø¢ąø·ąø™ąø¢ąø±ąø™ąøąø²ąø£ą¹€ąø‚ą¹‰ąø²ąø–ąø¶ąø‡ą¹€ąøžąø·ą¹ˆąø­ąø£ąøµą¹€ąø‹ą¹‡ąø•ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ ą¹ąø„ąø°ą¹€ąø­ąø²ąøšąø±ąøąøŠąøµąø‚ąø­ąø‡ąø„ąøøąø“ą¹„ąø›ą¹€ąø›ą¹‡ąø™ąø‚ąø­ąø‡ąø•ąø™ą¹€ąø­ąø‡ą¹„ąø”ą¹‰", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ą¹„ąø”ą¹€ąø£ą¹‡ąøąø—ąø­ąø£ąøµą¹ˆąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹ąø„ąø°ą¹„ąøŸąø„ą¹Œąø‚ąø­ąø‡ąø„ąøøąø“ąøŖąø²ąø”ąø²ąø£ąø–ą¹€ąø‚ą¹‰ąø²ąø–ąø¶ąø‡ą¹„ąø”ą¹‰ąøˆąø²ąøąø­ąø“ąø™ą¹€ąø—ąø­ąø£ą¹Œą¹€ąø™ą¹‡ąø• ą¹„ąøŸąø„ą¹Œ .htaccess ąø—ąøµą¹ˆ ownCloud ąø”ąøµą¹ƒąø«ą¹‰ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ąø—ąø³ąø‡ąø²ąø™ą¹„ąø”ą¹‰ąø­ąø¢ą¹ˆąø²ąø‡ą¹€ąø«ąø”ąø²ąø°ąøŖąø” ą¹€ąø£ąø²ąø‚ąø­ą¹ąø™ąø°ąø™ąø³ą¹ƒąø«ą¹‰ąø„ąøøąø“ąøąø³ąø«ąø™ąø”ąø„ą¹ˆąø²ą¹€ąø§ą¹‡ąøšą¹€ąø‹ąø“ąø£ą¹ŒąøŸą¹€ąø§ąø­ąø£ą¹Œą¹ƒąø«ąø”ą¹ˆą¹ƒąø™ąø£ąø¹ąø›ą¹ąøšąøšąø—ąøµą¹ˆą¹„ąø”ą¹€ąø£ą¹‡ąøąø—ąø­ąø£ąøµą¹ˆą¹€ąøą¹‡ąøšąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ą¹€ąø‚ą¹‰ąø²ąø–ąø¶ąø‡ą¹„ąø”ą¹‰ąø­ąøµąøąø•ą¹ˆąø­ą¹„ąø› ąø«ąø£ąø·ąø­ąø„ąøøąø“ą¹„ąø”ą¹‰ąø¢ą¹‰ąø²ąø¢ą¹„ąø”ą¹€ąø£ą¹‡ąøąø—ąø­ąø£ąøµą¹ˆąø—ąøµą¹ˆą¹ƒąøŠą¹‰ą¹€ąøą¹‡ąøšąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹„ąø›ąø­ąø¢ąø¹ą¹ˆąø ąø²ąø¢ąø™ąø­ąøąø•ąø³ą¹ąø«ąø™ą¹ˆąø‡ root ąø‚ąø­ąø‡ą¹€ąø§ą¹‡ąøšą¹€ąø‹ąø“ąø£ą¹ŒąøŸą¹€ąø§ąø­ąø£ą¹Œą¹ąø„ą¹‰ąø§", "Create an admin account" => "สร้าง ąøšąø±ąøąøŠąøµąøœąø¹ą¹‰ąø”ąø¹ą¹ąø„ąø£ąø°ąøšąøš", "Advanced" => "ขั้นสูง", "Data folder" => "ą¹‚ąøŸąø„ą¹€ąø”ąø­ąø£ą¹Œą¹€ąøą¹‡ąøšąø‚ą¹‰ąø­ąø”ąø¹ąø„", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 69dc8ca53d9..201b511647c 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -105,7 +105,6 @@ "Security Warning" => "Güvenlik Uyarisi", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Güvenli rasgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleştirin.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Güvenli rasgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geƧirebilir.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası Ƨalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu dƶküman dizini dışına almanızı şiddetle tavsiye ederiz.", "Create an admin account" => "Bir yƶnetici hesabı oluşturun", "Advanced" => "Gelişmiş", "Data folder" => "Veri klasƶrü", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 9a4d1eec0e1..7eab365a39d 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -108,7 +108,6 @@ "Security Warning" => "ŠŸŠ¾ŠæŠµŃ€ŠµŠ“Š¶ŠµŠ½Š½Ń про небезпеку", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ŠŠµ Š“Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ безпечний генератор випаГкових чисел, буГь ласка, Š°ŠŗŃ‚ŠøŠ²ŃƒŠ¹Ń‚Šµ PHP OpenSSL ГоГаток.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без безпечного генератора випаГкових чисел зловмисник може визначити токени ŃŠŗŠøŠ“Š°Š½Š½Ń ŠæŠ°Ń€Š¾Š»Ń і заволоГіти Š’Š°ŃˆŠøŠ¼ обліковим записом.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Š’Š°Ńˆ каталог Š· Ганими та Š’Š°ŃˆŃ– файли можливо Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń– Š· Š†Š½Ń‚ŠµŃ€Š½ŠµŃ‚Ńƒ. Файл .htaccess, наГаний Š· ownCloud, не ŠæŃ€Š°Ń†ŃŽŃ”. Ми наполегливо Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŃ”Š¼Š¾ Вам Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Ń‚Šø свій веб-сервер таким чином, щоб каталог data Š±Ń–Š»ŃŒŃˆŠµ не був Š“Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹, або перемістити каталог data за межі кореневого ŠŗŠ°Ń‚Š°Š»Š¾Š³Ńƒ Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Ń–Š² веб-сервера.", "Create an admin account" => "Дтворити обліковий запис аГміністратора", "Advanced" => "ДоГатково", "Data folder" => "ŠšŠ°Ń‚Š°Š»Š¾Š³ Ганих", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 055baecadac..ca6f9b91da2 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -105,7 +105,6 @@ "Security Warning" => "Cįŗ£nh bįŗ£o bįŗ£o mįŗ­t", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "KhĆ“ng an toĆ n ! chức năng random number generator đã có sįŗµn ,vui lòng bįŗ­t PHP OpenSSL extension.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Nįŗæu khĆ“ng có random number generator , Hacker có thể thiįŗæt lįŗ­p lįŗ”i mįŗ­t khįŗ©u vĆ  chiįŗæm tĆ i khoįŗ£n cį»§a bįŗ”n.", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Thʰ mỄc dữ liệu vĆ  những tįŗ­p tin cį»§a bįŗ”n có thể dį»… dĆ ng bị truy cįŗ­p từ mįŗ”ng. Tįŗ­p tin .htaccess do ownCloud cung cįŗ„p khĆ“ng hoįŗ”t động. ChĆŗng tĆ“i đề nghị bįŗ”n nĆŖn cįŗ„u hƬnh lįŗ”i mĆ”y chį»§ web Ä‘į»ƒ thʰ mỄc dữ liệu khĆ“ng còn bị truy cįŗ­p hoįŗ·c bįŗ”n nĆŖn di chuyển thʰ mỄc dữ liệu ra bĆŖn ngoĆ i thʰ mỄc gốc cį»§a mĆ”y chį»§.", "Create an admin account" => "Tįŗ”o mį»™t tĆ i khoįŗ£n quįŗ£n trị", "Advanced" => "NĆ¢ng cao", "Data folder" => "Thʰ mỄc dữ liệu", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 354bc4bb896..57f0e96378c 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -86,7 +86,6 @@ "Security Warning" => "å®‰å…Øč­¦å‘Š", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ę²”ęœ‰å®‰å…Øéšęœŗē ē”Ÿęˆå™Øļ¼ŒčÆ·åÆē”Ø PHP OpenSSL 扩展。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ę²”ęœ‰å®‰å…Øéšęœŗē ē”Ÿęˆå™Øļ¼Œé»‘å®¢åÆä»„é¢„ęµ‹åÆ†ē é‡ē½®ä»¤ē‰Œå¹¶ęŽ„ē®”ä½ ēš„č“¦ęˆ·ć€‚", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ę‚Øēš„ę•°ę®ę–‡ä»¶å¤¹å’Œę‚Øēš„ę–‡ä»¶ęˆ–č®øčƒ½å¤Ÿä»Žäŗ’č”ē½‘č®æé—®ć€‚ownCloud ęä¾›ēš„ .htaccesss ę–‡ä»¶ęœŖå…¶ä½œē”Øć€‚ęˆ‘ä»¬å¼ŗēƒˆå»ŗč®®ę‚Øé…ē½®ē½‘ē»œęœåŠ”å™Øä»„ä½æę•°ę®ę–‡ä»¶å¤¹äøčƒ½ä»Žäŗ’č”ē½‘č®æé—®ļ¼Œęˆ–å°†ē§»åŠØę•°ę®ę–‡ä»¶å¤¹ē§»å‡ŗē½‘ē»œęœåŠ”å™Øę–‡ę”£ę ¹ē›®å½•ć€‚", "Create an admin account" => "建立一个 ē®”ē†åøęˆ·", "Advanced" => "čæ›é˜¶", "Data folder" => "ę•°ę®å­˜ę”¾ę–‡ä»¶å¤¹", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 60dff9a822f..086687c08c3 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -106,7 +106,6 @@ "Security Warning" => "å®‰å…Øč­¦å‘Š", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "éšęœŗę•°ē”Ÿęˆå™Øę— ę•ˆļ¼ŒčÆ·åÆē”ØPHPēš„OpenSSL扩展", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ę²”ęœ‰å®‰å…Øéšęœŗē ē”Ÿęˆå™Øļ¼Œę”»å‡»č€…åÆčƒ½ä¼šēŒœęµ‹åÆ†ē é‡ē½®äæ”ęÆä»Žč€ŒēŖƒå–ę‚Øēš„č“¦ęˆ·", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ę‚Øēš„ę•°ę®ę–‡ä»¶å¤¹å’Œę–‡ä»¶åÆē”±äŗ’č”ē½‘č®æé—®ć€‚OwnCloudęä¾›ēš„.htaccessę–‡ä»¶ęœŖē”Ÿę•ˆć€‚ęˆ‘ä»¬å¼ŗēƒˆå»ŗč®®ę‚Øé…ē½®ęœåŠ”å™Øļ¼Œä»„ä½æę•°ę®ę–‡ä»¶å¤¹äøåÆč¢«č®æé—®ļ¼Œęˆ–č€…å°†ę•°ę®ę–‡ä»¶å¤¹ē§»åˆ°webęœåŠ”å™Øę ¹ē›®å½•ä»„å¤–ć€‚", "Create an admin account" => "åˆ›å»ŗē®”ē†å‘˜č“¦å·", "Advanced" => "高级", "Data folder" => "ę•°ę®ē›®å½•", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 54ea772da67..58d2aca4095 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -108,7 +108,6 @@ "Security Warning" => "å®‰å…Øę€§č­¦å‘Š", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ę²’ęœ‰åÆē”Øēš„äŗ‚ę•øē”¢ē”Ÿå™Øļ¼Œč«‹å•Ÿē”Ø PHP äø­ēš„ OpenSSL ę““å……åŠŸčƒ½ć€‚", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "č‹„ę²’ęœ‰å®‰å…Øēš„äŗ‚ę•øē”¢ē”Ÿå™Øļ¼Œę”»ę“Šč€…åÆčƒ½åÆä»„é ęø¬åÆ†ē¢¼é‡čØ­äæ”ē‰©ļ¼Œē„¶å¾ŒęŽ§åˆ¶ę‚Øēš„åø³ęˆ¶ć€‚", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ę‚Øēš„č³‡ę–™ē›®éŒ„ (Data Directory) å’ŒęŖ”ę”ˆåÆčƒ½åÆä»„ē”±ē¶²éš›ē¶²č·ÆäøŠé¢å…¬é–‹å­˜å–ć€‚Owncloud ę‰€ęä¾›ēš„ .htaccess čØ­å®šęŖ”äø¦ęœŖē”Ÿę•ˆļ¼Œęˆ‘å€‘å¼·ēƒˆå»ŗč­°ę‚ØčØ­å®šę‚Øēš„ē¶²é ä¼ŗęœå™Øä»„é˜²ę­¢č³‡ę–™ē›®éŒ„č¢«å…¬é–‹å­˜å–ļ¼Œęˆ–å°‡ę‚Øēš„č³‡ę–™ē›®éŒ„ē§»å‡ŗē¶²é ä¼ŗęœå™Øēš„ document root 怂", "Create an admin account" => "å»ŗē«‹äø€å€‹ē®”ē†č€…åø³č™Ÿ", "Advanced" => "進階", "Data folder" => "資料夾", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index f06908f65ac..b0c9bf67feb 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -468,7 +468,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -478,19 +478,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 243d6a0e53a..43e9f26707c 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -53,7 +67,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 20a687fdb6d..f3cdb9f639c 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "Ų¹ŲÆŁ„ الفئات" msgid "Add" msgstr "أدخل" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "تحذير أمان" @@ -479,19 +479,23 @@ msgid "" "OpenSSL extension." msgstr "لا يوجد Ł…ŁˆŁ„Ł‘ŲÆ أرقام عؓوائية ، الرجاؔ ŲŖŁŲ¹ŁŠŁ„ الـ PHP OpenSSL extension." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 76278a3e1a4..ce179ab2fb8 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ 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" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -54,7 +68,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index bd1810d0e37..aaa4f3d190d 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -471,7 +471,7 @@ msgstr "" msgid "Add" msgstr "Š”Š¾Š±Š°Š²ŃŠ½Šµ" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -481,19 +481,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index ef076ab4f33..f4b6a8ca674 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -55,7 +69,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 1e12f9a3e00..6b0d2ba2698 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "ą¦•ą§ą¦Æą¦¾ą¦Ÿą§‡ą¦—ą¦°ą¦æ ą¦øą¦®ą§ą¦Ŗą¦¾ą¦¦ą¦Øą¦¾" msgid "Add" msgstr "যোগ কর" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ą¦Øą¦æą¦°ą¦¾ą¦Ŗą¦¤ą§ą¦¤ą¦¾ą¦œą¦Øą¦æą¦¤ ą¦øą¦¤ą¦°ą§ą¦•ą¦¤ą¦¾" @@ -479,19 +479,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index c2ccab5b338..023ecf7d1e7 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোঔ করা হয় ą¦Øą¦æą„¤ ą¦øą¦®ą¦øą§ą¦Æą¦¾ ą¦…ą¦œą§ą¦žą¦¾ą¦¤ą„¤" @@ -54,8 +68,8 @@ msgid "Failed to write to disk" msgstr "ą¦”ą¦æą¦øą§ą¦•ą§‡ লিখতে ą¦¬ą§ą¦Æą¦°ą§ą¦„" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "ą¦Æą¦„ą§‡ą¦·ą§ą¦  পরিমাণ ą¦øą§ą¦„ą¦¾ą¦Ø নেই" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/ca/core.po b/l10n/ca/core.po index ce35d13efba..10f01f6ce35 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "No voleu afegir cap categoria?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Aquesta categoria ja existeix: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -470,7 +470,7 @@ msgstr "Edita les categories" msgid "Add" msgstr "Afegeix" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "AvĆ­s de seguretat" @@ -480,20 +480,24 @@ msgid "" "OpenSSL extension." msgstr "No estĆ  disponible el generador de nombres aleatoris segurs, habiliteu l'extensió de PHP OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sense un generador de nombres aleatoris segurs un atacant podria predir els senyals per restablir la contrasenya i prendre-us el compte." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 71b002f55d2..eb952e6f7c2 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 15:20+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \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" @@ -24,6 +24,20 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" @@ -60,8 +74,8 @@ msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "No hi ha prou espai disponible" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 9fb8bcf4409..4c5e094e6d5 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 15:22+0000\n" +"Last-Translator: rogerc \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" @@ -21,12 +21,12 @@ msgstr "" #: ajax/delete.php:22 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "No s'ha pogut esborrar permanentment %s" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "No s'ha pogut restaurar %s" #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 90fe65e06c4..43021a3304d 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -4,14 +4,15 @@ # # Translators: # , 2012. +# , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 15:40+0000\n" +"Last-Translator: rogerc \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" @@ -22,33 +23,33 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "No s'ha pogut revertir: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "ĆØxit" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "El fitxer %s s'ha revertit a la versió %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "fallada" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "El fitxer %s no s'ha pogut revertir a la versió %s" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "No hi ha versións antigues disponibles" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "No heu especificat el camĆ­" #: js/versions.js:16 msgid "History" @@ -56,7 +57,7 @@ msgstr "Historial" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Reverteix un fitxer a una versió anterior fent clic en el seu botó de reverteix" #: templates/settings.php:3 msgid "Files Versioning" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index fbf1fdd00c4..98ca278100a 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+0000\n" +"Last-Translator: rogerc \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" @@ -216,7 +216,7 @@ msgstr "Usa TLS" #: templates/settings.php:38 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "No ho useu adicionalment per a conexions LDAPS, fallarĆ ." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index e936afbb2fa..65f55a38758 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgstr "ŽÔdnĆ” kategorie k přidĆ”nĆ­?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Kategorie již existuje: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -471,7 +471,7 @@ msgstr "Upravit kategorie" msgid "Add" msgstr "Přidat" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "BezpečnostnĆ­ upozorněnĆ­" @@ -481,20 +481,24 @@ msgid "" "OpenSSL extension." msgstr "NenĆ­ dostupný žÔdný bezpečný generĆ”tor nĆ”hodných čƭsel. Povolte, prosĆ­m, rozŔířenĆ­ OpenSSL v PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez bezpečnĆ©ho generĆ”toru nĆ”hodných čƭsel může ĆŗtočnĆ­k předpovědět token pro obnovu hesla a převzĆ­t kontrolu nad VaŔím ĆŗÄtem." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "VÔŔ adresÔř dat a vÅ”echny VaÅ”e soubory jsou pravděpodobně přístupnĆ© z internetu. Soubor .htaccess, který je poskytovĆ”n ownCloud, nefunguje. DÅÆrazně VĆ”m doporučujeme nastavit vÔŔ webový server tak, aby nebyl adresÔř dat přístupný, nebo přesunout adresÔř dat mimo kořenovou složku dokumentÅÆ webovĆ©ho serveru." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index d0a29731322..16812c71df7 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 12:41+0000\n" -"Last-Translator: TomÔŔ ChvĆ”tal \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \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,6 +20,20 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslĆ”n. NeznĆ”mĆ” chyba" @@ -56,8 +70,8 @@ msgid "Failed to write to disk" msgstr "ZĆ”pis na disk selhal" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Nedostatek dostupnĆ©ho mĆ­sta" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index a162bbe6ac1..5055b347339 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:40+0000\n" +"Last-Translator: TomÔŔ ChvĆ”tal \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" @@ -21,12 +21,12 @@ msgstr "" #: ajax/delete.php:22 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Nelze trvale odstranit %s" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Nelze obnovit %s" #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 73211bbd9af..928ac501c8a 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -4,14 +4,14 @@ # # Translators: # Martin , 2012. -# TomÔŔ ChvĆ”tal , 2012. +# TomÔŔ ChvĆ”tal , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:40+0000\n" +"Last-Translator: TomÔŔ ChvĆ”tal \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" @@ -22,33 +22,33 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Nelze navrĆ”tit: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "Ćŗspěch" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Soubor %s byl navrĆ”cen na verzi %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "sehlhĆ”nĆ­" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "Soubor %s nemohl být navrĆ”cen na verzi %s" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "Nejsou dostupnĆ© žÔdnĆ© starŔí verze" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "NezadĆ”na cesta" #: js/versions.js:16 msgid "History" @@ -56,7 +56,7 @@ msgstr "Historie" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "NavraÅ„te soubor do předchozĆ­ verze kliknutĆ­m na tlačƭtko navrĆ”tit" #: templates/settings.php:3 msgid "Files Versioning" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 00ba0ee1922..8e0892a688b 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:40+0000\n" +"Last-Translator: TomÔŔ ChvĆ”tal \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" @@ -216,7 +216,7 @@ msgstr "Použít TLS" #: templates/settings.php:38 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Nepoužívejte pro spojenĆ­ LDAP, selže." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/da/core.po b/l10n/da/core.po index 68651f221f7..7ac480d339f 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -476,7 +476,7 @@ msgstr "Rediger kategorier" msgid "Add" msgstr "TilfĆøj" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sikkerhedsadvarsel" @@ -486,20 +486,24 @@ msgid "" "OpenSSL extension." msgstr "Ingen sikker tilfƦldighedsgenerator til tal er tilgƦngelig. Aktiver venligst OpenSSL udvidelsen." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Uden en sikker tilfƦldighedsgenerator til tal kan en angriber mĆ„ske gƦtte dit gendan kodeord og overtage din konto" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Din data mappe og dine filer er muligvis tilgƦngelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler pĆ„ det kraftigste at du konfigurerer din webserver pĆ„ en mĆ„ske sĆ„ data mappen ikke lƦngere er tilgƦngelig eller at du flytter data mappen uden for webserverens dokument rod. " +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/da/files.po b/l10n/da/files.po index 9477b306d4f..faeb92854c3 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,20 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." @@ -61,7 +75,7 @@ msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/de/core.po b/l10n/de/core.po index 3125994390b..eb62f53acad 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -483,7 +483,7 @@ msgstr "Kategorien bearbeiten" msgid "Add" msgstr "Hinzufügen" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sicherheitswarnung" @@ -493,20 +493,24 @@ msgid "" "OpenSSL extension." msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktiviere die PHP-Erweiterung für OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage die Tokens für das Zurücksetzen der Passwƶrter vorherzusehen und Konten zu übernehmen." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Dein Datenverzeichnis und deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass du deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht lƤnger erreichbar ist oder, dass du dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/de/files.po b/l10n/de/files.po index 7cf13d9caa2..a016e0c1074 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -38,6 +38,20 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -74,8 +88,8 @@ msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Nicht genug Speicherplatz verfügbar" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 6aa78f8aea8..c67c4205fbf 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -25,8 +25,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "Keine Kategorie hinzuzufügen?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Die Kategorie '%s' existiert bereits." #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -485,7 +485,7 @@ msgstr "Kategorien bearbeiten" msgid "Add" msgstr "Hinzufügen" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sicherheitshinweis" @@ -495,20 +495,24 @@ msgid "" "OpenSSL extension." msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwƶrter vorherzusehen und Ihr Konto zu übernehmen." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ kƶnnen Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index a05b6ff6770..4ff85767805 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -30,9 +30,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 08:10+0000\n" -"Last-Translator: Susi <>\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \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" @@ -40,6 +40,20 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" @@ -76,8 +90,8 @@ msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Nicht genügend Speicherplatz verfügbar" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 98bc417e1a5..e6c6d61cb21 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -6,15 +6,16 @@ # , 2012. # I Robot , 2012. # , 2012. +# , 2013. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+0000\n" +"Last-Translator: JamFX \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" @@ -29,7 +30,7 @@ msgstr "" #: history.php:40 msgid "success" -msgstr "" +msgstr "Erfolgreich" #: history.php:42 #, php-format @@ -38,7 +39,7 @@ msgstr "" #: history.php:49 msgid "failure" -msgstr "" +msgstr "Fehlgeschlagen" #: history.php:51 #, php-format @@ -47,11 +48,11 @@ msgstr "" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "keine Ƥlteren Versionen verfügbar" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "Kein Pfad angegeben" #: js/versions.js:16 msgid "History" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7ddddd94e99..6947ca9a5cf 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -475,7 +475,7 @@ msgstr "Ī•Ļ€ĪµĪ¾ĪµĻĪ³Ī±ĻƒĪÆĪ± ĪŗĪ±Ļ„Ī·Ī³ĪæĻĪ¹ĻŽĪ½" msgid "Add" msgstr "Προσθήκη" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Ī ĻĪæĪµĪ¹Ī“ĪæĻ€ĪæĪÆĪ·ĻƒĪ· Ī‘ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚" @@ -485,20 +485,24 @@ msgid "" "OpenSSL extension." msgstr "Δεν είναι Γιαθέσιμο το Ļ€ĻĻŒĻƒĪøĪµĻ„Īæ Γημιουργίας τυχαίων Ī±ĻĪ¹ĪøĪ¼ĻŽĪ½ Ī±ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚, Ļ€Ī±ĻĪ±ĪŗĪ±Ī»ĻŽ ĪµĪ½ĪµĻĪ³ĪæĻ€ĪæĪ¹Ī®ĻƒĻ„Īµ το Ļ€ĻĻŒĻƒĪøĪµĻ„Īæ της PHP, OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Χωρίς το Ļ€ĻĻŒĻƒĪøĪµĻ„Īæ Γημιουργίας τυχαίων Ī±ĻĪ¹ĪøĪ¼ĻŽĪ½ Ī±ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚, μπορεί να Ī“Ī¹Ī±ĻĻĪµĻĻƒĪµĪ¹ Īæ Ī»ĪæĪ³Ī±ĻĪ¹Ī±ĻƒĪ¼ĻŒĻ‚ ĻƒĪ±Ļ‚ Ī±Ļ€ĻŒ ĪµĻ€Ī¹ĪøĪ­ĻƒĪµĪ¹Ļ‚ ĻƒĻ„Īæ ΓιαΓίκτυο." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Ο κατάλογος data και τα αρχεία ĻƒĪ±Ļ‚ Ļ€Ī¹ĪøĪ±Ī½ĻŒĪ½ να είναι Γιαθέσιμα ĻƒĻ„Īæ ΓιαΓίκτυο. Το αρχείο .htaccess που παρέχει το ownCloud Γεν Ī“ĪæĻ…Ī»ĪµĻĪµĪ¹. Σας προτείνουμε Ī±Ī½ĪµĻ€Ī¹Ļ†ĻĪ»Ī±ĪŗĻ„Ī± να ĻĻ…ĪøĪ¼ĪÆĻƒĪµĻ„Īµ το Ī“Ī¹Ī±ĪŗĪæĪ¼Ī¹ĻƒĻ„Ī® ĻƒĪ±Ļ‚ με τέτοιο Ļ„ĻĻŒĻ€Īæ ĻŽĻƒĻ„Īµ Īæ κατάλογος data να μην είναι πλέον Ļ€ĻĪæĻƒĪ²Ī¬ĻƒĪ¹Ī¼ĪæĻ‚ Ī® να Ī¼ĪµĻ„Ī±ĪŗĪ¹Ī½Ī®ĻƒĪµĻ„Īµ τον κατάλογο data έξω Ī±Ļ€ĻŒ τον κατάλογο του Ī“Ī¹Ī±ĪŗĪæĪ¼Ī¹ĻƒĻ„Ī®." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/el/files.po b/l10n/el/files.po index ee4f5f3cf1d..8466d5bc77a 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,20 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Ī†Ī³Ī½Ļ‰ĻƒĻ„Īæ ĻƒĻ†Ī¬Ī»Ī¼Ī±" @@ -61,8 +75,8 @@ msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής ĻƒĻ„Īæ Γίσκο" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Δεν υπάρχει Ī±ĻĪŗĪµĻ„ĻŒĻ‚ Ī“Ī¹Ī±ĪøĪ­ĻƒĪ¹Ī¼ĪæĻ‚ Ļ‡ĻŽĻĪæĻ‚" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/eo/core.po b/l10n/eo/core.po index e872fc1f558..15f0635aa27 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -470,7 +470,7 @@ msgstr "Redakti kategoriojn" msgid "Add" msgstr "Aldoni" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sekureca averto" @@ -480,19 +480,23 @@ msgid "" "OpenSSL extension." msgstr "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/eo/files.po b/l10n/eo/files.po index aa88fa9c85e..139cd4a827f 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." @@ -56,8 +70,8 @@ msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Ne haveblas sufiĉa spaco" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/es/core.po b/l10n/es/core.po index d0622b11227..ff3f6b2cd57 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -15,12 +15,13 @@ # RubĆ©n Trujillo , 2012. # , 2011-2012. # , 2012. +# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -64,7 +65,7 @@ msgstr "ĀæNinguna categorĆ­a para aƱadir?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Esta categoria ya existe: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -479,7 +480,7 @@ msgstr "Editar categorĆ­as" msgid "Add" msgstr "AƱadir" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Advertencia de seguridad" @@ -489,20 +490,24 @@ msgid "" "OpenSSL extension." msgstr "No estĆ” disponible un generador de nĆŗmeros aleatorios seguro, por favor habilite la extensión OpenSSL de PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sin un generador de nĆŗmeros aleatorios seguro un atacante podrĆ­a predecir los tokens de reinicio de su contraseƱa y tomar control de su cuenta." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Su directorio de datos y sus archivos estĆ”n probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no estĆ” funcionando. Sugerimos fuertemente que configure su servidor web de manera que el directorio de datos ya no estĆ© accesible o mueva el directorio de datos fuera del documento raĆ­z de su servidor web." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" @@ -585,7 +590,7 @@ msgstr "Entrar" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Nombre de usuarios alternativos" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/es/files.po b/l10n/es/files.po index 6cb15f29315..589961db7a0 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,20 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Fallo no se subió el fichero" @@ -63,8 +77,8 @@ msgid "Failed to write to disk" msgstr "La escritura en disco ha fallado" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "No hay suficiente espacio disponible" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." @@ -80,7 +94,7 @@ msgstr "Dejar de compartir" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Eliminar permanentemente" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 6e22e62caf5..7e95d500a1b 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 00:30+0000\n" +"Last-Translator: msvladimir \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,12 +21,12 @@ msgstr "" #: ajax/delete.php:22 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "No se puede eliminar %s permanentemente" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "No se puede restaurar %s" #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" @@ -34,7 +34,7 @@ msgstr "Restaurar" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "Eliminar archivo permanentemente" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 924f876de96..279601b80de 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -7,13 +7,14 @@ # , 2012. # RubĆ©n Trujillo , 2012. # , 2012. +# Vladimir Martinez Sierra , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 00:40+0000\n" +"Last-Translator: msvladimir \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" @@ -24,33 +25,33 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "No se puede revertir: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "exitoso" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "El archivo %s fue revertido a la version %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "fallo" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "El archivo %s no puede ser revertido a la version %s" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "No hay versiones antiguas disponibles" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "Ruta no especificada" #: js/versions.js:16 msgid "History" @@ -58,7 +59,7 @@ msgstr "Historial" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Revertir un archivo a una versión anterior haciendo clic en el boton de revertir" #: templates/settings.php:3 msgid "Files Versioning" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 6c498f9b5f8..ef23546dea6 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 00:30+0000\n" +"Last-Translator: msvladimir \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" @@ -41,7 +41,7 @@ msgstr "Error de autenticación" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "Incapaz de cambiar el nombre" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -240,15 +240,15 @@ msgstr "Nombre a mostrar" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "Su nombre fue cambiado" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "Incapaz de cambiar su nombre" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "Cambiar nombre" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 6cc532f1a72..139d0cb69b8 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 00:30+0000\n" +"Last-Translator: msvladimir \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" @@ -222,7 +222,7 @@ msgstr "Usar TLS" #: templates/settings.php:38 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "No usar adicionalmente para conecciones LDAPS, estas fallaran" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 22227d965cb..b13721f69df 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -470,7 +470,7 @@ msgstr "Editar categorĆ­as" msgid "Add" msgstr "Agregar" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Advertencia de seguridad" @@ -480,20 +480,24 @@ msgid "" "OpenSSL extension." msgstr "No hay disponible ningĆŗn generador de nĆŗmeros aleatorios seguro. Por favor habilitĆ” la extensión OpenSSL de PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sin un generador de nĆŗmeros aleatorios seguro un atacante podrĆ­a predecir los tokens de reinicio de tu contraseƱa y tomar control de tu cuenta." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no estĆ” funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no estĆ© accesible, o que muevas el directorio de datos afuera del directorio raĆ­z de tu servidor web." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 73b58d8834c..45bc777add8 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" @@ -56,8 +70,8 @@ msgid "Failed to write to disk" msgstr "Error al escribir en el disco" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "No hay suficiente espacio disponible" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 5ce76de1ce0..54c76b77460 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -468,7 +468,7 @@ msgstr "Muuda kategooriaid" msgid "Add" msgstr "Lisa" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Turvahoiatus" @@ -478,19 +478,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index b3de1b124e9..c42827d819d 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" @@ -55,7 +69,7 @@ msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaƵnnestus" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 808edf25d74..faa3a2a3a3b 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -471,7 +471,7 @@ msgstr "Editatu kategoriak" msgid "Add" msgstr "Gehitu" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Segurtasun abisua" @@ -481,20 +481,24 @@ msgid "" "OpenSSL extension." msgstr "Ez dago hausazko zenbaki sortzaile segururik eskuragarri, mesedez gatiu PHP OpenSSL extensioa." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Hausazko zenbaki sortzaile segururik gabe erasotzaile batek pasahitza berrezartzeko kodeak iragarri ditzake eta zure kontuaz jabetu." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index aa53f964026..e32bbe4ed2f 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" @@ -57,8 +71,8 @@ msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Ez dago leku nahikorik." +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/fa/core.po b/l10n/fa/core.po index be4d4fdbad4..de2bbcd7005 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "ویرایؓ ŚÆŲ±ŁˆŁ‡ ها" msgid "Add" msgstr "Ų§ŁŲ²ŁˆŲÆŁ†" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Ų§Ų®Ų·Ų§Ų± Ų§Ł…Ł†ŪŒŲŖŪŒ" @@ -479,19 +479,23 @@ msgid "" "OpenSSL extension." msgstr "Ł‡ŪŒŚ† Ł…ŁˆŁ„ŲÆ تصادفی امن ŲÆŲ± ŲÆŲ³ŲŖŲ±Ų³ Ł†ŪŒŲ³ŲŖŲŒ لطفا فرمت PHP OpenSSL Ų±Ų§ فعال Ł†Ł…Ų§ŪŒŪŒŲÆ." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ŲØŲÆŁˆŁ† وجود یک ŲŖŁˆŁ„ŪŒŲÆ کننده Ų§Ų¹ŲÆŲ§ŲÆ تصادفی امن ، یک مهاجم ممکن Ų§Ų³ŲŖ Ų§ŪŒŁ† Ł‚Ų§ŲØŁ„ŪŒŲŖ Ų±Ų§ داؓته ŲØŲ§Ų“ŲÆ که پیؓگویی کند پسوورد Ł‡Ų§ŪŒ راه انداز گرفته ؓده و Ś©Ł†ŲŖŲ±Ł„ŪŒ روی Ų­Ų³Ų§ŲØ کاربری Ų“Ł…Ų§ داؓته ŲØŲ§Ų“ŲÆ ." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 9739c71ab29..d18c250ecf5 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ł‡ŪŒŚ† ŁŲ§ŪŒŁ„ŪŒ Ų¢Ł¾Ł„ŁˆŲÆ نؓد.خطای ناؓناس" @@ -57,8 +71,8 @@ msgid "Failed to write to disk" msgstr "Ł†ŁˆŲ“ŲŖŁ† ŲØŲ± روی دیسک Ų³Ų®ŲŖ Ł†Ų§Ł…ŁˆŁŁ‚ بود" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "فضای کافی ŲÆŲ± ŲÆŲ³ŲŖŲ±Ų³ Ł†ŪŒŲ³ŲŖ" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 08b79b16f65..fef4938627f 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -474,7 +474,7 @@ msgstr "Muokkaa luokkia" msgid "Add" msgstr "LisƤƤ" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Turvallisuusvaroitus" @@ -484,20 +484,24 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Data-kansio ja tiedostot ovat ehkƤ saavutettavissa InternetistƤ. .htaccess-tiedosto, jolla kontrolloidaan pƤƤsyƤ, ei toimi. Suosittelemme, ettƤ muutat web-palvelimesi asetukset niin ettei data-kansio ole enƤƤ pƤƤsyƤ tai siirrƤt data-kansion pois web-palvelimen tiedostojen juuresta." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 13f67673e04..57096ee2349 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -22,6 +22,20 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lƤhetetty. Tuntematon virhe" @@ -58,8 +72,8 @@ msgid "Failed to write to disk" msgstr "Levylle kirjoitus epƤonnistui" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Tilaa ei ole riittƤvƤsti" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 5a5e237f4a8..1454975ea7f 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,13 +15,13 @@ # , 2012. # , 2012. # , 2011. -# Romain DEP. , 2012. +# Romain DEP. , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -65,7 +65,7 @@ msgstr "Pas de catĆ©gorie Ć  ajouter ?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Cette catĆ©gorie existe dĆ©jĆ  : %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -480,7 +480,7 @@ msgstr "Modifier les catĆ©gories" msgid "Add" msgstr "Ajouter" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Avertissement de sĆ©curitĆ©" @@ -490,20 +490,24 @@ msgid "" "OpenSSL extension." msgstr "Aucun gĆ©nĆ©rateur de nombre alĆ©atoire sĆ©curisĆ© n'est disponible, veuillez activer l'extension PHP OpenSSL" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sans gĆ©nĆ©rateur de nombre alĆ©atoire sĆ©curisĆ©, un attaquant peut ĆŖtre en mesure de prĆ©dire les jetons de rĆ©initialisation du mot de passe, et ainsi prendre le contrĆ“le de votre compte utilisateur." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de maniĆØre Ć  ce que le dossier data ne soit plus accessible ou bien de dĆ©placer le dossier data en dehors du dossier racine des documents du serveur web." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" @@ -586,7 +590,7 @@ msgstr "Connexion" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Logins alternatifs" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 4d48780dff7..0e732da55ae 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -31,6 +31,20 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a Ć©tĆ© chargĆ©. Erreur inconnue" @@ -67,8 +81,8 @@ msgid "Failed to write to disk" msgstr "Erreur d'Ć©criture sur le disque" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Espace disponible insuffisant" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." @@ -84,7 +98,7 @@ msgstr "Ne plus partager" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Supprimer de faƧon dĆ©finitive" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index d20576ced12..ac5a41de001 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:02+0000\n" +"Last-Translator: Romain DEP. \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" @@ -46,15 +46,15 @@ msgstr "Chiffrement" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Le chiffrement des fichiers est activĆ©" #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "Les fichiers de types suivants ne seront pas chiffrĆ©s :" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "Ne pas chiffrer les fichiers dont les types sont les suivants :" #: templates/settings.php:12 msgid "None" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index ba001ae7f61..23b922f8f1c 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:03+0000\n" +"Last-Translator: Romain DEP. \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" @@ -22,12 +22,12 @@ msgstr "" #: ajax/delete.php:22 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Impossible d'effacer %s de faƧon permanente" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Impossible de restaurer %s" #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" @@ -35,7 +35,7 @@ msgstr "effectuer l'opĆ©ration de restauration" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "effacer dĆ©finitivement le fichier" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index fa2b60d6103..0bfce6ee9bc 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Romain DEP. , 2012. +# Romain DEP. , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:02+0000\n" +"Last-Translator: Romain DEP. \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" @@ -21,33 +21,33 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Impossible de restaurer %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "succĆØs" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Le fichier %s a Ć©tĆ© restaurĆ© dans sa version %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "Ć©chec" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "Le fichier %s ne peut ĆŖtre restaurĆ© dans sa version %s" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "Aucune ancienne version n'est disponible" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "Aucun chemin spĆ©cifiĆ©" #: js/versions.js:16 msgid "History" @@ -55,7 +55,7 @@ msgstr "Historique" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Restaurez un fichier dans une version antĆ©rieure en cliquant sur son bouton de restauration" #: templates/settings.php:3 msgid "Files Versioning" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 926b1a0e082..edf75b638a0 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:01+0000\n" +"Last-Translator: Romain DEP. \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" @@ -45,7 +45,7 @@ msgstr "Erreur d'authentification" #: ajax/changedisplayname.php:28 msgid "Unable to change display name" -msgstr "" +msgstr "Impossible de modifier le nom d'affichage" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -244,15 +244,15 @@ msgstr "Nom affichĆ©" #: templates/personal.php:42 msgid "Your display name was changed" -msgstr "" +msgstr "Votre nom d'affichage a bien Ć©tĆ© modifiĆ©" #: templates/personal.php:43 msgid "Unable to change your display name" -msgstr "" +msgstr "Impossible de modifier votre nom d'affichage" #: templates/personal.php:46 msgid "Change display name" -msgstr "" +msgstr "Changer le nom affichĆ©" #: templates/personal.php:55 msgid "Email" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 9e9ac647ef9..61d51d61cab 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 14:02+0000\n" +"Last-Translator: Romain DEP. \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" @@ -221,7 +221,7 @@ msgstr "Utiliser TLS" #: templates/settings.php:38 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "ƀ ne pas utiliser pour les connexions LDAPS (cela Ć©chouera)." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 7e634b2c657..6c9cc0dfe4e 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -470,7 +470,7 @@ msgstr "Editar categorĆ­as" msgid "Add" msgstr "Engadir" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Aviso de seguranza" @@ -480,20 +480,24 @@ msgid "" "OpenSSL extension." msgstr "Non hai un xerador de nĆŗmeros ao chou dispoƱƭbel. Active o engadido de OpenSSL para PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sen un xerador seguro de nĆŗmeros ao chou poderĆ­a acontecer que predicindo as cadeas de texto de reinicio de contrasinais se afagan coa sĆŗa conta." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesĆ­beis a travĆ©s da Internet. O ficheiro .htaccess que fornece ownCloud non estĆ” a empregarse. Suxerimoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesĆ­bel ou mova o cartafol de datos fora do directorio raĆ­z de datos do servidor web." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index d309fb232db..928faa768b9 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Non se subiu ningĆŗn ficheiro. Erro descoƱecido." @@ -55,8 +69,8 @@ msgid "Failed to write to disk" msgstr "Erro ao escribir no disco" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "O espazo dispoƱƭbel Ć© insuficiente" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/he/core.po b/l10n/he/core.po index b1cb9b61472..63923beacfc 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -472,7 +472,7 @@ msgstr "עריכת ×”×§×˜×’×•×Ø×™×•×Ŗ" msgid "Add" msgstr "הוהפה" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "אזהרת אבטחה" @@ -482,20 +482,24 @@ msgid "" "OpenSSL extension." msgstr "אין מחולל ×ž×”×¤×Ø×™× ××§×Ø××™×™× מאובטח, נא להפעיל את ההרחבה OpenSSL ב־PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ללא מחולל ×ž×”×¤×Ø×™× ××§×Ø××™×™× מאובטח תוקף יכול לנבא את ×ž×—×Ø×•×–×•×Ŗ איפוה הההמה ×•×œ×”×©×Ŗ×œ×˜ על החשבון שלך." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "×™×Ŗ×›×Ÿ שתיקיית ×”× ×Ŗ×•× ×™× והקבצים שלך נגישים ×“×Ø×š ×”××™× ×˜×Ø× ×˜. קובׄ ×”Ö¾ā€Ž.htaccess שמהופק על ידי ownCloud כנראה אינו עובד. אנו ממליצים בחום ×œ×”×’×“×™×Ø את שרת ×”××™× ×˜×Ø× ×˜ שלך ×‘×“×Ø×š שבה ×Ŗ×™×§×™×™×Ŗ ×”× ×Ŗ×•× ×™× לא ×Ŗ×”×™×” זמינה עוד או ×œ×”×¢×‘×™×Ø את ×Ŗ×™×§×™×™×Ŗ ×”× ×Ŗ×•× ×™× מחוׄ ×œ×”×¤×Ø×™×™×Ŗ העל של שרת ×”××™× ×˜×Ø× ×˜." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/he/files.po b/l10n/he/files.po index 0c221283b67..97499d15ec7 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובׄ. ×˜×¢×•×Ŗ ×‘×œ×Ŗ×™ מזוהה." @@ -57,7 +71,7 @@ msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 753a4d126d2..4706ee1f2cd 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -479,19 +479,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/hi/files.po b/l10n/hi/files.po index e0189f4da40..1bffd04a963 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -53,7 +67,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 30b6a0efcae..ebbeae5639d 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -471,7 +471,7 @@ msgstr "Uredi kategorije" msgid "Add" msgstr "Dodaj" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -481,19 +481,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/hr/files.po b/l10n/hr/files.po index d7b7d81a29d..54726b33311 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -56,7 +70,7 @@ msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 7ddb4feefa1..9cd13d6adf5 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -472,7 +472,7 @@ msgstr "KategóriĆ”k szerkesztĆ©se" msgid "Add" msgstr "HozzĆ”adĆ”s" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "BiztonsĆ”gi figyelmeztetĆ©s" @@ -482,20 +482,24 @@ msgid "" "OpenSSL extension." msgstr "Nem Ć©rhető el megfelelő vĆ©letlenszĆ”m-generĆ”tor, telepĆ­teni kellene a PHP OpenSSL kiegĆ©szĆ­tĆ©sĆ©t." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Megfelelő vĆ©letlenszĆ”m-generĆ”tor hiĆ”nyĆ”ban egy tĆ”madó szĆ”ndĆ©kĆŗ idegen kĆ©pes lehet megjósolni a jelszóvisszaĆ”llĆ­tó tokent, Ć©s Ɩn helyett belĆ©pni." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Az adatkƶnytĆ”ra Ć©s az itt levő fĆ”jlok valószĆ­nűleg elĆ©rhetők az internetről. Az ownCloud Ć”ltal beillesztett .htaccess fĆ”jl nem műkƶdik. Nagyon fontos, hogy a webszervert Ćŗgy konfigurĆ”lja, hogy az adatkƶnyvtĆ”r nem legyen kƶzvetlenül kĆ­vülről elĆ©rhető, vagy az adatkƶnyvtĆ”rt tegye a webszerver dokumentumfĆ”jĆ”n kĆ­vülre." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index bc65aedf641..3b40ac770e6 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,20 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nem tƶrtĆ©nt feltƶltĆ©s. Ismeretlen hiba" @@ -60,8 +74,8 @@ msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre tƶrtĆ©nő Ć­rĆ”s" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Nincs elĆ©g szabad hely" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/ia/core.po b/l10n/ia/core.po index eb65ae9f02e..385d32959dc 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -468,7 +468,7 @@ msgstr "Modificar categorias" msgid "Add" msgstr "Adder" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -478,19 +478,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 8a63e7c909b..1ef72be29ba 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -55,7 +69,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/id/core.po b/l10n/id/core.po index 43fbed71681..315f226f156 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -471,7 +471,7 @@ msgstr "Edit kategori" msgid "Add" msgstr "Tambahkan" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "peringatan keamanan" @@ -481,19 +481,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "tanpa generator angka acak, penyerang mungkin dapat menebak token reset kata kunci dan mengambil alih akun anda." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/id/files.po b/l10n/id/files.po index 7275ccf2eda..c3b51b237dd 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -56,7 +70,7 @@ msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/is/core.po b/l10n/is/core.po index 1b2f9827d2c..5dd96b65d4b 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "Breyta flokkum" msgid "Add" msgstr "BƦta" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Ɩryggis aưvƶrun" @@ -479,20 +479,24 @@ msgid "" "OpenSSL extension." msgstr "Enginn traustur slembitƶlugjafi Ć­ boưi, vinsamlegast virkjaưu PHP OpenSSL viưbótina." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Ɓn ƶruggs slembitƶlugjafa er mƶgulegt aư sjĆ” fyrir ƶryggis auưkenni til aư endursetja lykilorư og komast inn Ć” aưganginn þinn." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Gagnamappan þín er aư ƶllum lĆ­kindum aưgengileg frĆ” internetinu. SkrĆ”in .htaccess sem fylgir meư ownCloud er ekki aư virka. Viư mƦlum eindregiư meư þvĆ­ aư þú stillir vefþjóninn þannig aư gagnamappan verưi ekki aưgengileg frĆ” internetinu eưa fƦrir hana Ćŗt fyrir vefrótina." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/is/files.po b/l10n/is/files.po index 7e071bbb5dc..a1ea0e3040f 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Engin skrĆ” var send inn. Óþekkt villa." @@ -54,8 +68,8 @@ msgid "Failed to write to disk" msgstr "Tókst ekki aư skrifa Ć” disk" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Ekki nƦgt plĆ”ss tiltƦkt" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/it/core.po b/l10n/it/core.po index 81a401adfbb..9d72b5b8d27 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "Nessuna categoria da aggiungere?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Questa categoria esiste giĆ : %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -473,7 +473,7 @@ msgstr "Modifica le categorie" msgid "Add" msgstr "Aggiungi" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Avviso di sicurezza" @@ -483,20 +483,24 @@ msgid "" "OpenSSL extension." msgstr "Non ĆØ disponibile alcun generatore di numeri casuali sicuro. Abilita l'estensione OpenSSL di PHP" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Senza un generatore di numeri casuali sicuro, un malintenzionato potrebbe riuscire a individuare i token di ripristino delle password e impossessarsi del tuo account." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/it/files.po b/l10n/it/files.po index bad60c43657..fae888f3261 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-06 23:21+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,20 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nessun file ĆØ stato inviato. Errore sconosciuto" @@ -57,8 +71,8 @@ msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Spazio disponibile insufficiente" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index da11db7db7a..f023541c851 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-07 23:30+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,12 @@ msgstr "" #: ajax/delete.php:22 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Impossibile eliminare %s definitivamente" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Impossibile ripristinare %s" #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 94b7925d68f..8953241ed54 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2012. +# Vincenzo Reale , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-07 23:40+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,33 +21,33 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Impossibild ripristinare: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "completata" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Il file %s ĆØ stato ripristinato alla versione %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "non riuscita" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "Il file %s non può essere ripristinato alla versione %s" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "Non sono disponibili versioni precedenti" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "Nessun percorso specificato" #: js/versions.js:16 msgid "History" @@ -55,7 +55,7 @@ msgstr "Cronologia" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Ripristina un file a una versione precedente facendo clic sul rispettivo pulsante di ripristino" #: templates/settings.php:3 msgid "Files Versioning" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index b9b33863c2d..9dcf0043194 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-07 23:40+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -216,7 +216,7 @@ msgstr "Usa TLS" #: templates/settings.php:38 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Da non utilizzare per le connessioni LDAPS, non funzionerĆ ." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index ac2db016735..312d7f72cef 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "čæ½åŠ ć™ć‚‹ć‚«ćƒ†ć‚“ćƒŖćÆć‚ć‚Šć¾ć›ć‚“ć‹ļ¼Ÿ" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "ć“ć®ć‚«ćƒ†ć‚“ćƒŖćÆć™ć§ć«å­˜åœØć—ć¾ć™: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -470,7 +470,7 @@ msgstr "ć‚«ćƒ†ć‚“ćƒŖć‚’ē·Øé›†" msgid "Add" msgstr "追加" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£č­¦å‘Š" @@ -480,20 +480,24 @@ msgid "" "OpenSSL extension." msgstr "ć‚»ć‚­ćƒ„ć‚¢ćŖä¹±ę•°ē”Ÿęˆå™ØćŒåˆ©ē”ØåÆčƒ½ć§ćÆć‚ć‚Šć¾ć›ć‚“ć€‚PHP恮OpenSSLę‹”å¼µć‚’ęœ‰åŠ¹ć«ć—ć¦äø‹ć•ć„ć€‚" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ć‚»ć‚­ćƒ„ć‚¢ćŖä¹±ę•°ē”Ÿęˆå™ØćŒē„”ć„å “åˆć€ę”»ę’ƒč€…ćÆćƒ‘ć‚¹ćƒÆćƒ¼ćƒ‰ćƒŖć‚»ćƒƒćƒˆć®ćƒˆćƒ¼ć‚Æćƒ³ć‚’äŗˆęø¬ć—ć¦ć‚¢ć‚«ć‚¦ćƒ³ćƒˆć‚’ä¹—ć£å–ć‚‰ć‚Œć‚‹åÆčƒ½ę€§ćŒć‚ć‚Šć¾ć™ć€‚" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ćƒ‡ćƒ¼ć‚æćƒ‡ć‚£ćƒ¬ć‚ÆćƒˆćƒŖćØćƒ•ć‚”ć‚¤ćƒ«ćŒęć‚‰ćć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆć‹ć‚‰ć‚¢ć‚Æć‚»ć‚¹ć§ćć‚‹ć‚ˆć†ć«ćŖć£ć¦ć„ć¾ć™ć€‚ownCloudćŒęä¾›ć™ć‚‹ .htaccessćƒ•ć‚”ć‚¤ćƒ«ćŒę©Ÿčƒ½ć—ć¦ć„ć¾ć›ć‚“ć€‚ćƒ‡ćƒ¼ć‚æćƒ‡ć‚£ćƒ¬ć‚ÆćƒˆćƒŖć‚’å…Øćć‚¢ć‚Æć‚»ć‚¹ć§ććŖć„ć‚ˆć†ć«ć™ć‚‹ć‹ć€ćƒ‡ćƒ¼ć‚æćƒ‡ć‚£ćƒ¬ć‚ÆćƒˆćƒŖć‚’ć‚¦ć‚§ćƒ–ć‚µćƒ¼ćƒć®ćƒ‰ć‚­ćƒ„ćƒ”ćƒ³ćƒˆćƒ«ćƒ¼ćƒˆć®å¤–ć«ē½®ćć‚ˆć†ć«ć‚¦ć‚§ćƒ–ć‚µćƒ¼ćƒć‚’čØ­å®šć™ć‚‹ć“ćØć‚’å¼·ććŠå‹§ć‚ć—ć¾ć™ć€‚ " +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index e4e75ce4943..52a59def6d6 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 02:20+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,20 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ćƒ•ć‚”ć‚¤ćƒ«ćÆä½•ć‚‚ć‚¢ćƒƒćƒ—ćƒ­ćƒ¼ćƒ‰ć•ć‚Œć¦ć„ć¾ć›ć‚“ć€‚äøę˜ŽćŖć‚Øćƒ©ćƒ¼" @@ -58,8 +72,8 @@ msgid "Failed to write to disk" msgstr "ćƒ‡ć‚£ć‚¹ć‚Æćøć®ę›øćč¾¼ćæć«å¤±ę•—ć—ć¾ć—ćŸ" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "åˆ©ē”ØåÆčƒ½ćŖć‚¹ćƒšćƒ¼ć‚¹ćŒååˆ†ć«ć‚ć‚Šć¾ć›ć‚“" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 3abda02fac8..81066069c86 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 04:10+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,12 @@ msgstr "" #: ajax/delete.php:22 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "%s ć‚’å®Œå…Øć«å‰Šé™¤å‡ŗę„ć¾ć›ć‚“ć§ć—ćŸ" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "%s ć‚’å¾©å…ƒå‡ŗę„ć¾ć›ć‚“ć§ć—ćŸ" #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index dbe6ef869cf..79e1e19a465 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -4,14 +4,15 @@ # # Translators: # Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 04:20+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,33 +23,33 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "å…ƒć«ęˆ»ć›ć¾ć›ć‚“ć§ć—ćŸ: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "成功" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "ćƒ•ć‚”ć‚¤ćƒ« %s ć‚’ćƒćƒ¼ć‚øćƒ§ćƒ³ %s ć«ęˆ»ć—ć¾ć—ćŸ" #: history.php:49 msgid "failure" -msgstr "" +msgstr "失敗" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "ćƒ•ć‚”ć‚¤ćƒ« %s ć‚’ćƒćƒ¼ć‚øćƒ§ćƒ³ %s ć«ęˆ»ć›ć¾ć›ć‚“ć§ć—ćŸ" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "åˆ©ē”ØåÆčƒ½ćŖå¤ć„ćƒćƒ¼ć‚øćƒ§ćƒ³ćÆć‚ć‚Šć¾ć›ć‚“" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "ćƒ‘ć‚¹ćŒęŒ‡å®šć•ć‚Œć¦ć„ć¾ć›ć‚“" #: js/versions.js:16 msgid "History" @@ -56,7 +57,7 @@ msgstr "屄歓" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "ć‚‚ćØć«ęˆ»ć™ćƒœć‚æćƒ³ć‚’ć‚ÆćƒŖćƒƒć‚Æć™ć‚‹ćØć€ćƒ•ć‚”ć‚¤ćƒ«ć‚’éŽåŽ»ć®ćƒćƒ¼ć‚øćƒ§ćƒ³ć«ęˆ»ć—ć¾ć™" #: templates/settings.php:3 msgid "Files Versioning" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 7f94b3e0f41..0a8dc594153 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 04:10+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -218,7 +218,7 @@ msgstr "TLSć‚’åˆ©ē”Ø" #: templates/settings.php:38 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "LDAPSęŽ„ē¶šć®ćŸć‚ć«čæ½åŠ ć§ćć‚Œć‚’åˆ©ē”Øć—ćŖć„ć§äø‹ć•ć„ć€‚å¤±ę•—ć—ć¾ć™ć€‚" #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 4ba8e43f950..9874547f038 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -468,7 +468,7 @@ msgstr "įƒ™įƒįƒ¢įƒ”įƒ’įƒįƒ įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ įƒ”įƒ“įƒįƒ„įƒ¢įƒ˜įƒ įƒ”įƒ‘įƒ" msgid "Add" msgstr "įƒ“įƒįƒ›įƒįƒ¢įƒ”įƒ‘įƒ" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "įƒ£įƒ”įƒįƒ¤įƒ įƒ—įƒ®įƒįƒ”įƒ‘įƒ˜įƒ” įƒ’įƒįƒ¤įƒ įƒ—įƒ®įƒ˜įƒšįƒ”įƒ‘įƒ" @@ -478,19 +478,23 @@ msgid "" "OpenSSL extension." msgstr "įƒØįƒ”įƒ›įƒ—įƒ®įƒ•įƒ”įƒ•įƒ˜įƒ—įƒ˜ įƒ”įƒ˜įƒ›įƒ‘įƒįƒšįƒįƒ”įƒ‘įƒ˜įƒ” įƒ’įƒ”įƒœįƒ”įƒ įƒįƒ¢įƒįƒ įƒ˜ არ įƒįƒ įƒ”įƒ”įƒ‘įƒįƒ‘įƒ”, įƒ’įƒ—įƒ®įƒįƒ•įƒ— įƒ©įƒįƒ įƒ—įƒįƒ— PHP OpenSSL įƒ’įƒįƒ¤įƒįƒ įƒ—įƒįƒ”įƒ‘įƒ." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "įƒØįƒ”įƒ›įƒ—įƒ®įƒ•įƒ”įƒ•įƒ˜įƒ—įƒ˜ įƒ”įƒ˜įƒ›įƒ‘įƒįƒšįƒįƒ”įƒ‘įƒ˜įƒ” įƒ’įƒ”įƒœįƒ”įƒ įƒįƒ¢įƒįƒ įƒ˜įƒ” įƒ’įƒįƒ įƒ”įƒØįƒ”, įƒØįƒ”įƒ›įƒ¢įƒ”įƒ•įƒ›įƒ įƒØįƒ”įƒ˜įƒ«įƒšįƒ”įƒ‘įƒ įƒįƒ›įƒįƒ˜įƒŖįƒœįƒįƒ” įƒ—įƒ„įƒ•įƒ”įƒœįƒ˜ įƒžįƒįƒ įƒįƒšįƒ˜ įƒØįƒ”įƒ’įƒ˜įƒŖįƒ•įƒįƒšįƒįƒ— იე įƒ“įƒ įƒ“įƒįƒ”įƒ£įƒ¤įƒšįƒįƒ” įƒ—įƒ„įƒ•įƒ”įƒœįƒ” įƒ”įƒ„įƒįƒ£įƒœįƒ—įƒ”." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 828806cc05d..640d3d1fabd 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -54,7 +68,7 @@ msgid "Failed to write to disk" msgstr "įƒØįƒ”įƒŖįƒ“įƒįƒ›įƒ įƒ“įƒ˜įƒ”įƒ™įƒ–įƒ” įƒ©įƒįƒ¬įƒ”įƒ įƒ˜įƒ”įƒįƒ”" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index ac8214697de..72fae94a3df 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -472,7 +472,7 @@ msgstr "ė¶„ė„˜ ķŽøģ§‘" msgid "Add" msgstr "추가" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ė³“ģ•ˆ 경고" @@ -482,20 +482,24 @@ msgid "" "OpenSSL extension." msgstr "ģ•ˆģ „ķ•œ ė‚œģˆ˜ ģƒģ„±źø°ė„¼ ģ‚¬ģš©ķ•  수 ģ—†ģŠµė‹ˆė‹¤. PHPģ˜ OpenSSL ķ™•ģž„ģ„ ķ™œģ„±ķ™”ķ•“ ģ£¼ģ‹­ģ‹œģ˜¤." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ģ•ˆģ „ķ•œ ė‚œģˆ˜ ģƒģ„±źø°ė„¼ ģ‚¬ģš©ķ•˜ģ§€ ģ•Šģœ¼ė©“ ź³µź²©ģžź°€ ģ•”ķ˜ø ģ“ˆźø°ķ™” ķ† ķ°ģ„ ģ¶”ģø”ķ•˜ģ—¬ ź³„ģ •ģ„ ķƒˆģ·Øķ•  수 ģžˆģŠµė‹ˆė‹¤." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ė°ģ“ķ„° 디렉터리와 ķŒŒģ¼ģ„ ģøķ„°ė„·ģ—ģ„œ 접근할 수 ģžˆėŠ” 것 ź°™ģŠµė‹ˆė‹¤. ownCloudģ—ģ„œ ģ œź³µķ•œ .htaccess ķŒŒģ¼ģ“ ģž‘ė™ķ•˜ģ§€ ģ•ŠģŠµė‹ˆė‹¤. 웹 ģ„œė²„ė„¼ ė‹¤ģ‹œ ģ„¤ģ •ķ•˜ģ—¬ ė°ģ“ķ„° 디렉터리에 접근할 수 ģ—†ė„ė” ķ•˜ź±°ė‚˜ ė¬øģ„œ 루트 ė°”ź¹„ģŖ½ģœ¼ė”œ ģ˜®źø°ėŠ” ź²ƒģ„ ģ¶”ģ²œķ•©ė‹ˆė‹¤." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 6ab4e6667eb..3b842ed2525 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,20 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ķŒŒģ¼ģ“ ģ—…ė”œė“œė˜ģ§€ ģ•Šģ•˜ģŠµė‹ˆė‹¤. ģ•Œ 수 ģ—†ėŠ” ģ˜¤ė„˜ģž…ė‹ˆė‹¤" @@ -59,8 +73,8 @@ msgid "Failed to write to disk" msgstr "ė””ģŠ¤ķ¬ģ— ģ“°ģ§€ ėŖ»ķ–ˆģŠµė‹ˆė‹¤" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "ģ—¬ģœ  ź³µź°„ģ“ ė¶€ģ”±ķ•©ė‹ˆė‹¤" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 02ece737b99..f665ac3e0af 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -468,7 +468,7 @@ msgstr "" msgid "Add" msgstr "Ų²ŪŒŲ§ŲÆŚ©Ų±ŲÆŁ†" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -478,19 +478,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 8f5359f7a0d..a94f4636966 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -53,7 +67,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 64bc4df0cf1..a3e8cd581d7 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "Kategorien editĆ©ieren" msgid "Add" msgstr "BƤisetzen" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "SĆ©cherheets Warnung" @@ -479,19 +479,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 251898c3e53..fd8f5e4c98c 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -54,7 +68,7 @@ msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 0dc75a0c9c8..423db4d6592 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "Redaguoti kategorijas" msgid "Add" msgstr "Pridėti" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Saugumo praneÅ”imas" @@ -479,20 +479,24 @@ msgid "" "OpenSSL extension." msgstr "Saugaus atsitiktinių skaičių generatoriaus nėra, praÅ”ome ÄÆjungti PHP OpenSSL modulÄÆ." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Be saugaus atsitiktinių skaičių generatoriaus, piktavaliai gali atspėti JÅ«sų slaptažodÄÆ ir pasisavinti paskyrą." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "JÅ«sų duomenų aplankalas ir JÅ«sų failai turbÅ«t yra pasiekiami per internetą. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebÅ«tų pasiekiami per internetą, arba persikelti juos kitur." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index c6bf98088b6..33d7eb0d16c 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -56,7 +70,7 @@ msgid "Failed to write to disk" msgstr "Nepavyko ÄÆraÅ”yti ÄÆ diską" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 9ef17685365..c64e2073ede 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Nav kategoriju, ko pievienot?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Šāda kategorija jau eksistē — %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -469,7 +469,7 @@ msgstr "Rediģēt kategoriju" msgid "Add" msgstr "Pievienot" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "BrÄ«dinājums par droŔību" @@ -479,20 +479,24 @@ msgid "" "OpenSSL extension." msgstr "Nav pieejams droÅ”s nejauÅ”u skaitļu Ä£enerators. LÅ«dzu, aktivējiet PHP OpenSSL paplaÅ”inājumu." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez droÅ”a nejauÅ”u skaitļu Ä£eneratora uzbrucējs var paredzēt paroļu atjaunoÅ”anas marÄ·ierus un pārņem jÅ«su kontu." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "JÅ«su datu direktorija un datnes visdrÄ«zāk ir pieejamas no interneta. ownCloud nodroÅ”inātā .htaccess datne nedarbojas. Mēs iesakām konfigurēt serveri tā, lai datu direktorija vairs nebÅ«tu pieejama, vai arÄ« pārvietojiet datu direktoriju ārpus tÄ«mekļa servera dokumentu saknes." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 4eec0dad65b..803cbc17253 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 04:20+0000\n" -"Last-Translator: RÅ«dolfs Mazurs \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,20 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Netika augÅ”upielādēta neviena datne. Nezināma kļūda" @@ -56,8 +70,8 @@ msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Nepietiek brÄ«vas vietas" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 952a7488cdd..ef9c6063c3b 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+0000\n" +"Last-Translator: RÅ«dolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,12 @@ msgstr "" #: ajax/delete.php:22 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Nevarēja pilnÄ«bā izdzēst %s" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Nevarēja atjaunot %s" #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index 2bad08ded60..7d9e6940598 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+0000\n" +"Last-Translator: RÅ«dolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,33 +21,33 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Nevarēja atgriezt — %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "veiksme" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Datne %s tika atgriezt uz versiju %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "neveiksme" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "Datni %s nevarēja atgriezt uz versiju %s" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "Nav pieejamu vecāku versiju" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "Nav norādÄ«ts ceļŔ" #: js/versions.js:16 msgid "History" @@ -55,7 +55,7 @@ msgstr "Vēsture" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Atgriez datni uz iepriekŔēju versiju, spiežot uz tās atgrieÅ”anas pogu" #: templates/settings.php:3 msgid "Files Versioning" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index a2d0e2a14e2..3635e7a2787 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 12:20+0000\n" +"Last-Translator: RÅ«dolfs Mazurs \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -215,7 +215,7 @@ msgstr "Lietot TLS" #: templates/settings.php:38 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Neizmanto papildu LDAPS savienojumus! Tas nestrādās." #: templates/settings.php:39 msgid "Case insensitve LDAP server (Windows)" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 9c03b08032c..547295277d1 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -470,7 +470,7 @@ msgstr "УреГи категории" msgid "Add" msgstr "ДоГаГи" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "БезбеГносно ŠæŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ“ŃƒŠ²Š°ŃšŠµ" @@ -480,20 +480,24 @@ msgid "" "OpenSSL extension." msgstr "ŠŠµ е Гостапен безбеГен генератор на ŃŠ»ŃƒŃ‡Š°Ń˜Š½Šø броеви, Ве молам озвоможете го OpenSSL PHP ГоГатокот." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без ŃŠøŠ³ŃƒŃ€ŠµŠ½ генератор на ŃŠ»ŃƒŃ‡Š°Ń˜Š½Šø броеви напаѓач може Га ги преГвиГи жетоните за Ń€ŠµŃŠµŃ‚ŠøŃ€Š°ŃšŠµ на лозинка Šø Га преземе контрола врз Š’Š°ŃˆŠ°Ń‚Š° сметка. " +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Š’Š°ŃˆŠ°Ń‚Š° папка со поГатоци Šø Гатотеките е Š½Š°Ń˜Š²ŠµŃ€Š¾Ń˜Š°Ń‚но Гостапна оГ интернет. .htaccess Гатотеката ŃˆŃ‚Š¾ ја овозможува ownCloud не Ń„ŃƒŠ½Ń†ŠøŠ¾Š½ŠøŃ€Š°. Дилно ŠæŃ€ŠµŠæŠ¾Ń€Š°Ń‡ŃƒŠ²Š°Š¼Šµ Га го ŠøŃŠŗŠ¾Š½Ń„ŠøŠ³ŃƒŃ€ŠøŃ€Š°Ń‚Šµ Š²Š°ŃˆŠøŠ¾Ń‚ сервер за Š²Š°ŃˆŠ°Ń‚а папка со поГатоци не е Гостапна ŠæŃ€ŠµŠŗŃƒ интернетт или преместете ја наГвор оГ коренот на веб серверот." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 040ed8a2a7f..67955f49c62 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ŠŠøŃ‚Ńƒ еГен Ń„Š°Ń˜Š» не се вчита. ŠŠµŠæŠ¾Š·Š½Š°Ń‚Š° Š³Ń€ŠµŃˆŠŗŠ°" @@ -56,7 +70,7 @@ msgid "Failed to write to disk" msgstr "ŠŠµŃƒŃŠæŠµŠ°Š² Га запишам на Гиск" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 88586eccd11..e52ed670306 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -470,7 +470,7 @@ msgstr "Edit kategori" msgid "Add" msgstr "Tambah" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Amaran keselamatan" @@ -480,19 +480,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index d27c0cdafb0..fe69de831b7 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." @@ -57,7 +71,7 @@ msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index aeb978b5231..014392c6d21 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -474,7 +474,7 @@ msgstr "Rediger kategorier" msgid "Add" msgstr "Legg til" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" @@ -484,19 +484,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index eb59e0831fb..832fb94d7bf 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian BokmĆ„l (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,20 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." @@ -62,7 +76,7 @@ msgid "Failed to write to disk" msgstr "Klarte ikke Ć„ skrive til disk" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 0727c27ea0a..5200e7c3b07 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -481,7 +481,7 @@ msgstr "Wijzigen categorieĆ«n" msgid "Add" msgstr "Toevoegen" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Beveiligingswaarschuwing" @@ -491,20 +491,24 @@ msgid "" "OpenSSL extension." msgstr "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL extentie aan." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Zonder random nummer generator is het mogelijk voor een aanvaller om de reset tokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htaccess bestand dat ownCloud levert werkt niet goed. U wordt aangeraden om de configuratie van uw webserver zodanig aan te passen dat de data folders niet meer publiekelijk toegankelijk zijn. U kunt ook de data folder verplaatsen naar een folder buiten de webserver document folder." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index c0912a6c46e..b91face47ae 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 14:00+0000\n" -"Last-Translator: AndrĆ© Koot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,6 +29,20 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" @@ -65,8 +79,8 @@ msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Niet genoeg ruimte beschikbaar" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 00d289cdaf0..9146472fcc9 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "" msgid "Add" msgstr "Legg til" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -479,19 +479,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 555ee143593..5ec5f461014 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -55,7 +69,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 5d770fb4d5f..8860e32037b 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -468,7 +468,7 @@ msgstr "Edita categorias" msgid "Add" msgstr "Ajusta" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Avertiment de securitat" @@ -478,19 +478,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 16d511d2e46..115f85f0fb1 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -54,7 +68,7 @@ msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 1145b52a9fc..780d9e45d76 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -477,7 +477,7 @@ msgstr "Edytuj kategorię" msgid "Add" msgstr "Dodaj" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Ostrzeżenie o zabezpieczeniach" @@ -487,20 +487,24 @@ msgid "" "OpenSSL extension." msgstr "Niedostępny bezpieczny generator liczb losowych, należy włączyć rozszerzenie OpenSSL w PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez bezpiecznego generatora liczb losowych, osoba atakująca może być w stanie przewidzieć resetujące hasło tokena i przejąć kontrolę nad swoim kontem." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Katalog danych (data) i pliki są prawdopodobnie dostępnego z Internetu. SprawdÅŗ plik .htaccess oraz konfigurację serwera (hosta). Sugerujemy, skonfiguruj swój serwer w taki sposób, żeby dane katalogu nie były dostępne lub przenieść katalog danych spoza głównego dokumentu webserwera." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 86f9c33c283..74de66a0d41 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,20 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Plik nie został załadowany. Nieznany błąd" @@ -61,8 +75,8 @@ msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Za mało miejsca" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 670cdf6a339..fd6666ba2dd 100644 --- a/l10n/pl_PL/core.po +++ b/l10n/pl_PL/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -467,7 +467,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -477,19 +477,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 23c778df2b3..19de2c06401 100644 --- a/l10n/pl_PL/files.po +++ b/l10n/pl_PL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: pl_PL\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -53,7 +67,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 55126f95483..bf4e2100d62 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -478,7 +478,7 @@ msgstr "Editar categorias" msgid "Add" msgstr "Adicionar" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Aviso de SeguranƧa" @@ -488,20 +488,24 @@ msgid "" "OpenSSL extension." msgstr "Nenhum gerador de nĆŗmero aleatório de seguranƧa disponĆ­vel. Habilite a extensĆ£o OpenSSL do PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sem um gerador de nĆŗmero aleatório de seguranƧa, um invasor pode ser capaz de prever os sĆ­mbolos de redefinição de senhas e assumir sua conta." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Seu diretório de dados e seus arquivos estĆ£o, provavelmente, acessĆ­veis a partir da internet. O .htaccess que o ownCloud fornece nĆ£o estĆ” funcionando. Nós sugerimos que vocĆŖ configure o seu servidor web de uma forma que o diretório de dados esteja mais acessĆ­vel ou que vocĆŖ mova o diretório de dados para fora da raiz do servidor web." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index d9891649b5b..a1270334a2b 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,20 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi transferido. Erro desconhecido" @@ -62,7 +76,7 @@ msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 6da6a44263c..720a1bc3a2e 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -475,7 +475,7 @@ msgstr "Editar categorias" msgid "Add" msgstr "Adicionar" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Aviso de SeguranƧa" @@ -485,20 +485,24 @@ msgid "" "OpenSSL extension." msgstr "NĆ£o existe nenhum gerador seguro de nĆŗmeros aleatórios, por favor, active a extensĆ£o OpenSSL no PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Sem nenhum gerador seguro de nĆŗmeros aleatórios, uma pessoa mal intencionada pode prever a sua password, reiniciar as seguranƧas adicionais e tomar conta da sua conta. " +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "A sua pasta com os dados e os seus ficheiros estĆ£o provavelmente acessĆ­veis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessĆ­vel, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 9798bc803a8..4f3a80d9f70 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 18:20+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,6 +25,20 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" @@ -61,8 +75,8 @@ msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "EspaƧo em disco insuficiente!" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 69eac503888..ef9d59ed883 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -473,7 +473,7 @@ msgstr "Editează categoriile" msgid "Add" msgstr "Adaugă" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Avertisment de securitate" @@ -483,20 +483,24 @@ msgid "" "OpenSSL extension." msgstr "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Ǝți recomandăm să configurezi server-ul tău web Ć®ntr-un mod Ć®n care directorul de date să nu mai fie accesibil sau mută directorul de date Ć®n afara directorului root al server-ului web." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 13109711398..5cb6516a737 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,20 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost Ć®ncărcat. Eroare necunoscută" @@ -59,8 +73,8 @@ msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Nu este suficient spațiu disponibil" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 2fe0ff544c5..f41a1f241b9 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -64,7 +64,7 @@ msgstr "ŠŠµŃ‚ категорий Š“Š»Ń Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Эта ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -479,7 +479,7 @@ msgstr "Š ŠµŠ“Š°ŠŗŃ‚ŠøŃ€Š¾Š²Š°Ń‚ŃŒ категории" msgid "Add" msgstr "Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ŠŸŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ безопасности" @@ -489,20 +489,24 @@ msgid "" "OpenSSL extension." msgstr "ŠŠµŃ‚ Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾Š³Š¾ защищенного генератора ŃŠ»ŃƒŃ‡Š°Š¹Š½Ń‹Ń… чисел, ŠæŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, Š²ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šµ Ń€Š°ŃŃˆŠøŃ€ŠµŠ½ŠøŠµ PHP OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без защищенного генератора ŃŠ»ŃƒŃ‡Š°Š¹Š½Ń‹Ń… чисел Š·Š»Š¾ŃƒŠ¼Ń‹ŃˆŠ»ŠµŠ½Š½ŠøŠŗ может ŠæŃ€ŠµŠ“ŃƒŠ³Š°Š“Š°Ń‚ŃŒ токены сброса ŠæŠ°Ń€Š¾Š»Ń Šø Š·Š°Š²Š»Š°Š“ŠµŃ‚ŃŒ Š’Š°ŃˆŠµŠ¹ ŃƒŃ‡ŠµŃ‚Š½Š¾Š¹ Š·Š°ŠæŠøŃŃŒŃŽ." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Š’Š°ŃˆŠø каталоги Ганных Šø файлы, Š²ŠµŃ€Š¾ŃŃ‚Š½Š¾, Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹ ŠøŠ· Š˜Š½Ń‚ŠµŃ€Š½ŠµŃ‚Š°. Файл .htaccess, ŠæŃ€ŠµŠ“Š¾ŃŃ‚Š°Š²Š»ŃŠµŠ¼Ń‹Š¹ ownCloud, не работает. ŠœŃ‹ Š½Š°ŃŃ‚Š¾ŃŃ‚ŠµŠ»ŃŒŠ½Š¾ Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŠµŠ¼ Вам Š½Š°ŃŃ‚Ń€Š¾ŠøŃ‚ŃŒ вебсервер таким образом, чтобы каталоги Ганных больше не были Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹, или ŠæŠµŃ€ŠµŠ¼ŠµŃŃ‚ŠøŃ‚ŃŒ ŠøŃ… за преГелы корневого каталога Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š² веб-сервера." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 5b2b1fe3bc7..bbb67c0ef4a 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 07:00+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,20 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Файл не был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½. ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š°Ń ошибка" @@ -66,8 +80,8 @@ msgid "Failed to write to disk" msgstr "ŠžŃˆŠøŠ±ŠŗŠ° записи на Гиск" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "ŠŠµŠ“Š¾ŃŃ‚Š°Ń‚Š¾Ń‡Š½Š¾ свобоГного места" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index c3281de1972..4f23cda8f69 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 07:50+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:40+0000\n" "Last-Translator: Langaru \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "ŠŸŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š° ŠæŠµŃ€ŠµŠŗŠ»ŃŽŃ‡ŠøŃ‚ŠµŃŃŒ на Š’Š°Ńˆ клиент #: js/settings-personal.js:17 msgid "switched to client side encryption" -msgstr "" +msgstr "ŠæŠµŃ€ŠµŠŗŠ»ŃŽŃ‡Ń‘Š½ на ŃˆŠøŃ„Ń€Š¾Š²Š°Š½ŠøŠµ со стороны клиента" #: js/settings-personal.js:21 msgid "Change encryption password to login password" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 7875cd89640..2da2f61dbc1 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 04:50+0000\n" +"Last-Translator: Langaru \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,12 @@ msgstr "" #: ajax/delete.php:22 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "%s не может Š±Ń‹Ń‚ŃŒ ŃƒŠ“Š°Š»Ń‘Š½ навсегГа" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "%s не может Š±Ń‹Ń‚ŃŒ восстановлен" #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index 5ffb2ea5701..87dce55db7e 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -6,13 +6,14 @@ # Denis , 2012. # , 2012. # , 2012. +# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 06:30+0000\n" +"Last-Translator: Langaru \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,33 +24,33 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "ŠŠµ может Š±Ń‹Ń‚ŃŒ возвращён: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "ŃƒŃŠæŠµŃ…" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Файл %s был возвращён Šŗ версии %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "провал" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "Файл %s не может Š±Ń‹Ń‚ŃŒ возвращён Šŗ версии %s" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "ŠŠµŃ‚ Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹Ń… старых версий" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "ŠŸŃƒŃ‚ŃŒ не указан" #: js/versions.js:16 msgid "History" @@ -57,7 +58,7 @@ msgstr "Š˜ŃŃ‚Š¾Ń€ŠøŃ" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Š’ŠµŃ€Š½ŃƒŃ‚ŃŒ файл Šŗ ŠæŃ€ŠµŠ“Ń‹Š“ŃƒŃ‰ŠµŠ¹ версии нажатием на кнопку возврата" #: templates/settings.php:3 msgid "Files Versioning" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 7c8cb7de7c0..a32af7892a2 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -5,12 +5,13 @@ # Translators: # , 2013. # , 2012. +# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -54,7 +55,7 @@ msgstr "ŠŠµŃ‚ категории Š“Š»Ń Š“Š¾Š±Š°Š²Š»ŠµŠ½ŠøŃ?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Эта ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ уже ŃŃƒŃ‰ŠµŃŃ‚Š²ŃƒŠµŃ‚: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -469,7 +470,7 @@ msgstr "РеГактирование категорий" msgid "Add" msgstr "Š”Š¾Š±Š°Š²ŠøŃ‚ŃŒ" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ŠŸŃ€ŠµŠ“ŃƒŠæŃ€ŠµŠ¶Š“ŠµŠ½ŠøŠµ системы безопасности" @@ -479,20 +480,24 @@ msgid "" "OpenSSL extension." msgstr "ŠŠµŃ‚ Š“Š¾ŃŃ‚ŃƒŠæŠ½Š¾Š³Š¾ защищенного генератора ŃŠ»ŃƒŃ‡Š°Š¹Š½Ń‹Ń… чисел, ŠæŠ¾Š¶Š°Š»ŃƒŠ¹ŃŃ‚Š°, Š²ŠŗŠ»ŃŽŃ‡ŠøŃ‚Šµ Ń€Š°ŃŃˆŠøŃ€ŠµŠ½ŠøŠµ PHP OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без защищенного генератора ŃŠ»ŃƒŃ‡Š°Š¹Š½Ń‹Ń… чисел Š·Š»Š¾ŃƒŠ¼Ń‹ŃˆŠ»ŠµŠ½Š½ŠøŠŗ может ŃŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Ń‚ŃŒ ŠæŠ°Ń€Š¾Š»ŃŒ, ŃŠ±Ń€Š¾ŃŠøŃ‚ŃŒ ŃƒŃ‡ŠµŃ‚Š½Ń‹Šµ Ганные Šø Š·Š°Š²Š»Š°Š“ŠµŃ‚ŃŒ Š’Š°ŃˆŠøŠ¼ Š°ŠŗŠŗŠ°ŃƒŠ½Ń‚Š¾Š¼." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Š’Š°ŃˆŠø каталоги Ганных Šø файлы, Š²ŠµŃ€Š¾ŃŃ‚Š½Š¾, Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹ ŠøŠ· Š˜Š½Ń‚ŠµŃ€Š½ŠµŃ‚Š°. Файл .htaccess, ŠæŃ€ŠµŠ“Š¾ŃŃ‚Š°Š²Š»ŃŠµŠ¼Ń‹Š¹ ownCloud, не работает. ŠœŃ‹ Š½Š°ŃŃ‚Š¾ŃŃ‚ŠµŠ»ŃŒŠ½Š¾ Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŠµŠ¼ Вам Š½Š°ŃŃ‚Ń€Š¾ŠøŃ‚ŃŒ вебсервер таким образом, чтобы каталоги Ганных больше не были Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń‹, или ŠæŠµŃ€ŠµŠ¼ŠµŃŃ‚ŠøŃ‚ŃŒ ŠøŃ… за преГелы корневого каталога Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š² веб-сервера." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" @@ -575,7 +580,7 @@ msgstr "Войти" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "ŠŠ»ŃŒŃ‚ŠµŃ€Š½Š°Ń‚ŠøŠ²Š½Ń‹Šµ Имена" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index 659837c8c94..574b383f37a 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -6,12 +6,13 @@ # , 2013. # , 2012. # , 2012. +# Дмитрий , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -20,6 +21,20 @@ msgstr "" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Файл не был Š·Š°Š³Ń€ŃƒŠ¶ŠµŠ½. ŠŠµŠøŠ·Š²ŠµŃŃ‚Š½Š°Ń ошибка" @@ -56,8 +71,8 @@ msgid "Failed to write to disk" msgstr "ŠŠµ уГалось Š·Š°ŠæŠøŃŠ°Ń‚ŃŒ на Гиск" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "ŠŠµ Гостаточно свобоГного места" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." @@ -73,7 +88,7 @@ msgstr "Š”ŠŗŃ€Ń‹Ń‚ŃŒ" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "Š£Š“Š°Š»ŠøŃ‚ŃŒ навсегГа" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" @@ -113,7 +128,7 @@ msgstr "заменено {новое_ŠøŠ¼Ń} с {старое_ŠøŠ¼Ń}" #: js/filelist.js:280 msgid "perform delete operation" -msgstr "" +msgstr "Š²Ń‹ŠæŠ¾Š»Š½ŃŠµŃ‚ŃŃ процесс ŃƒŠ“Š°Š»ŠµŠ½ŠøŃ" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -131,17 +146,17 @@ msgstr "ŠŠµŠŗŠ¾Ń€Ń€ŠµŠŗŃ‚Š½Š¾Šµ ŠøŠ¼Ń, '\\', '/', '<', '>', ':', '\"', '|', '? #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Š’Š°ŃˆŠµ хранилище переполнено, фалы больше не Š¼Š¾Š³ŃƒŃ‚ Š±Ń‹Ń‚ŃŒ обновлены или синхронизированы!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Š’Š°ŃˆŠµ хранилище почти полно ({usedSpacePercent}%)" #: js/files.js:224 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Š˜Š“Ń‘Ń‚ поГготовка Šŗ скачке Š’Š°ŃˆŠµŠ³Š¾ файла. Это может Š·Š°Š½ŃŃ‚ŃŒ некоторое Š²Ń€ŠµŠ¼Ń, если фалы большие." #: js/files.js:261 msgid "Unable to upload your file as it is a directory or has 0 bytes" @@ -266,7 +281,7 @@ msgstr "По ссылке" #: templates/index.php:40 msgid "Trash" -msgstr "" +msgstr "ŠšŠ¾Ń€Š·ŠøŠ½Š°" #: templates/index.php:46 msgid "Cancel upload" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index 7ad98a2f903..d738f9f4215 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 17:51+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -65,4 +65,4 @@ msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "Š’Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŃŒ" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index f5dcd23183c..d628f447037 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -470,7 +470,7 @@ msgstr "ą¶“ą·Šā€ą¶»ą¶·ą·šą¶Æą¶ŗą¶±ą·Š ą·ƒą¶‚ą·ƒą·Šą¶šą¶»ą¶«ą¶ŗ" msgid "Add" msgstr "ą¶‘ą¶šą·Š කරන්න" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ą¶†ą¶»ą¶šą·Šą·‚ą¶š ą¶±ą·’ą·€ą·šą¶Æą¶±ą¶ŗą¶šą·Š" @@ -480,20 +480,24 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ą¶†ą¶»ą¶šą·Šą·‚ą·’ą¶­ අහඹු ą·ƒą¶‚ą¶›ą·Šā€ą¶ŗą· ą¶‹ą¶­ą·Šą¶“ą·ą¶Æą¶šą¶ŗą¶šą·Š ą¶±ą·œą¶øą·ą¶­ą·’ නම් ą¶”ą¶¶ą¶œą·š ą¶œą·’ą¶«ą·”ą¶øą¶§ ඓහරදෙන ą¶…ą¶ŗą¶šą·”ą¶§ ą¶‘ą·„ą·’ මුරඓද ą¶ŗą·…ą·’ ඓිහිටුවීමට ą¶…ą·€ą·ą·Šā€ą¶ŗ ą¶§ą·ą¶šą¶± ą¶“ą·„ą·ƒą·”ą·€ą·™ą¶±ą·Š ą·ƒą·œą¶ŗą·ą¶œą·™ą¶± ą¶”ą¶¶ą¶œą·š ą¶œą·’ą¶«ą·”ą¶ø ą¶“ą·ą·„ą·ą¶»ą¶œą¶­ ą·„ą·ą¶š." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ą¶”ą¶¶ą¶œą·š දත්ත ą¶©ą·’ą¶»ą·™ą¶šą·Šą¶§ą¶»ą·’ą¶ŗ ą·„ą· ą¶œą·œą¶±ą·”ą·€ą¶½ą¶§ ą¶…ą¶±ą·Šą¶­ą¶»ą·Šą¶¢ą·ą¶½ą¶ŗą·™ą¶±ą·Š ą¶“ą·’ą·€ą·’ą·ƒą·’ą¶ŗ ą·„ą·ą¶š. ownCloud ą·ƒą¶“ą¶ŗą· ඇති .htaccess ą¶œą·œą¶±ą·”ą·€ ą¶šą·Šā€ą¶»ą·’ą¶ŗą·ą¶šą¶»ą¶±ą·Šą¶±ą·š නැත. ą¶…ą¶“ą·’ තරයේ ą¶šą·’ą¶ŗą· ą·ƒą·’ą¶§ą·’ą¶±ą·”ą¶ŗą·š නම්, මෙම දත්ත ą·„ą· ą¶œą·œą¶±ą·” ą¶‘ą·ƒą·š ą¶“ą·’ą·€ą·’ą·ƒą·“ą¶øą¶§ ą¶±ą·œą·„ą·ą¶šą·’ වන ą¶½ą·™ą·ƒ ą¶”ą¶¶ą·š ą·€ą·™ą¶¶ą·Š ą·ƒą·šą·€ą·ą¶Æą·ą¶ŗą¶šą¶ŗą· ą·€ą·’ą¶±ą·Šā€ą¶ŗą·ą·ƒ කරන ą¶½ą·™ą·ƒ ą·„ą· ą¶‘ą¶ø ą¶©ą·’ą¶»ą·™ą¶šą·Šą¶§ą¶»ą·’ą¶ŗ ą·€ą·™ą¶¶ą·Š ą¶øą·–ą¶½ą¶ŗą·™ą¶±ą·Š ą¶“ą·’ą¶§ą¶­ą¶§ ą¶œą·™ą¶±ą¶ŗą¶± ą¶½ą·™ą·ƒą¶ŗ." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index f98b038c8ea..e3e769381eb 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ą¶œą·œą¶±ą·”ą·€ą¶šą·Š ą¶‹ą¶©ą·”ą¶œą¶­ ą¶±ą·œą·€ą·”ą¶±ą·’. ą¶±ą·œą·„ą·ą¶³ą·’ą¶±ą·” ą¶Æą·ą·‚ą¶ŗą¶šą·Š" @@ -55,7 +69,7 @@ msgid "Failed to write to disk" msgstr "ą¶­ą·ą¶§ą·’ą¶œą¶­ ą¶šą·’ą¶»ą·“ą¶ø ą¶…ą·ƒą·ą¶»ą·Šą¶®ą¶šą¶ŗą·’" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/sk/core.po b/l10n/sk/core.po new file mode 100644 index 00000000000..5986e77ed44 --- /dev/null +++ b/l10n/sk/core.po @@ -0,0 +1,593 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/share.php:85 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:87 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:89 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:91 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:32 +msgid "Monday" +msgstr "" + +#: js/config.php:32 +msgid "Tuesday" +msgstr "" + +#: js/config.php:32 +msgid "Wednesday" +msgstr "" + +#: js/config.php:32 +msgid "Thursday" +msgstr "" + +#: js/config.php:32 +msgid "Friday" +msgstr "" + +#: js/config.php:32 +msgid "Saturday" +msgstr "" + +#: js/config.php:33 +msgid "January" +msgstr "" + +#: js/config.php:33 +msgid "February" +msgstr "" + +#: js/config.php:33 +msgid "March" +msgstr "" + +#: js/config.php:33 +msgid "April" +msgstr "" + +#: js/config.php:33 +msgid "May" +msgstr "" + +#: js/config.php:33 +msgid "June" +msgstr "" + +#: js/config.php:33 +msgid "July" +msgstr "" + +#: js/config.php:33 +msgid "August" +msgstr "" + +#: js/config.php:33 +msgid "September" +msgstr "" + +#: js/config.php:33 +msgid "October" +msgstr "" + +#: js/config.php:33 +msgid "November" +msgstr "" + +#: js/config.php:33 +msgid "December" +msgstr "" + +#: js/js.js:284 +msgid "Settings" +msgstr "" + +#: js/js.js:764 +msgid "seconds ago" +msgstr "" + +#: js/js.js:765 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:766 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:767 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:768 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:769 +msgid "today" +msgstr "" + +#: js/js.js:770 +msgid "yesterday" +msgstr "" + +#: js/js.js:771 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:772 +msgid "last month" +msgstr "" + +#: js/js.js:773 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:774 +msgid "months ago" +msgstr "" + +#: js/js.js:775 +msgid "last year" +msgstr "" + +#: js/js.js:776 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:126 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:162 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:163 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:180 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:195 js/share.js:152 js/share.js:159 js/share.js:571 +#: js/share.js:583 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 +msgid "Share" +msgstr "" + +#: js/share.js:29 js/share.js:43 js/share.js:90 js/share.js:93 +msgid "Shared" +msgstr "" + +#: js/share.js:141 js/share.js:611 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:152 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:159 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:168 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:170 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:175 +msgid "Share with" +msgstr "" + +#: js/share.js:180 +msgid "Share with link" +msgstr "" + +#: js/share.js:183 +msgid "Password protect" +msgstr "" + +#: js/share.js:185 templates/installation.php:44 templates/login.php:35 +msgid "Password" +msgstr "" + +#: js/share.js:189 +msgid "Email link to person" +msgstr "" + +#: js/share.js:190 +msgid "Send" +msgstr "" + +#: js/share.js:194 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:195 +msgid "Expiration date" +msgstr "" + +#: js/share.js:227 +msgid "Share via email:" +msgstr "" + +#: js/share.js:229 +msgid "No people found" +msgstr "" + +#: js/share.js:256 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:292 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:313 +msgid "Unshare" +msgstr "" + +#: js/share.js:325 +msgid "can edit" +msgstr "" + +#: js/share.js:327 +msgid "access control" +msgstr "" + +#: js/share.js:330 +msgid "create" +msgstr "" + +#: js/share.js:333 +msgid "update" +msgstr "" + +#: js/share.js:336 +msgid "delete" +msgstr "" + +#: js/share.js:339 +msgid "share" +msgstr "" + +#: js/share.js:373 js/share.js:558 +msgid "Password protected" +msgstr "" + +#: js/share.js:571 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:583 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:598 +msgid "Sending ..." +msgstr "" + +#: js/share.js:609 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:47 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:23 templates/installation.php:30 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:24 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:25 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:36 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:52 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:54 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:61 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:66 templates/installation.php:77 +#: templates/installation.php:87 templates/installation.php:97 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:113 +msgid "Database password" +msgstr "" + +#: templates/installation.php:117 +msgid "Database name" +msgstr "" + +#: templates/installation.php:125 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:131 +msgid "Database host" +msgstr "" + +#: templates/installation.php:136 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:33 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:48 +msgid "Log out" +msgstr "" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:41 +msgid "remember" +msgstr "" + +#: templates/login.php:43 +msgid "Log in" +msgstr "" + +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po new file mode 100644 index 00000000000..e1beb2b3ae5 --- /dev/null +++ b/l10n/sk/files.po @@ -0,0 +1,314 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:31 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:32 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:33 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:34 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:52 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:10 +msgid "Files" +msgstr "" + +#: js/fileactions.js:117 templates/index.php:85 templates/index.php:86 +msgid "Unshare" +msgstr "" + +#: js/fileactions.js:119 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:187 +msgid "Rename" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "replace" +msgstr "" + +#: js/filelist.js:208 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:208 js/filelist.js:210 +msgid "cancel" +msgstr "" + +#: js/filelist.js:253 +msgid "replaced {new_name}" +msgstr "" + +#: js/filelist.js:253 js/filelist.js:255 +msgid "undo" +msgstr "" + +#: js/filelist.js:255 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:280 +msgid "perform delete operation" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:224 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:261 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:261 +msgid "Upload Error" +msgstr "" + +#: js/files.js:278 +msgid "Close" +msgstr "" + +#: js/files.js:297 js/files.js:413 js/files.js:444 +msgid "Pending" +msgstr "" + +#: js/files.js:317 +msgid "1 file uploading" +msgstr "" + +#: js/files.js:320 js/files.js:375 js/files.js:390 +msgid "{count} files uploading" +msgstr "" + +#: js/files.js:393 js/files.js:428 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:502 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:575 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:580 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:953 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:954 templates/index.php:78 +msgid "Size" +msgstr "" + +#: js/files.js:955 templates/index.php:80 +msgid "Modified" +msgstr "" + +#: js/files.js:974 +msgid "1 folder" +msgstr "" + +#: js/files.js:976 +msgid "{count} folders" +msgstr "" + +#: js/files.js:984 +msgid "1 file" +msgstr "" + +#: js/files.js:986 +msgid "{count} files" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Trash" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:59 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:105 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:107 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:112 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:115 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po new file mode 100644 index 00000000000..1873413f16c --- /dev/null +++ b/l10n/sk/files_encryption.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:33+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: js/settings-personal.js:17 +msgid "" +"Please switch to your ownCloud client and change your encryption password to" +" complete the conversion." +msgstr "" + +#: js/settings-personal.js:17 +msgid "switched to client side encryption" +msgstr "" + +#: js/settings-personal.js:21 +msgid "Change encryption password to login password" +msgstr "" + +#: js/settings-personal.js:25 +msgid "Please check your passwords and try again." +msgstr "" + +#: js/settings-personal.js:25 +msgid "Could not change your file encryption password to your login password" +msgstr "" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po new file mode 100644 index 00000000000..3c72b5b4714 --- /dev/null +++ b/l10n/sk/files_external.po @@ -0,0 +1,120 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:34+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:73 js/google.js:72 +msgid "Fill out all required fields" +msgstr "" + +#: js/dropbox.js:85 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:26 js/google.js:73 js/google.js:78 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:405 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:406 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:22 +msgid "Mount point" +msgstr "" + +#: templates/settings.php:9 +msgid "Backend" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:27 +msgid "Add mount point" +msgstr "" + +#: templates/settings.php:85 +msgid "None set" +msgstr "" + +#: templates/settings.php:86 +msgid "All Users" +msgstr "" + +#: templates/settings.php:87 +msgid "Groups" +msgstr "" + +#: templates/settings.php:95 +msgid "Users" +msgstr "" + +#: templates/settings.php:108 templates/settings.php:109 +#: templates/settings.php:144 templates/settings.php:145 +msgid "Delete" +msgstr "" + +#: templates/settings.php:124 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:125 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:136 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:153 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po new file mode 100644 index 00000000000..942e60b0498 --- /dev/null +++ b/l10n/sk/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:35+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:9 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:11 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:14 templates/public.php:30 +msgid "Download" +msgstr "" + +#: templates/public.php:29 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:35 +msgid "web services under your control" +msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po new file mode 100644 index 00000000000..86550447566 --- /dev/null +++ b/l10n/sk/files_trashbin.po @@ -0,0 +1,68 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-01-31 16:03+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/delete.php:22 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:41 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:94 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:33 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:125 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:126 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:135 +msgid "1 folder" +msgstr "" + +#: js/trash.js:137 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:145 +msgid "1 file" +msgstr "" + +#: js/trash.js:147 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" diff --git a/l10n/sk/files_versions.po b/l10n/sk/files_versions.po new file mode 100644 index 00000000000..dd26d70a1cc --- /dev/null +++ b/l10n/sk/files_versions.po @@ -0,0 +1,65 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:37+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:68 +msgid "No old versions available" +msgstr "" + +#: history.php:73 +msgid "No path specified" +msgstr "" + +#: js/versions.js:16 +msgid "History" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" + +#: templates/settings.php:3 +msgid "Files Versioning" +msgstr "" + +#: templates/settings.php:4 +msgid "Enable" +msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po new file mode 100644 index 00000000000..0d0976b9704 --- /dev/null +++ b/l10n/sk/lib.po @@ -0,0 +1,156 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-07-27 22:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: app.php:313 +msgid "Help" +msgstr "" + +#: app.php:320 +msgid "Personal" +msgstr "" + +#: app.php:325 +msgid "Settings" +msgstr "" + +#: app.php:330 +msgid "Users" +msgstr "" + +#: app.php:337 +msgid "Apps" +msgstr "" + +#: app.php:339 +msgid "Admin" +msgstr "" + +#: files.php:202 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:203 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:203 files.php:228 +msgid "Back to Files" +msgstr "" + +#: files.php:227 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:226 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: updater.php:75 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:77 +msgid "up to date" +msgstr "" + +#: updater.php:80 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po new file mode 100644 index 00000000000..8ae555c067a --- /dev/null +++ b/l10n/sk/settings.po @@ -0,0 +1,328 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2011-07-25 16:05+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:19 ajax/removeuser.php:15 ajax/setquota.php:15 +#: ajax/togglegroups.php:18 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:28 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:28 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:34 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:13 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:84 +msgid "Updating...." +msgstr "" + +#: js/apps.js:87 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:87 +msgid "Error" +msgstr "" + +#: js/apps.js:90 +msgid "Updated" +msgstr "" + +#: js/personal.js:96 +msgid "Saving..." +msgstr "" + +#: personal.php:34 personal.php:35 +msgid "__language_name__" +msgstr "" + +#: templates/apps.php:10 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:11 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:24 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:28 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:29 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:31 +msgid "Update" +msgstr "" + +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:7 +msgid "Forum" +msgstr "" + +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:12 +msgid "Clients" +msgstr "" + +#: templates/personal.php:13 +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:23 templates/users.php:23 templates/users.php:81 +msgid "Password" +msgstr "" + +#: templates/personal.php:24 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:25 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:26 +msgid "Current password" +msgstr "" + +#: templates/personal.php:27 +msgid "New password" +msgstr "" + +#: templates/personal.php:28 +msgid "show" +msgstr "" + +#: templates/personal.php:29 +msgid "Change password" +msgstr "" + +#: templates/personal.php:41 templates/users.php:80 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:42 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:46 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:55 +msgid "Email" +msgstr "" + +#: templates/personal.php:56 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:57 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:63 templates/personal.php:64 +msgid "Language" +msgstr "" + +#: templates/personal.php:69 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:74 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:76 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:85 +msgid "Version" +msgstr "" + +#: templates/personal.php:87 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/users.php:21 templates/users.php:79 +msgid "Login Name" +msgstr "" + +#: templates/users.php:26 templates/users.php:82 templates/users.php:107 +msgid "Groups" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:142 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:60 templates/users.php:157 +msgid "Other" +msgstr "" + +#: templates/users.php:84 templates/users.php:121 +msgid "Group Admin" +msgstr "" + +#: templates/users.php:86 +msgid "Storage" +msgstr "" + +#: templates/users.php:97 +msgid "change display name" +msgstr "" + +#: templates/users.php:101 +msgid "set new password" +msgstr "" + +#: templates/users.php:137 +msgid "Default" +msgstr "" + +#: templates/users.php:165 +msgid "Delete" +msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po new file mode 100644 index 00000000000..3148a062161 --- /dev/null +++ b/l10n/sk/user_ldap.po @@ -0,0 +1,309 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-08-12 22:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:35 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:37 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:40 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: 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 "Server configuration" +msgstr "" + +#: templates/settings.php:17 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:21 +msgid "Host" +msgstr "" + +#: templates/settings.php:21 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:22 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:22 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:22 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:23 +msgid "User DN" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"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." +msgstr "" + +#: templates/settings.php:24 +msgid "Password" +msgstr "" + +#: templates/settings.php:24 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:25 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:25 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:25 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:26 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:26 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:26 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:27 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:27 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:27 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:31 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:33 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:33 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:34 +msgid "Port" +msgstr "" + +#: templates/settings.php:35 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:35 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:36 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:37 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:37 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:38 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:38 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:39 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:40 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:40 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:40 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:41 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:43 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:45 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:45 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:46 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:46 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:47 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:47 templates/settings.php:50 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:48 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:48 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:49 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:49 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:50 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:51 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:53 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:56 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:58 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:62 +msgid "Help" +msgstr "" diff --git a/l10n/sk/user_webdavauth.po b/l10n/sk/user_webdavauth.po new file mode 100644 index 00000000000..eb6e13c58c0 --- /dev/null +++ b/l10n/sk/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2012-11-09 09:06+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:7 +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 "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 07fbe78b931..fa46fb2750a 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg , 2013. # , 2011, 2012. # MariĆ”n Hvolka , 2013. # , 2012. @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -58,7 +59,7 @@ msgstr "Žiadna kategória pre pridanie?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "KategĆ©ria: %s už existuje." #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -473,7 +474,7 @@ msgstr "Úprava kategóriĆ­" msgid "Add" msgstr "PridaÅ„" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "BezpečnostnĆ© varovanie" @@ -483,20 +484,24 @@ msgid "" "OpenSSL extension." msgstr "Nie je dostupný žiadny bezpečný generĆ”tor nĆ”hodných čƭsel, prosĆ­m, povoľte rozŔírenie OpenSSL v PHP." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Bez bezpečnĆ©ho generĆ”tora nĆ”hodných čƭsel mÓže ĆŗtočnĆ­k predpovedaÅ„ token pre obnovu hesla a prevziaÅ„ kontrolu nad vaŔím kontom." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "VÔŔ priečinok s dĆ”tami a VaÅ”e sĆŗbory sĆŗ pravdepodobne dostupnĆ© z internetu. .htaccess sĆŗbor dodĆ”vaný s inÅ”talĆ”ciou ownCloud nespĺňa Ćŗlohu. DĆ“razne VĆ”m doporučujeme nakonfigurovaÅ„ webserver takým spĆ“sobom, aby dĆ”ta v priečinku neboli verejnĆ©, alebo presuňte dĆ”ta mimo Å”truktĆŗry priečinkov webservera." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" @@ -579,7 +584,7 @@ msgstr "PrihlĆ”siÅ„ sa" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "AltrnatĆ­vne loginy" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 27b5897355c..618ce24cad4 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg , 2013. # , 2012. # MariĆ”n Hvolka , 2013. # , 2012. @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -22,6 +23,20 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Žiaden sĆŗbor nebol odoslaný. NeznĆ”ma chyba" @@ -58,8 +73,8 @@ msgid "Failed to write to disk" msgstr "ZĆ”pis na disk sa nepodaril" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Nie je k dispozĆ­cii dostatok miesta" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." @@ -75,7 +90,7 @@ msgstr "NezdielaÅ„" #: js/fileactions.js:119 msgid "Delete permanently" -msgstr "" +msgstr "ZmazaÅ„ trvalo" #: js/fileactions.js:121 templates/index.php:91 templates/index.php:92 msgid "Delete" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 7977f0fe3e1..1e9b778f267 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg , 2013. # , 2012. # MariĆ”n Hvolka , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-06 00:05+0100\n" -"PO-Revision-Date: 2013-02-05 23:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 22:50+0000\n" +"Last-Translator: georg007 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,15 +48,15 @@ msgstr "Å ifrovanie" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "Kryptovanie sĆŗborov nastavenĆ©." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "UvedenĆ© typy sĆŗborov nebudĆŗ kryptovanĆ©:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "NekryptovaÅ„ uvedenĆ© typy sĆŗborov" #: templates/settings.php:12 msgid "None" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index eb5cf3edc6f..93a413261a4 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg , 2013. # MariĆ”n Hvolka , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 22:50+0000\n" +"Last-Translator: georg007 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +27,7 @@ msgstr "" #: ajax/undelete.php:41 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Nemožno obnoviÅ„ %s" #: js/trash.js:7 js/trash.js:94 msgid "perform restore operation" @@ -34,7 +35,7 @@ msgstr "vykonaÅ„ obnovu" #: js/trash.js:33 msgid "delete file permanently" -msgstr "" +msgstr "trvalo zmazaÅ„ sĆŗbor" #: js/trash.js:125 templates/index.php:17 msgid "Name" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index a5e084b9110..90a6c26e240 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# georg , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 22:40+0000\n" +"Last-Translator: georg007 \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,16 +26,16 @@ msgstr "" #: history.php:40 msgid "success" -msgstr "" +msgstr "uspech" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Subror %s bol vrateny na verziu %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "chyba" #: history.php:51 #, php-format @@ -43,11 +44,11 @@ msgstr "" #: history.php:68 msgid "No old versions available" -msgstr "" +msgstr "Nie sĆŗ dostupnĆ© žiadne starÅ”ie verzie" #: history.php:73 msgid "No path specified" -msgstr "" +msgstr "Nevybrali ste cestu" #: js/versions.js:16 msgid "History" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index e48f9984a93..8f861f48a3a 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -471,7 +471,7 @@ msgstr "Uredi kategorije" msgid "Add" msgstr "Dodaj" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Varnostno opozorilo" @@ -481,20 +481,24 @@ msgid "" "OpenSSL extension." msgstr "Na voljo ni varnega generatorja naključnih Å”tevil. Prosimo, če omogočite PHP OpenSSL razÅ”iritev." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Brez varnega generatorja naključnih Å”tevil lahko napadalec napove žetone za ponastavitev gesla, kar mu omogoča, da prevzame vaÅ” ​​račun." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud namreč ni omogočena. Močno priporočamo nastavitev spletnega strežnika tako, da mapa podatkov ne bo javno dostopna ali pa, da jo prestavite ven iz korenske mape spletnega strežnika." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 14da2bd6e29..89ab93eb425 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Nobena datoteka ni naložena. Neznana napaka." @@ -57,7 +71,7 @@ msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/sr/core.po b/l10n/sr/core.po index fd7293b1362..c74ef339d87 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -470,7 +470,7 @@ msgstr "Измени ŠŗŠ°Ń‚ŠµŠ³Š¾Ń€ŠøŃ˜Šµ" msgid "Add" msgstr "Š”Š¾Š“Š°Ń˜" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Š”ŠøŠ³ŃƒŃ€Š½Š¾ŃŠ½Š¾ ŃƒŠæŠ¾Š·Š¾Ń€ŠµŃšŠµ" @@ -480,20 +480,24 @@ msgid "" "OpenSSL extension." msgstr "ПоузГан генератор ŃŠ»ŃƒŃ‡Š°Ń˜Š½ŠøŃ… Š±Ń€Š¾Ń˜ŠµŠ²Š° није Š“Š¾ŃŃ‚ŃƒŠæŠ°Š½, преГлажемо Га ŃƒŠŗŃ™ŃƒŃ‡ŠøŃ‚Šµ PHP ŠæŃ€Š¾ŃˆŠøŃ€ŠµŃšŠµ OpenSSL." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без поузГаног генератора ŃŠ»ŃƒŃ‡Š°Ń˜Š½Š¾Ń… Š±Ń€Š¾Ń˜ŠµŠ²Š° напаГач лако може преГвиГети лозинку за ŠæŠ¾Š½ŠøŃˆŃ‚Š°Š²Š°ŃšŠµ ŠŗŃ™ŃƒŃ‡Š° ŃˆŠøŃ„Ń€Š¾Š²Š°ŃšŠ° Šø отети вам налог." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Š¢Ń€ŠµŠ½ŃƒŃ‚Š½Š¾ су ваши поГаци Šø Гатотеке Š“Š¾ŃŃ‚ŃƒŠæŠ½Šµ са интернета. Датотека .htaccess коју је обезбеГио пакет ownCloud не Ń„ŃƒŠ½ŠŗŃ†ŠøŠ¾Š½ŠøŃˆŠµ. Š”Š°Š²ŠµŃ‚ŃƒŃ˜ŠµŠ¼Š¾ вам Га поГесите веб сервер тако Га Š“ŠøŃ€ŠµŠŗŃ‚Š¾Ń€ŠøŃ˜ŃƒŠ¼ са поГацима не буГе изложен или Га га преместите изван коренског Š“ŠøŃ€ŠµŠŗŃ‚Š¾Ń€ŠøŃ˜ŃƒŠ¼Š° веб сервера." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 2a3bb829347..e3ee1fecc94 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,6 +20,20 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -56,7 +70,7 @@ msgid "Failed to write to disk" msgstr "ŠŠµ могу Га пишем на Гиск" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index b972b536fe1..dea4d27d067 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -468,7 +468,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -478,19 +478,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 1b5ac038d1b..d0e6867e65e 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -54,7 +68,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 692e4f62669..dbcbf991dac 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -474,7 +474,7 @@ msgstr "Redigera kategorier" msgid "Add" msgstr "LƤgg till" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "SƤkerhetsvarning" @@ -484,20 +484,24 @@ msgid "" "OpenSSL extension." msgstr "Ingen sƤker slumptalsgenerator finns tillgƤnglig. Du bƶr aktivera PHP OpenSSL-tillƤgget." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Utan en sƤker slumptalsgenerator kan angripare fĆ„ mƶjlighet att fƶrutsƤga lƶsenordsĆ„terstƤllningar och ta ƶver ditt konto." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Din datakatalog och dina filer Ƥr fƶrmodligen tillgƤngliga frĆ„n Internet. Den .htaccess-fil som ownCloud tillhandahĆ„ller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern sĆ„ att datakatalogen inte lƤngre Ƥr tillgƤnglig eller att du flyttar datakatalogen utanfƶr webbserverns dokument-root." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 1abbf3debc0..1ca2ac1ef0e 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,20 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. OkƤnt fel" @@ -60,8 +74,8 @@ msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Inte tillrƤckligt med utrymme tillgƤngligt" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index dea56701f93..e6919ac84da 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -467,7 +467,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -477,19 +477,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index a162a043f21..ed72da9980b 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,20 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -53,7 +67,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 9ba488f449c..a7f267a5770 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -468,7 +468,7 @@ msgstr "ą®µą®•ąÆˆą®•ą®³ąÆˆ ą®¤ąÆŠą®•ąÆą®•ąÆą®•" msgid "Add" msgstr "ą®šąÆ‡ą®°ąÆą®•ąÆą®•" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Žą®šąÆą®šą®°ą®æą®•ąÆą®•ąÆˆ" @@ -478,20 +478,24 @@ msgid "" "OpenSSL extension." msgstr "ą®•ąÆą®±ą®æą®ŖąÆą®Ŗą®æą®ŸąÆą®Ÿ ą®Žą®£ąÆą®£ą®æą®•ąÆą®•ąÆˆ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®Ŗą®¾ą®© ą®ŖąÆą®±ą®ŖąÆą®Ŗą®¾ą®•ąÆą®•ą®æ / ą®‰ą®£ąÆą®Ÿą®¾ą®•ąÆą®•ą®æą®•ą®³ąÆ ą®‡ą®²ąÆą®²ąÆˆ, ą®¤ą®Æą®µąÆą®šąÆ†ą®ÆąÆą®¤ąÆ PHP OpenSSL ą®ØąÆ€ą®ŸąÆą®šą®æą®ÆąÆˆ ą®‡ą®Æą®²ąÆą®®ąÆˆą®ŖąÆą®Ŗą®ŸąÆą®¤ąÆą®¤ąÆą®•. " -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®Ŗą®¾ą®© ą®šąÆ€ą®°ą®±ąÆą®± ą®Žą®£ąÆą®£ą®æą®•ąÆą®•ąÆˆą®Æą®¾ą®© ą®ŖąÆą®±ą®ŖąÆą®Ŗą®¾ą®•ąÆą®•ą®æ ą®‡ą®²ąÆą®²ąÆˆą®ÆąÆ†ą®©ą®æą®©ąÆ, ą®¤ą®¾ą®•ąÆą®•ąÆą®©ą®°ą®¾ą®²ąÆ ą®•ą®Ÿą®µąÆą®šąÆą®šąÆŠą®²ąÆ ą®®ąÆ€ą®³ą®®ąÆˆą®ŖąÆą®ŖąÆ ą®…ą®ŸąÆˆą®Æą®¾ą®³ą®µą®æą®²ąÆą®²ąÆˆą®•ą®³ąÆ ą®®ąÆą®©ąÆą®®ąÆŠą®“ą®æą®Æą®ŖąÆą®Ŗą®ŸąÆą®ŸąÆ ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ ą®•ą®£ą®•ąÆą®•ąÆˆ ą®•ąÆˆą®ŖąÆą®Ŗą®±ąÆą®±ą®²ą®¾ą®®ąÆ." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ தரவு ą®…ą®ŸąÆˆą®µąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®•ąÆą®•ą®³ąÆˆ ą®ŖąÆ†ą®°ąÆą®®ąÆą®Ŗą®¾ą®²ąÆą®®ąÆ ą®‡ą®£ąÆˆą®Æą®¤ąÆą®¤ą®æą®©ąÆ‚ą®Ÿą®¾ą®• ą®…ą®£ąÆą®•ą®²ą®¾ą®®ąÆ. ownCloud ą®‡ą®©ą®¾ą®²ąÆ ą®µą®“ą®™ąÆą®•ą®ŖąÆą®Ŗą®ŸąÆą®•ą®æą®©ąÆą®± .htaccess ą®•ąÆ‹ą®ŖąÆą®ŖąÆ ą®µąÆ‡ą®²ąÆˆ ą®šąÆ†ą®ÆąÆą®Æą®µą®æą®²ąÆą®²ąÆˆ. தரவு ą®…ą®ŸąÆˆą®µąÆˆ ą®ØąÆ€ą®£ąÆą®Ÿ ą®ØąÆ‡ą®°ą®¤ąÆą®¤ą®æą®±ąÆą®•ąÆ ą®…ą®£ąÆą®•ą®•ąÆą®•ąÆ‚ą®Ÿą®æą®Æą®¤ą®¾ą®• ą®‰ą®™ąÆą®•ą®³ąÆą®ŸąÆˆą®Æ வலைய ą®šąÆ‡ą®µąÆˆą®Æą®•ą®¤ąÆą®¤ąÆˆ ą®¤ą®•ą®µą®®ąÆˆą®•ąÆą®•ąÆą®®ą®¾ą®±ąÆ ą®Øą®¾ą®™ąÆą®•ą®³ąÆ உறுதியாக ą®•ąÆ‚ą®±ąÆą®•ą®æą®±ąÆ‹ą®®ąÆ ą®…ą®²ąÆą®²ą®¤ąÆ தரவு ą®…ą®ŸąÆˆą®µąÆˆ வலைய ą®šąÆ‡ą®µąÆˆą®Æą®• மூல ą®†ą®µą®£ą®¤ąÆą®¤ą®æą®²ą®æą®°ąÆą®ØąÆą®¤ąÆ வெளியே ą®…ą®•ą®±ąÆą®±ąÆą®•. " +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 981b7fbcc87..71d8d03be36 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,20 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ஒரு ą®•ąÆ‹ą®ŖąÆą®ŖąÆą®®ąÆ ą®Ŗą®¤ą®æą®µąÆ‡ą®±ąÆą®±ą®ŖąÆą®Ŗą®Ÿą®µą®æą®²ąÆą®²ąÆˆ. ą®…ą®±ą®æą®Æą®ŖąÆą®Ŗą®Ÿą®¾ą®¤ வஓு" @@ -54,7 +68,7 @@ msgid "Failed to write to disk" msgstr "ą®µą®ŸąÆą®Ÿą®æą®²ąÆ ą®Žą®“ąÆą®¤ ą®®ąÆą®Ÿą®æą®Æą®µą®æą®²ąÆą®²ąÆˆ" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 3a8f4a8e310..43634de4b38 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -467,7 +467,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -477,19 +477,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the " -"webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 8001fbb9976..2ac9ac8686d 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,20 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -53,7 +67,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index a010d44fbe6..e1cc407d59e 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 9bbd85959f6..0d4d620d98b 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index ea35c3e599f..bf6ff52b50b 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index bc847b3f490..3f59bb32a0f 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 2180d45328b..80d8fa35cd9 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index c9ebd00c353..5c9b6e4cb88 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index cfb1d6b76b6..0ed2c65e0db 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 8bec0494671..d13915b5b5c 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index f951536fe95..1f3da3f43f9 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 298a31b71ab..ae9a0125367 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "ą¹ąøą¹‰ą¹„ąø‚ąø«ąø”ąø§ąø”ąø«ąø”ąø¹ą¹ˆ" msgid "Add" msgstr "ą¹€ąøžąø“ą¹ˆąø”" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ąø„ąø³ą¹€ąø•ąø·ąø­ąø™ą¹€ąøąøµą¹ˆąø¢ąø§ąøąø±ąøšąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢" @@ -479,20 +479,24 @@ msgid "" "OpenSSL extension." msgstr "ąø¢ąø±ąø‡ą¹„ąø”ą¹ˆąø”ąøµąø•ąø±ąø§ąøŖąø£ą¹‰ąø²ąø‡ąø«ąø”ąø²ąø¢ą¹€ąø„ąø‚ą¹ąøšąøšąøŖąøøą¹ˆąø”ą¹ƒąø«ą¹‰ą¹ƒąøŠą¹‰ąø‡ąø²ąø™, ąøąø£ąøøąø“ąø²ą¹€ąø›ąø“ąø”ą¹ƒąøŠą¹‰ąø‡ąø²ąø™ąøŖą¹ˆąø§ąø™ą¹€ąøŖąø£ąø“ąø” PHP OpenSSL" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ąø«ąø²ąøąø›ąø£ąø²ąøØąøˆąø²ąøąø•ąø±ąø§ąøŖąø£ą¹‰ąø²ąø‡ąø«ąø”ąø²ąø¢ą¹€ąø„ąø‚ą¹ąøšąøšąøŖąøøą¹ˆąø”ąø—ąøµą¹ˆąøŠą¹ˆąø§ąø¢ąø›ą¹‰ąø­ąø‡ąøąø±ąø™ąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢ ąøœąø¹ą¹‰ąøšąøøąøąø£ąøøąøąø­ąø²ąøˆąøŖąø²ąø”ąø²ąø£ąø–ąø—ąøµą¹ˆąøˆąø°ąø„ąø²ąø”ąø„ąø°ą¹€ąø™ąø£ąø«ąø±ąøŖąø¢ąø·ąø™ąø¢ąø±ąø™ąøąø²ąø£ą¹€ąø‚ą¹‰ąø²ąø–ąø¶ąø‡ą¹€ąøžąø·ą¹ˆąø­ąø£ąøµą¹€ąø‹ą¹‡ąø•ąø£ąø«ąø±ąøŖąøœą¹ˆąø²ąø™ ą¹ąø„ąø°ą¹€ąø­ąø²ąøšąø±ąøąøŠąøµąø‚ąø­ąø‡ąø„ąøøąø“ą¹„ąø›ą¹€ąø›ą¹‡ąø™ąø‚ąø­ąø‡ąø•ąø™ą¹€ąø­ąø‡ą¹„ąø”ą¹‰" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ą¹„ąø”ą¹€ąø£ą¹‡ąøąø—ąø­ąø£ąøµą¹ˆąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹ąø„ąø°ą¹„ąøŸąø„ą¹Œąø‚ąø­ąø‡ąø„ąøøąø“ąøŖąø²ąø”ąø²ąø£ąø–ą¹€ąø‚ą¹‰ąø²ąø–ąø¶ąø‡ą¹„ąø”ą¹‰ąøˆąø²ąøąø­ąø“ąø™ą¹€ąø—ąø­ąø£ą¹Œą¹€ąø™ą¹‡ąø• ą¹„ąøŸąø„ą¹Œ .htaccess ąø—ąøµą¹ˆ ownCloud ąø”ąøµą¹ƒąø«ą¹‰ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ąø—ąø³ąø‡ąø²ąø™ą¹„ąø”ą¹‰ąø­ąø¢ą¹ˆąø²ąø‡ą¹€ąø«ąø”ąø²ąø°ąøŖąø” ą¹€ąø£ąø²ąø‚ąø­ą¹ąø™ąø°ąø™ąø³ą¹ƒąø«ą¹‰ąø„ąøøąø“ąøąø³ąø«ąø™ąø”ąø„ą¹ˆąø²ą¹€ąø§ą¹‡ąøšą¹€ąø‹ąø“ąø£ą¹ŒąøŸą¹€ąø§ąø­ąø£ą¹Œą¹ƒąø«ąø”ą¹ˆą¹ƒąø™ąø£ąø¹ąø›ą¹ąøšąøšąø—ąøµą¹ˆą¹„ąø”ą¹€ąø£ą¹‡ąøąø—ąø­ąø£ąøµą¹ˆą¹€ąøą¹‡ąøšąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹„ąø”ą¹ˆąøŖąø²ąø”ąø²ąø£ąø–ą¹€ąø‚ą¹‰ąø²ąø–ąø¶ąø‡ą¹„ąø”ą¹‰ąø­ąøµąøąø•ą¹ˆąø­ą¹„ąø› ąø«ąø£ąø·ąø­ąø„ąøøąø“ą¹„ąø”ą¹‰ąø¢ą¹‰ąø²ąø¢ą¹„ąø”ą¹€ąø£ą¹‡ąøąø—ąø­ąø£ąøµą¹ˆąø—ąøµą¹ˆą¹ƒąøŠą¹‰ą¹€ąøą¹‡ąøšąø‚ą¹‰ąø­ąø”ąø¹ąø„ą¹„ąø›ąø­ąø¢ąø¹ą¹ˆąø ąø²ąø¢ąø™ąø­ąøąø•ąø³ą¹ąø«ąø™ą¹ˆąø‡ root ąø‚ąø­ąø‡ą¹€ąø§ą¹‡ąøšą¹€ąø‹ąø“ąø£ą¹ŒąøŸą¹€ąø§ąø­ąø£ą¹Œą¹ąø„ą¹‰ąø§" +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 5b83ba04bac..2b84a1a3008 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ąø¢ąø±ąø‡ą¹„ąø”ą¹ˆąø”ąøµą¹„ąøŸąø„ą¹Œą¹ƒąø”ąø—ąøµą¹ˆąø–ąø¹ąøąø­ąø±ąøžą¹‚ąø«ąø„ąø” ą¹€ąøąø“ąø”ąø‚ą¹‰ąø­ąøœąø“ąø”ąøžąø„ąø²ąø”ąø—ąøµą¹ˆą¹„ąø”ą¹ˆąø—ąø£ąø²ąøšąøŖąø²ą¹€ąø«ąø•ąøø" @@ -55,8 +69,8 @@ msgid "Failed to write to disk" msgstr "ą¹€ąø‚ąøµąø¢ąø™ąø‚ą¹‰ąø­ąø”ąø¹ąø„ąø„ąø‡ą¹ąøœą¹ˆąø™ąø”ąø“ąøŖąøą¹Œąø„ą¹‰ąø”ą¹€ąø«ąø„ąø§" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "ąø”ąøµąøžąø·ą¹‰ąø™ąø—ąøµą¹ˆą¹€ąø«ąø„ąø·ąø­ą¹„ąø”ą¹ˆą¹€ąøžąøµąø¢ąø‡ąøžąø­" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 50afbad8847..e6ef436731d 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -472,7 +472,7 @@ msgstr "Kategorileri düzenle" msgid "Add" msgstr "Ekle" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Güvenlik Uyarisi" @@ -482,20 +482,24 @@ msgid "" "OpenSSL extension." msgstr "Güvenli rasgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleştirin." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Güvenli rasgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geƧirebilir." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası Ƨalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu dƶküman dizini dışına almanızı şiddetle tavsiye ederiz." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index b02309d9941..af033c86936 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,20 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" @@ -59,8 +73,8 @@ msgid "Failed to write to disk" msgstr "Diske yazılamadı" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "Yeterli disk alanı yok" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 521c5435fd0..78e4e2d04ce 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -473,7 +473,7 @@ msgstr "Š ŠµŠ“Š°Š³ŃƒŠ²Š°Ń‚Šø категорії" msgid "Add" msgstr "ДоГати" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "ŠŸŠ¾ŠæŠµŃ€ŠµŠ“Š¶ŠµŠ½Š½Ń про небезпеку" @@ -483,20 +483,24 @@ msgid "" "OpenSSL extension." msgstr "ŠŠµ Š“Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹ безпечний генератор випаГкових чисел, буГь ласка, Š°ŠŗŃ‚ŠøŠ²ŃƒŠ¹Ń‚Šµ PHP OpenSSL ГоГаток." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Без безпечного генератора випаГкових чисел зловмисник може визначити токени ŃŠŗŠøŠ“Š°Š½Š½Ń ŠæŠ°Ń€Š¾Š»Ń і заволоГіти Š’Š°ŃˆŠøŠ¼ обліковим записом." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Š’Š°Ńˆ каталог Š· Ганими та Š’Š°ŃˆŃ– файли можливо Š“Š¾ŃŃ‚ŃƒŠæŠ½Ń– Š· Š†Š½Ń‚ŠµŃ€Š½ŠµŃ‚Ńƒ. Файл .htaccess, наГаний Š· ownCloud, не ŠæŃ€Š°Ń†ŃŽŃ”. Ми наполегливо Ń€ŠµŠŗŠ¾Š¼ŠµŠ½Š“ŃƒŃ”Š¼Š¾ Вам Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Ń‚Šø свій веб-сервер таким чином, щоб каталог data Š±Ń–Š»ŃŒŃˆŠµ не був Š“Š¾ŃŃ‚ŃƒŠæŠ½ŠøŠ¹, або перемістити каталог data за межі кореневого ŠŗŠ°Ń‚Š°Š»Š¾Š³Ńƒ Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Ń–Š² веб-сервера." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 41bc646d242..44b18cb87c9 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:09+0100\n" -"PO-Revision-Date: 2013-02-07 15:20+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,20 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ŠŠµ завантажено жоГного Ń„Š°Š¹Š»Ńƒ. ŠŠµŠ²Ń–Š“Š¾Š¼Š° помилка" @@ -57,8 +71,8 @@ msgid "Failed to write to disk" msgstr "ŠŠµŠ²Š“Š°Š»Š¾ŃŃ записати на Гиск" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "ŠœŃ–ŃŃ†Ń Š±Ń–Š»ŃŒŃˆŠµ немає" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/vi/core.po b/l10n/vi/core.po index e91f52f0233..012e1202e95 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -472,7 +472,7 @@ msgstr "Sį»­a thể loįŗ”i" msgid "Add" msgstr "ThĆŖm" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "Cįŗ£nh bįŗ£o bįŗ£o mįŗ­t" @@ -482,20 +482,24 @@ msgid "" "OpenSSL extension." msgstr "KhĆ“ng an toĆ n ! chức năng random number generator đã có sįŗµn ,vui lòng bįŗ­t PHP OpenSSL extension." -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "Nįŗæu khĆ“ng có random number generator , Hacker có thể thiįŗæt lįŗ­p lįŗ”i mįŗ­t khįŗ©u vĆ  chiįŗæm tĆ i khoįŗ£n cį»§a bįŗ”n." +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "Thʰ mỄc dữ liệu vĆ  những tįŗ­p tin cį»§a bįŗ”n có thể dį»… dĆ ng bị truy cįŗ­p từ mįŗ”ng. Tįŗ­p tin .htaccess do ownCloud cung cįŗ„p khĆ“ng hoįŗ”t động. ChĆŗng tĆ“i đề nghị bįŗ”n nĆŖn cįŗ„u hƬnh lįŗ”i mĆ”y chį»§ web Ä‘į»ƒ thʰ mỄc dữ liệu khĆ“ng còn bị truy cįŗ­p hoįŗ·c bįŗ”n nĆŖn di chuyển thʰ mỄc dữ liệu ra bĆŖn ngoĆ i thʰ mỄc gốc cį»§a mĆ”y chį»§." +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 609e4ff5904..131a491428d 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,20 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "KhĆ“ng có tįŗ­p tin nĆ o được tįŗ£i lĆŖn. Lį»—i khĆ“ng xĆ”c định" @@ -57,7 +71,7 @@ msgid "Failed to write to disk" msgstr "KhĆ“ng thể ghi " #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 606efa2b5f0..1d9bf29559f 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -469,7 +469,7 @@ msgstr "ē¼–č¾‘åˆ†ē±»" msgid "Add" msgstr "添加" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "å®‰å…Øč­¦å‘Š" @@ -479,20 +479,24 @@ msgid "" "OpenSSL extension." msgstr "ę²”ęœ‰å®‰å…Øéšęœŗē ē”Ÿęˆå™Øļ¼ŒčÆ·åÆē”Ø PHP OpenSSL 扩展。" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ę²”ęœ‰å®‰å…Øéšęœŗē ē”Ÿęˆå™Øļ¼Œé»‘å®¢åÆä»„é¢„ęµ‹åÆ†ē é‡ē½®ä»¤ē‰Œå¹¶ęŽ„ē®”ä½ ēš„č“¦ęˆ·ć€‚" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ę‚Øēš„ę•°ę®ę–‡ä»¶å¤¹å’Œę‚Øēš„ę–‡ä»¶ęˆ–č®øčƒ½å¤Ÿä»Žäŗ’č”ē½‘č®æé—®ć€‚ownCloud ęä¾›ēš„ .htaccesss ę–‡ä»¶ęœŖå…¶ä½œē”Øć€‚ęˆ‘ä»¬å¼ŗēƒˆå»ŗč®®ę‚Øé…ē½®ē½‘ē»œęœåŠ”å™Øä»„ä½æę•°ę®ę–‡ä»¶å¤¹äøčƒ½ä»Žäŗ’č”ē½‘č®æé—®ļ¼Œęˆ–å°†ē§»åŠØę•°ę®ę–‡ä»¶å¤¹ē§»å‡ŗē½‘ē»œęœåŠ”å™Øę–‡ę”£ę ¹ē›®å½•ć€‚" +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 31b335db11b..000f4c3195c 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,20 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ę²”ęœ‰äøŠä¼ ę–‡ä»¶ć€‚ęœŖēŸ„é”™čÆÆ" @@ -55,7 +69,7 @@ msgid "Failed to write to disk" msgstr "å†™ē£ē›˜å¤±č“„" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 8c56c6c8d35..be5884a2777 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -473,7 +473,7 @@ msgstr "ē¼–č¾‘åˆ†ē±»" msgid "Add" msgstr "添加" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "å®‰å…Øč­¦å‘Š" @@ -483,20 +483,24 @@ msgid "" "OpenSSL extension." msgstr "éšęœŗę•°ē”Ÿęˆå™Øę— ę•ˆļ¼ŒčÆ·åÆē”ØPHPēš„OpenSSL扩展" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "ę²”ęœ‰å®‰å…Øéšęœŗē ē”Ÿęˆå™Øļ¼Œę”»å‡»č€…åÆčƒ½ä¼šēŒœęµ‹åÆ†ē é‡ē½®äæ”ęÆä»Žč€ŒēŖƒå–ę‚Øēš„č“¦ęˆ·" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ę‚Øēš„ę•°ę®ę–‡ä»¶å¤¹å’Œę–‡ä»¶åÆē”±äŗ’č”ē½‘č®æé—®ć€‚OwnCloudęä¾›ēš„.htaccessę–‡ä»¶ęœŖē”Ÿę•ˆć€‚ęˆ‘ä»¬å¼ŗēƒˆå»ŗč®®ę‚Øé…ē½®ęœåŠ”å™Øļ¼Œä»„ä½æę•°ę®ę–‡ä»¶å¤¹äøåÆč¢«č®æé—®ļ¼Œęˆ–č€…å°†ę•°ę®ę–‡ä»¶å¤¹ē§»åˆ°webęœåŠ”å™Øę ¹ē›®å½•ä»„å¤–ć€‚" +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 1f00755a809..8fe77aaf115 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,20 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ę²”ęœ‰ę–‡ä»¶č¢«äøŠä¼ ć€‚ęœŖēŸ„é”™čÆÆ" @@ -60,8 +74,8 @@ msgid "Failed to write to disk" msgstr "å†™å…„ē£ē›˜å¤±č“„" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "ę²”ęœ‰č¶³å¤ŸåÆē”Øē©ŗé—“" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index e4d1dbff0f5..65b41b0aeee 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -468,7 +468,7 @@ msgstr "" msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "" @@ -478,19 +478,23 @@ msgid "" "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:36 diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 3679a52e341..172bdcbcee4 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,20 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "" @@ -53,7 +67,7 @@ msgid "Failed to write to disk" msgstr "" #: ajax/upload.php:52 -msgid "Not enough space available" +msgid "Not enough storage available" msgstr "" #: ajax/upload.php:83 diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index deae8c747b7..e060611cd6a 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2013-02-07 23:10+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -472,7 +472,7 @@ msgstr "ē·Øč¼Æåˆ†é”ž" msgid "Add" msgstr "增加" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:23 templates/installation.php:30 msgid "Security Warning" msgstr "å®‰å…Øę€§č­¦å‘Š" @@ -482,20 +482,24 @@ msgid "" "OpenSSL extension." msgstr "ę²’ęœ‰åÆē”Øēš„äŗ‚ę•øē”¢ē”Ÿå™Øļ¼Œč«‹å•Ÿē”Ø PHP äø­ēš„ OpenSSL ę““å……åŠŸčƒ½ć€‚" -#: templates/installation.php:26 +#: templates/installation.php:25 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "č‹„ę²’ęœ‰å®‰å…Øēš„äŗ‚ę•øē”¢ē”Ÿå™Øļ¼Œę”»ę“Šč€…åÆčƒ½åÆä»„é ęø¬åÆ†ē¢¼é‡čØ­äæ”ē‰©ļ¼Œē„¶å¾ŒęŽ§åˆ¶ę‚Øēš„åø³ęˆ¶ć€‚" +#: templates/installation.php:31 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + #: templates/installation.php:32 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "ę‚Øēš„č³‡ę–™ē›®éŒ„ (Data Directory) å’ŒęŖ”ę”ˆåÆčƒ½åÆä»„ē”±ē¶²éš›ē¶²č·ÆäøŠé¢å…¬é–‹å­˜å–ć€‚Owncloud ę‰€ęä¾›ēš„ .htaccess čØ­å®šęŖ”äø¦ęœŖē”Ÿę•ˆļ¼Œęˆ‘å€‘å¼·ēƒˆå»ŗč­°ę‚ØčØ­å®šę‚Øēš„ē¶²é ä¼ŗęœå™Øä»„é˜²ę­¢č³‡ę–™ē›®éŒ„č¢«å…¬é–‹å­˜å–ļ¼Œęˆ–å°‡ę‚Øēš„č³‡ę–™ē›®éŒ„ē§»å‡ŗē¶²é ä¼ŗęœå™Øēš„ document root 怂" +"For information how to properly configure your server, please see the documentation." +msgstr "" #: templates/installation.php:36 msgid "Create an admin account" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 0db332c7219..6f12f19b478 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 23:08+0000\n" +"POT-Creation-Date: 2013-02-09 00:12+0100\n" +"PO-Revision-Date: 2013-02-08 23:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,20 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" msgstr "ę²’ęœ‰ęŖ”ę”ˆč¢«äøŠå‚³ć€‚ęœŖēŸ„ēš„éŒÆčŖ¤ć€‚" @@ -59,8 +73,8 @@ msgid "Failed to write to disk" msgstr "åÆ«å…„ē”¬ē¢Ÿå¤±ę•—" #: ajax/upload.php:52 -msgid "Not enough space available" -msgstr "ę²’ęœ‰č¶³å¤ ēš„åÆē”Øē©ŗé–“" +msgid "Not enough storage available" +msgstr "" #: ajax/upload.php:83 msgid "Invalid directory." diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 7d1d1f7be58..1b4fd6ac7a6 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,6 +1,7 @@ "Imposible cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", +"Unable to change display name" => "Incapaz de cambiar el nombre", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No se pudo aƱadir el grupo", "Could not enable app. " => "No puedo habilitar la app.", @@ -49,6 +50,9 @@ "show" => "mostrar", "Change password" => "Cambiar contraseƱa", "Display Name" => "Nombre a mostrar", +"Your display name was changed" => "Su nombre fue cambiado", +"Unable to change your display name" => "Incapaz de cambiar su nombre", +"Change display name" => "Cambiar nombre", "Email" => "Correo electrónico", "Your email address" => "Tu dirección de correo", "Fill in an email address to enable password recovery" => "Escribe una dirección de correo electrónico para restablecer la contraseƱa", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 7ada83f4240..a47acb6435f 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,6 +1,7 @@ "Impossible de charger la liste depuis l'App Store", "Authentication error" => "Erreur d'authentification", +"Unable to change display name" => "Impossible de modifier le nom d'affichage", "Group already exists" => "Ce groupe existe dĆ©jĆ ", "Unable to add group" => "Impossible d'ajouter le groupe", "Could not enable app. " => "Impossible d'activer l'Application", @@ -49,6 +50,9 @@ "show" => "Afficher", "Change password" => "Changer de mot de passe", "Display Name" => "Nom affichĆ©", +"Your display name was changed" => "Votre nom d'affichage a bien Ć©tĆ© modifiĆ©", +"Unable to change your display name" => "Impossible de modifier votre nom d'affichage", +"Change display name" => "Changer le nom affichĆ©", "Email" => "E-mail", "Your email address" => "Votre adresse e-mail", "Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la rĆ©initialisation du mot de passe", From 8961e675c77eefa9b44ea992131218982351f1ff Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Sat, 9 Feb 2013 11:27:03 +0100 Subject: [PATCH 76/91] remove (comment out) old code to fix replacing of files --- apps/files/js/filelist.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index e4c71d41b2a..5ee55256eaa 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -216,9 +216,9 @@ var FileList={ }, replace:function(oldName, newName, isNewFile) { // Finish any existing actions - if (FileList.lastAction || !FileList.useUndo) { + /*if (FileList.lastAction || !FileList.useUndo) { FileList.lastAction(); - } + }*/ $('tr').filterAttr('data-file', oldName).hide(); $('tr').filterAttr('data-file', newName).hide(); var tr = $('tr').filterAttr('data-file', oldName).clone(); From f8335c481569e2454ee7d9ca51256964885aa3c3 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 9 Feb 2013 11:34:25 +0100 Subject: [PATCH 77/91] moved iframe height and width fix from js to css --- core/css/styles.css | 2 ++ settings/templates/help.php | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 556ca6b82bb..e6a4bf61995 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -319,6 +319,8 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin .arrow.left { left:-13px; bottom:1.2em; -webkit-transform:rotate(270deg); -moz-transform:rotate(270deg); -o-transform:rotate(270deg); -ms-transform:rotate(270deg); transform:rotate(270deg); } .arrow.up { top:-8px; right:2em; } .arrow.down { -webkit-transform:rotate(180deg); -moz-transform:rotate(180deg); -o-transform:rotate(180deg); -ms-transform:rotate(180deg); transform:rotate(180deg); } +.help-includes {overflow: hidden; width: 100%; height: 100%; -moz-box-sizing: border-box; box-sizing: border-box; padding-top: 2.8em; } +.help-iframe {width: 100%; height: 100%; margin: 0;padding: 0; border: 0; overflow: auto;} /* ---- BREADCRUMB ---- */ div.crumb { float:left; display:block; background:url('../img/breadcrumb.svg') no-repeat right 0; padding:.75em 1.5em 0 1em; height:2.9em; } diff --git a/settings/templates/help.php b/settings/templates/help.php index 7383fdcf56a..315cbfdb9a2 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -10,5 +10,6 @@ t( 'Commercial Support' ); ?> -

- \ No newline at end of file +
+ +
From 6e9f434bdac305bcdb50192925fc71be60ff9e85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Sat, 9 Feb 2013 12:01:49 +0100 Subject: [PATCH 78/91] rename trash to trash bin --- apps/files/templates/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 0b4aa21eac3..7cf65915af0 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -37,7 +37,7 @@
From 2137bbe330c52a2bc5152537c4bea3f758b6bd95 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Sat, 9 Feb 2013 12:38:40 +0100 Subject: [PATCH 79/91] remove code properly --- apps/files/js/filelist.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 5ee55256eaa..4a66b33694d 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -216,9 +216,6 @@ var FileList={ }, replace:function(oldName, newName, isNewFile) { // Finish any existing actions - /*if (FileList.lastAction || !FileList.useUndo) { - FileList.lastAction(); - }*/ $('tr').filterAttr('data-file', oldName).hide(); $('tr').filterAttr('data-file', newName).hide(); var tr = $('tr').filterAttr('data-file', oldName).clone(); From ddc7af9a53fb78a363c21043ab0e2e1a80b48750 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sat, 9 Feb 2013 13:51:44 +0100 Subject: [PATCH 80/91] know your libraries ;-) strrpos fails in cases the file in the path has no dot but the parent folder --- lib/files/view.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/files/view.php b/lib/files/view.php index dfcb770328b..1a234228eab 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -509,11 +509,7 @@ class View { if (Filesystem::isValidPath($path)) { $source = $this->fopen($path, 'r'); if ($source) { - $extension = ''; - $extOffset = strpos($path, '.'); - if ($extOffset !== false) { - $extension = substr($path, strrpos($path, '.')); - } + $extension = pathinfo($path, PATHINFO_EXTENSION); $tmpFile = \OC_Helper::tmpFile($extension); file_put_contents($tmpFile, $source); return $tmpFile; From 676f89bbdb5ed1fff65bd54881d590c0ced5b7e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Sat, 9 Feb 2013 14:42:03 +0100 Subject: [PATCH 81/91] extract common code --- apps/files/js/filelist.js | 131 +++++++++++++++++++++++++------------- 1 file changed, 88 insertions(+), 43 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 4a66b33694d..cc107656da8 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -3,35 +3,92 @@ var FileList={ update:function(fileListHtml) { $('#fileList').empty().html(fileListHtml); }, - addFile:function(name,size,lastModified,loading,hidden){ - var basename, extension, simpleSize, sizeColor, lastModifiedTime, modifiedColor, - img=(loading)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file.png'), - html='
'; - html+=''+escapeHTML(basename); + var name_span=$('').addClass('nametext').text(basename); + link_elem.append(name_span); if(extension){ - html+=''+escapeHTML(extension)+''; + name_span.append($('').addClass('extension').text(extension)); } - html+=''+simpleSize+''+relative_modified_date(lastModified.getTime() / 1000)+'