From 8ded07dd5c0e15a3c05112b3fa5875f326fb44df Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 30 Jan 2013 17:49:05 +0100 Subject: [PATCH 01/38] first style fixes - @samtuke: I added some TODO regarding undefined variables and unreachable code - please review --- apps/files_encryption/lib/crypt.php | 736 ++++++++++++----------- apps/files_encryption/lib/keymanager.php | 204 ++++--- 2 files changed, 485 insertions(+), 455 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 - */ + + /** + * @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 ) ) { + 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 + * @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 - */ + * @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 + , '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 + * @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 + , '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 - */ + * @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 - */ + + /** + * @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 - */ + + /** + * @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 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 - */ + * @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-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-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 - + } - -} -?> \ No newline at end of file +} 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 927d4c98a14e27b9412a205fb94bab2b94e8978b Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Tue, 5 Feb 2013 13:12:34 +0000 Subject: [PATCH 02/38] 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 03/38] 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 d2b288ca704af4d74d1fa13e44966b1c34cf56bd Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Wed, 6 Feb 2013 13:59:21 +0000 Subject: [PATCH 04/38] 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 3582f7bd09f81e1aadb583ab0d36fb0cbc695514 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 6 Feb 2013 17:54:20 +0100 Subject: [PATCH 05/38] 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 fd8cb9974be30aaca0d65d1807d6a4f784da5f0b Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 6 Feb 2013 23:36:38 +0100 Subject: [PATCH 06/38] 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 84f3c8b6cc1060203d807ee65545478ce34f93c4 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 7 Feb 2013 00:49:39 +0100 Subject: [PATCH 07/38] 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 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 08/38] 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 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 09/38] 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 += ''; + 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 a26e66b232990ad6d767c821dc362e0453af6d62 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 8 Feb 2013 13:37:57 +0100 Subject: [PATCH 10/38] 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 4c3d4f7d362edba78ef16ef6da3b3174e43060c4 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 24 Jan 2013 16:56:23 +0100 Subject: [PATCH 11/38] 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 12/38] 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 13/38] 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 14/38] 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 15/38] 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 16/38] 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 17/38] 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 18/38] 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 19/38] 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 20/38] 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 21/38] 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+='
'; - 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'){ + 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 29/38] 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 30/38] 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 31/38] 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 32/38] 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 33/38] 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 34/38] 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 35/38] 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 36/38] 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 37/38] 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 | 739 +++++++++--------- 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, 403 insertions(+), 568 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 - */ + * @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 - */ + + /** + * @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 - */ + + /** + * @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 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 38/38] 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' );
'; - 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 22/38] [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 23/38] 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 24/38] 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 25/38] 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 26/38] 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 27/38] 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 28/38] 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)); + } + //dirs can show the number of uploaded files + if (type == 'dir') { + link_elem.append($('').attr({ + 'class': 'uploadtext', + 'currentUploads': 0 + })); } - html+=''+simpleSize+''+relative_modified_date(lastModified.getTime() / 1000)+'